diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/Learning-checkpoint.ipynb b/lab-functional-programming/your-code/.ipynb_checkpoints/Learning-checkpoint.ipynb new file mode 100644 index 0000000..6b15fd2 --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/Learning-checkpoint.ipynb @@ -0,0 +1,609 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Functional Programming\n", + "\n", + "\n", + "Lesson Goals\n", + "\n", + " Learn the difference between procedural and functional programming style.\n", + " Learn about the components of functions and how to write them in Python.\n", + " Learn the difference between global and local variables and how they apply to functions.\n", + " Learn how to apply functions to Pandas data frames.\n", + "\n", + "\n", + "Introduction\n", + "\n", + "Up until this point, we have been writing Python code in a procedural manner and using functions and methods that are either in Python's standard library or part of some other library such as Numpy or Pandas. This has worked fine for us thus far, but in order to truly graduate from beginner to intermediate Python programmer, you must have a basic understanding of functional programming and be able to write your own functions.\n", + "\n", + "In this lesson, we will cover how to write Python code in a functional style and how to construct and call user-defined functions.\n", + "Procedural vs. Functional Programming\n", + "\n", + "Procedural code is code that is written line by line and executed in the order it is written. It is the style in which most people learn to program due to its straightforward sequence of actions to solve a problem - do this, then do this, then do this.\n", + "\n", + "More mature programmers frame problems a little differently. They take more of a functional approach to problem solving, where they create functions consisting of multiple lines of code that accomplish some task and often return a result that can be used by another function.\n", + "\n", + "You can think of a function as a tool - something that helps you perform a job. In a sense, functional programming allows you to create your own tools. Some of these tools will be designed specifically for the current set of tasks you need to perform while other functions you write will be more general and able to be used for other projects. Imagine if a chef were able to construct their own set of knives or a carpenter were able to construct their own set of saws that were perfect for the jobs they needed to perform. That is the power that functional programming gives you as a programmer. Over time, you will develop a personal library of functions that allow you to get your work done more efficiently.\n", + "\n", + "\n", + "Writing Functions in Python\n", + "\n", + "Functions in Python are defined by the def keyword followed by the function name and one or more inputs the function will need enclosed in parentheses. Within the function, you write code that performs the task you want the function to execute followed by a return statement if there is anything you would like the function to return. Below is an example of a list2string function that converts lists to strings. " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'John was a man of many talents'" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def list2string(lst):\n", + " string = ' '.join(lst)\n", + " return string\n", + "\n", + "to_string = ['John', 'was', 'a', 'man', 'of', 'many', 'talents']\n", + "list2string(to_string)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this example, we defined our list2string function and told it to expect one input. Within the function, we used the join method to convert the list to a string consisting of the list elements joined together by spaces. We then had the function return the string of space-separated elements.\n", + "\n", + "You can include all the concepts we have covered in past lessons (loops, conditional logic, list comprehensions, etc.) inside a function.\n", + "\n", + "\n", + "\n", + "\n", + "Global vs. Local Variables\n", + "\n", + "When writing functional code, it is important to keep track of which variables are global and which variables are local. Global variables are variables that maintain their value outside of functions. Local variables maintain their value within the function where they are defined and then cease to exist after we exit that function. In the example below, the variables a and c are global variables and variable b is a local variable that does not exist outside of the multiply function. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9 18\n" + ] + } + ], + "source": [ + "a = 9\n", + "\n", + "def multiply(number, multiplier=2):\n", + " b = number * multiplier\n", + " return b\n", + "\n", + "c = multiply(a)\n", + "\n", + "print(a, c)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The multiply function above accepts a number and a multiplier (that defaults to 2), creates a local variable b that has a value of the number times the multiplier, and the function returns that value. We can see from the results of the example that global variable a (9) did get multiplied, returned, and assigned to another global variable c, so we know that b did exist within the function and was returned. However, now that the function has completed its job, we receive an error when we try to print b because it does not exist in the global variable namespace. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'b' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'b' is not defined" + ] + } + ], + "source": [ + "print(b)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can enter any number into the function above and also override the default multiplier and our function will return the product of those two numbers." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "500" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "multiply(100, multiplier=5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Applying Functions to Data Frames\n", + "\n", + "\n", + "Now that we have a basic understanding of how functions and variables work, let's look at how we can apply a function that we have created to a Pandas data frame. For this example, we will import Pandas and the vehicles data set we have been working with in this module. We will then write a get_means function that identifies all the numeric columns in the data set and returns a data frame containing each column name and its mean. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/gy/z7r47gln14z4xv65_9682djc0000gn/T/ipykernel_92425/3729091463.py:3: DtypeWarning: Columns (70,71,72,73) have mixed types. Specify dtype option on import or set low_memory=False.\n", + " data = pd.read_csv('vehicles.csv')\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ColumnMean
0barrels081.777900e+01
1barrelsA082.021285e-01
2charge1200.000000e+00
3charge2409.125350e-03
4city081.757460e+01
5city08U2.386657e+00
6cityA084.115965e-01
7cityA08U2.000442e-01
8cityCD5.544166e-05
9cityE9.747625e-02
10cityUF2.295891e-04
11co23.024114e+01
12co2A3.476712e+00
13co2TailpipeAGpm1.714184e+01
14co2TailpipeGpm4.800935e+02
15comb081.979354e+01
16comb08U2.696024e+00
17combA084.680777e-01
18combA08U2.247196e-01
19combE1.023967e-01
20combinedCD3.095781e-05
21combinedUF2.223701e-04
22cylinders5.744395e+00
23displ3.330180e+00
24engId9.663022e+03
25feScore-5.201987e-01
26fuelCost083.039687e+03
27fuelCostA081.236075e+02
28ghgScore-5.216136e-01
29ghgScoreA-9.548670e-01
30highway082.363443e+01
31highway08U3.238078e+00
32highwayA085.639745e-01
33highwayA08U2.697623e-01
34highwayCD8.662759e-07
35highwayE1.083856e-01
36highwayUF2.116687e-04
37hlv2.056135e+00
38hpv1.057241e+01
39id1.739284e+04
40lv21.880050e+00
41lv46.225347e+00
42phevBlended2.598828e-04
43pv21.374687e+01
44pv43.362554e+01
45range1.619070e-01
46rangeCity1.128233e-01
47rangeCityA1.142980e-02
48rangeHwy1.054146e-01
49rangeHwyA1.025665e-02
50UCity2.207385e+01
51UCityA5.012766e-01
52UHighway3.292403e+01
53UHighwayA7.554765e-01
54year1.998593e+03
55youSaveSpend-3.197316e+03
\n", + "
" + ], + "text/plain": [ + " Column Mean\n", + "0 barrels08 1.777900e+01\n", + "1 barrelsA08 2.021285e-01\n", + "2 charge120 0.000000e+00\n", + "3 charge240 9.125350e-03\n", + "4 city08 1.757460e+01\n", + "5 city08U 2.386657e+00\n", + "6 cityA08 4.115965e-01\n", + "7 cityA08U 2.000442e-01\n", + "8 cityCD 5.544166e-05\n", + "9 cityE 9.747625e-02\n", + "10 cityUF 2.295891e-04\n", + "11 co2 3.024114e+01\n", + "12 co2A 3.476712e+00\n", + "13 co2TailpipeAGpm 1.714184e+01\n", + "14 co2TailpipeGpm 4.800935e+02\n", + "15 comb08 1.979354e+01\n", + "16 comb08U 2.696024e+00\n", + "17 combA08 4.680777e-01\n", + "18 combA08U 2.247196e-01\n", + "19 combE 1.023967e-01\n", + "20 combinedCD 3.095781e-05\n", + "21 combinedUF 2.223701e-04\n", + "22 cylinders 5.744395e+00\n", + "23 displ 3.330180e+00\n", + "24 engId 9.663022e+03\n", + "25 feScore -5.201987e-01\n", + "26 fuelCost08 3.039687e+03\n", + "27 fuelCostA08 1.236075e+02\n", + "28 ghgScore -5.216136e-01\n", + "29 ghgScoreA -9.548670e-01\n", + "30 highway08 2.363443e+01\n", + "31 highway08U 3.238078e+00\n", + "32 highwayA08 5.639745e-01\n", + "33 highwayA08U 2.697623e-01\n", + "34 highwayCD 8.662759e-07\n", + "35 highwayE 1.083856e-01\n", + "36 highwayUF 2.116687e-04\n", + "37 hlv 2.056135e+00\n", + "38 hpv 1.057241e+01\n", + "39 id 1.739284e+04\n", + "40 lv2 1.880050e+00\n", + "41 lv4 6.225347e+00\n", + "42 phevBlended 2.598828e-04\n", + "43 pv2 1.374687e+01\n", + "44 pv4 3.362554e+01\n", + "45 range 1.619070e-01\n", + "46 rangeCity 1.128233e-01\n", + "47 rangeCityA 1.142980e-02\n", + "48 rangeHwy 1.054146e-01\n", + "49 rangeHwyA 1.025665e-02\n", + "50 UCity 2.207385e+01\n", + "51 UCityA 5.012766e-01\n", + "52 UHighway 3.292403e+01\n", + "53 UHighwayA 7.554765e-01\n", + "54 year 1.998593e+03\n", + "55 youSaveSpend -3.197316e+03" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "data = pd.read_csv('vehicles.csv')\n", + "\n", + "def get_means(df):\n", + " numeric = df._get_numeric_data()\n", + " means = pd.DataFrame(numeric.mean()).reset_index()\n", + " means.columns = ['Column', 'Mean']\n", + " return means\n", + "\n", + "mean_df = get_means(data)\n", + "mean_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note that we performed several steps with a single function call:\n", + "\n", + " Getting the numeric columns\n", + " Calculating the means\n", + " Resetting the indexes\n", + " Setting the data frame's column names\n", + "\n", + "Also note that the only input necessary for this function was a data frame. The function took care of everything else. That means that it should work for any data frame that you pass it, as long as the data frame has numeric columns. We have just created a tool by writing code once that we can use again and again.\n", + "\n", + "Challenge: Import another data set that contains numeric variables and run the get_means function on it. It should return the means for the numeric columns in that data set. " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb b/lab-functional-programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb new file mode 100644 index 0000000..2cd2b28 --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb @@ -0,0 +1,254 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a Python function that wraps your previous solution for the Bag of Words lab.\n", + "\n", + "Requirements:\n", + "\n", + "1. Your function should accept the following parameters:\n", + " * `docs` [REQUIRED] - array of document paths.\n", + " * `stop_words` [OPTIONAL] - array of stop words. The default value is an empty array.\n", + "\n", + "1. Your function should return a Python object that contains the following:\n", + " * `bag_of_words` - array of strings of normalized unique words in the corpus.\n", + " * `term_freq` - array of the term-frequency vectors." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Import required libraries\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "# Define function\n", + "def get_bow_from_docs(docs, stop_words=[]):\n", + " \n", + " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + " \n", + " corpus2=[]\n", + " \n", + " for i in docs:\n", + " texto=open(i,\"r\")\n", + " texto2=texto.read()\n", + " corpus2.append(texto2)\n", + " \n", + " corpus=[i.lower()[:-1] for i in corpus2]\n", + " \n", + " bag1=' '.join(corpus)\n", + " \n", + " bag_of_words=bag1.split()\n", + " \n", + " term_freq = []\n", + "\n", + "\n", + " for i in bag_of_words:\n", + " for x in corpus:\n", + " y=(corpus[x.index(x)].split().count(i))\n", + " term_freq.append(y)\n", + " \n", + " \"\"\"\n", + " Loop `docs` and read the content of each doc into a string in `corpus`.\n", + " Remember to convert the doc content to lowercases and remove punctuation.\n", + " \"\"\"\n", + " \"\"\"\n", + " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", + " should be unique which means before adding each term you need to check if it's already added to the array.\n", + " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", + " if it is not a stop word.\n", + " \"\"\"\n", + "\n", + " \n", + " \n", + " \n", + " \"\"\"\n", + " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", + " Create an array for each doc's term frequency and append it to `term_freq`.\n", + " \"\"\"\n", + "\n", + " \n", + " \n", + " # Now return your output as an object\n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " }\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "docs_1 = ['doc1.txt', 'doc2.txt', 'doc3.txt']" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'bag_of_words': ['ironhack',\n", + " 'is',\n", + " 'cool.',\n", + " 'i',\n", + " 'love',\n", + " 'ironhack.',\n", + " 'i',\n", + " 'am',\n", + " 'a',\n", + " 'student',\n", + " 'at',\n", + " 'ironhack.'],\n", + " 'term_freq': [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_bow_from_docs(docs_1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function without stop words. You should see the output like below:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'is', 'cool.', 'i', 'love', 'ironhack.', 'i', 'am', 'a', 'student', 'at', 'ironhack.'], 'term_freq': [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}\n" + ] + } + ], + "source": [ + "# Define doc paths array\n", + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt']\n", + "\n", + "# Obtain BoW from your function\n", + "bow = get_bow_from_docs(docs)\n", + "\n", + "# Print BoW\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If your attempt above is successful, nice work done!\n", + "\n", + "Now test your function again with the stop words. In the previous lab we defined the stop words in a large array. In this lab, we'll import the stop words from Scikit-Learn." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (1073503526.py, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m Input \u001b[0;32mIn [5]\u001b[0;36m\u001b[0m\n\u001b[0;31m from sklearn.feature_extraction\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction \n", + "print(stop_words.ENGLISH_STOP_WORDS)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen a large list of words that looks like:\n", + "\n", + "```frozenset({'across', 'mine', 'cannot', ...})```\n", + "\n", + "`frozenset` is a type of Python object that is immutable. In this lab you can use it just like an array without conversion." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, test your function with supplying `stop_words.ENGLISH_STOP_WORDS` as the second parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "bow = get_bow_from_docs(bow, stop_words.ENGLISH_STOP_WORDS)\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}```" + ] + }, + { + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/Q2-checkpoint.ipynb b/lab-functional-programming/your-code/.ipynb_checkpoints/Q2-checkpoint.ipynb new file mode 100644 index 0000000..6c29317 --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/Q2-checkpoint.ipynb @@ -0,0 +1,131 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we want to enhance the `get_bow_from_docs` function so that it will work with HTML webpages. In HTML, there are a lot of messy codes such as HTML tags, Javascripts, [unicodes](https://www.w3schools.com/charsets/ref_utf_misc_symbols.asp) that will mess up your bag of words. We need to clean up those junk before generating BoW.\n", + "\n", + "Next, what you will do is to define several new functions each of which is specialized to clean up the HTML codes in one aspect. For instance, you can have a `strip_html_tags` function to remove all HTML tags, a `remove_punctuation` function to remove all punctuation, a `to_lower_case` function to convert string to lowercase, and a `remove_unicode` function to remove all unicodes.\n", + "\n", + "Then in your `get_bow_from_doc` function, you will call each of those functions you created to clean up the HTML before you generate the corpus.\n", + "\n", + "Note: Please use Python string operations and regular expression only in this lab. Do not use extra libraries such as `beautifulsoup` because otherwise you loose the purpose of practicing." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Define your string handling functions below\n", + "# Minimal 3 functions\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, paste your previously written `get_bow_from_docs` function below. Call your functions above at the appropriate place." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def get_bow_from_docs(docs, stop_words=[]):\n", + " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " \n", + " # write your codes here\n", + " \n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " }\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, read the content from the three HTML webpages in the `your-codes` directory to test your function." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "ename": "ImportError", + "evalue": "cannot import name 'stop_words' from 'sklearn.feature_extraction' (/Users/hal/opt/anaconda3/lib/python3.9/site-packages/sklearn/feature_extraction/__init__.py)", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [3]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01msklearn\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfeature_extraction\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m stop_words\n\u001b[1;32m 2\u001b[0m bow \u001b[38;5;241m=\u001b[39m get_bow_from_docs([\n\u001b[1;32m 3\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mwww.coursereport.com_ironhack.html\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 4\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124men.wikipedia.org_Data_analysis.html\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7\u001b[0m stop_words\u001b[38;5;241m.\u001b[39mENGLISH_STOP_WORDS\n\u001b[1;32m 8\u001b[0m )\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28mprint\u001b[39m(bow)\n", + "\u001b[0;31mImportError\u001b[0m: cannot import name 'stop_words' from 'sklearn.feature_extraction' (/Users/hal/opt/anaconda3/lib/python3.9/site-packages/sklearn/feature_extraction/__init__.py)" + ] + } + ], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "bow = get_bow_from_docs([\n", + " 'www.coursereport.com_ironhack.html',\n", + " 'en.wikipedia.org_Data_analysis.html',\n", + " 'www.lipsum.com.html'\n", + " ],\n", + " stop_words.ENGLISH_STOP_WORDS\n", + ")\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Do you see any problem in the output? How do you improve the output?\n", + "\n", + "A good way to improve your codes is to look into the HTML data sources and try to understand where the messy output came from. A good data analyst always learns about the data in depth in order to perform the job well.\n", + "\n", + "Spend 20-30 minutes to improve your functions or until you feel you are good at string operations. This lab is just a practice so you don't need to stress yourself out. If you feel you've practiced enough you can stop and move on the next challenge question." + ] + }, + { + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/Q3-checkpoint.ipynb b/lab-functional-programming/your-code/.ipynb_checkpoints/Q3-checkpoint.ipynb new file mode 100644 index 0000000..73beacb --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/Q3-checkpoint.ipynb @@ -0,0 +1,232 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Lambda** is a special Python function type that is **anonymous**. By *anonymous* it means a lambda function does not have name. Lambda functions are embedded inside codes so that you don't call them like calling regular Python functions.\n", + "\n", + "**`Map`** applies a function to all the items in an input list. The function that is applied can be a standard or a lambda function.\n", + "\n", + "For instance, below is an example of multiplying number tuples in a list:" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, 12, 30]" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "items = [(1,2), (3,4), (5,6)]\n", + "\n", + "def multiply(num_tuple):\n", + " return num_tuple[0]*num_tuple[1]\n", + "list(map(multiply, items))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "...is the same as:" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, 12, 30]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "items = [(1,2), (3,4), (5,6)]\n", + "list(map(lambda item: item[0]*item[1], items))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why do we sometimes use `lambda` and `map`? Because, as you see in the example above, they make your code really concise by combining 3 lines of code to 1 line.\n", + "\n", + "Besides `map`, there is also **`filter`** that selectively returns elements in an array according to whether you return `True`. There is also **`reduce`** that performs computation on a list of items then returns result.\n", + "\n", + "Here is a [good tutorial](http://book.pythontips.com/en/latest/map_filter.html) about `map`, `filter`, and `reduce`. Read it if you are not familiar with how they are used. Then proceed to the next cell." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the next cell, use `filter` and `lambda` to return a list that contains positive numbers only. The output should be:\n", + "\n", + "```[1, 4, 5]```" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 5]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "numbers = [1, 4, -1, -100, 0, 5, -99]\n", + "\n", + "# Enter your code below\n", + "\n", + "list(filter(lambda x: x>0,numbers))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, use `reduce` and `lambda` to return a string that only contains English terms. The English terms are separated with a whitespace ` `.\n", + "\n", + "Hints: \n", + "\n", + "* If your Jupyter Notebook cannot import `langdetect`, you need to install it with `pip install langdetect`. If Jupyter Notebook still cannot find the library, try install with `python3 -m pip install langdetect`. This is because you need to install `langdetect` in the same Python run environment where Jupyter Notebook is running.\n", + "\n", + "* If a word is English, `langdetect.detect(word)=='en'` will return `True`.\n", + "\n", + "Your output should read:\n", + "\n", + "```'good morning everyone'```" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'langdetect'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [4]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mlangdetect\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfunctools\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m reduce\n\u001b[1;32m 3\u001b[0m words \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mgood morning\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m早上好\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mдоброго\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mおはようございます\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124meveryone\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m大家\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mкаждый\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mみんな\u001b[39m\u001b[38;5;124m'\u001b[39m]\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'langdetect'" + ] + } + ], + "source": [ + "import langdetect\n", + "from functools import reduce\n", + "words = ['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n", + "\n", + "# Enter your code below" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Question" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, if you still have time, convert your response in Q2 by using `lambda`, `map`, `filter`, or `reduce` where applicable. Enter your function in the cell below.\n", + "\n", + "As you write Python functions, generally you don't want to make your function too long. Long functions are difficult to read and difficult to debug. If a function is getting too long, consider breaking it into sever shorter functions where the main function calls other functions. If anything goes wrong, you can output debug messages in each of the functions to check where exactly the error is." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Enter your code below" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function below with the Bag of Words lab docs (it's easier for you to debug your code). Your output should be:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "bow = get_bow_from_docs([\n", + " '../../lab-bag-of-words/your-code/doc1.txt', \n", + " '../../lab-bag-of-words/your-code/doc2.txt', \n", + " '../../lab-bag-of-words/your-code/doc3.txt'],\n", + " stop_words.ENGLISH_STOP_WORDS\n", + ")\n", + "\n", + "print(bow)" + ] + }, + { + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/doc1-checkpoint.txt b/lab-functional-programming/your-code/.ipynb_checkpoints/doc1-checkpoint.txt new file mode 100644 index 0000000..a1d448f --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/doc1-checkpoint.txt @@ -0,0 +1 @@ +Ironhack is cool. diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/doc2-checkpoint.txt b/lab-functional-programming/your-code/.ipynb_checkpoints/doc2-checkpoint.txt new file mode 100644 index 0000000..b532a0c --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/doc2-checkpoint.txt @@ -0,0 +1 @@ +I love Ironhack. diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/doc3-checkpoint.txt b/lab-functional-programming/your-code/.ipynb_checkpoints/doc3-checkpoint.txt new file mode 100644 index 0000000..ac91bc3 --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/doc3-checkpoint.txt @@ -0,0 +1 @@ +I am a student at Ironhack. diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb b/lab-functional-programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb new file mode 100644 index 0000000..5ab4ec2 --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb @@ -0,0 +1,535 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Iterators, Generators and `yield`. \n", + "\n", + "In iterator in Python is an object that represents a stream of data. However, iterators contain a countable number of values. We traverse through the iterator and return one value at a time. All iterators support a `next` function that allows us to traverse through the iterator. We can create an iterator using the `iter` function that comes with the base package of Python. Below is an example of an iterator." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + } + ], + "source": [ + "# We first define our iterator:\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "# We can now iterate through the object using the next function\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "# We continue to iterate through the iterator.\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n" + ] + } + ], + "source": [ + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "StopIteration", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mStopIteration\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [5]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# After we have iterated through all elements, we will get a StopIteration Error\u001b[39;00m\n\u001b[0;32m----> 3\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;28;43mnext\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43miterator\u001b[49m\u001b[43m)\u001b[49m)\n", + "\u001b[0;31mStopIteration\u001b[0m: " + ] + } + ], + "source": [ + "# After we have iterated through all elements, we will get a StopIteration Error\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We can also iterate through an iterator using a for loop like this:\n", + "# Note: we cannot go back directly in an iterator once we have traversed through the elements. \n", + "# This is why we are redefining the iterator below\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that takes an iterator and returns the first element in the iterator and returns the first element in the iterator that is divisible by 2. Assume that all iterators contain only numeric data. If we have not found a single element that is divisible by 2, return zero." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def divisible2(iterator):\n", + " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", + " # Input: Iterable\n", + " # Output: Integer\n", + " \n", + " # Sample Input: iter([1,2,3])\n", + " # Sample Output: 2\n", + " \n", + " # Your code here:\n", + " for i in iterator:\n", + " if i%2==0:\n", + " return print(i)\n", + " else:\n", + " return print('0')\n", + " \n", + "iterator2=iter([1,2,3])\n", + "\n", + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "divisible2(iterator2) #solo corre una vez la funición" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generators\n", + "\n", + "It is quite difficult to create your own iterator since you would have to implement a `next` function. Generators are functions that enable us to create iterators. The difference between a function and a generator is that instead of using `return`, we use `yield`. For example, below we have a function that returns an iterator containing the numbers 0 through n:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def firstn(n):\n", + " number = 0\n", + " while number < n:\n", + " yield number\n", + " number = number + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If we pass 5 to the function, we will see that we have a iterator containing the numbers 0 through 4." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "iterator = firstn(5)\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a generator that takes a number and returns an iterator containing all even numbers between 0 and the number you passed to the generator." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def even_iterator(n):\n", + " # This function produces an iterator containing all even numbers between 0 and n\n", + " # Input: integer\n", + " # Output: iterator\n", + " \n", + " # Sample Input: 5\n", + " # Sample Output: iter([0, 2, 4])\n", + " \n", + " # Your code here:\n", + " \n", + " list1=[i for i in range(0,n+1)]\n", + " \n", + " iter1=[]\n", + " \n", + " for i in list1:\n", + " if i%2==0:\n", + " iter1.append(i)\n", + " \n", + " \n", + " return print(iter(iter1))\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "iter_result=even_iterator(100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Applying Functions to DataFrames\n", + "\n", + "In this challenge, we will look at how to transform cells or entire columns at once.\n", + "\n", + "First, let's load a dataset. We will download the famous Iris classification dataset in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "columns = ['sepal_length', 'sepal_width', 'petal_length','petal_width','iris_type']\n", + "iris = pd.read_csv(\"https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data\", names=columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's look at the dataset using the `head` function." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "iris.tail()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's start off by using built-in functions. Try to apply the numpy mean function and describe what happens in the comments of the code." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "def get_means(df):\n", + " numeric = df._get_numeric_data()\n", + " means = pd.DataFrame(numeric.mean()).reset_index()\n", + " means.columns = ['Column', 'Mean']\n", + " return means\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "get_means(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we'll apply the standard deviation function in numpy (`np.std`). Describe what happened in the comments." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "def get_std(df):\n", + " numeric = df._get_numeric_data()\n", + " std = pd.DataFrame(numeric.std()).reset_index()\n", + " std.columns = ['Column', 'Std']\n", + " return std" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "get_std(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The measurements are in centimeters. Let's convert them all to inches. First, we will create a dataframe that contains only the numeric columns. Assign this new dataframe to `iris_numeric`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "\n", + "\n", + "iris['sepal_width']=iris['sepal_width']/2.54\n", + "iris['petal_length']=iris['petal_length']/2.54\n", + "iris['petal_width']=iris['petal_width']/2.54\n", + "\n", + "iris" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we will write a function that converts centimeters to inches in the cell below. Recall that 1cm = 0.393701in." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def cm_to_in(x):\n", + " # This function takes in a numeric value in centimeters and converts it to inches\n", + " # Input: numeric value\n", + " # Output: float\n", + " \n", + " # Sample Input: 1.0\n", + " # Sample Output: 0.393701\n", + " \n", + " # Your code here:\n", + " \n", + " return x/2.54\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now convert all columns in `iris_numeric` to inches in the cell below. We like to think of functional transformations as immutable. Therefore, save the transformed data in a dataframe called `iris_inch`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "iris" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have just found that the original measurements were off by a constant. Define the global constant `error` and set it to 2. Write a function that uses the global constant and adds it to each cell in the dataframe. Apply this function to `iris_numeric` and save the result in `iris_constant`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Define constant below:\n", + "a0=4\n", + "\n", + "def add_constant(x):\n", + " # This function adds a global constant to our input.\n", + " # Input: numeric value\n", + " # Output: numeric value\n", + " \n", + " # Your code here:\n", + " return x.apply(a0)\n", + "\n", + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "add_constant(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "# Bonus Challenge - Applying Functions to Columns\n", + "\n", + "Read more about applying functions to either rows or columns [here](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.apply.html) and write a function that computes the maximum value for each row of `iris_numeric`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Compute the combined lengths for each row and the combined widths for each row using a function. Assign these values to new columns `total_length` and `total_width`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/lab-functional-programming/your-code/.ipynb_checkpoints/vehicles-checkpoint.csv b/lab-functional-programming/your-code/.ipynb_checkpoints/vehicles-checkpoint.csv new file mode 100644 index 0000000..5e1bcab --- /dev/null +++ b/lab-functional-programming/your-code/.ipynb_checkpoints/vehicles-checkpoint.csv @@ -0,0 +1,34632 @@ +barrels08,barrelsA08,charge120,charge240,city08,city08U,cityA08,cityA08U,cityCD,cityE,cityUF,co2,co2A,co2TailpipeAGpm,co2TailpipeGpm,comb08,comb08U,combA08,combA08U,combE,combinedCD,combinedUF,cylinders,displ,drive,engId,eng_dscr,feScore,fuelCost08,fuelCostA08,fuelType,fuelType1,ghgScore,ghgScoreA,highway08,highway08U,highwayA08,highwayA08U,highwayCD,highwayE,highwayUF,hlv,hpv,id,lv2,lv4,make,model,mpgData,phevBlended,pv2,pv4,range,rangeCity,rangeCityA,rangeHwy,rangeHwyA,trany,UCity,UCityA,UHighway,UHighwayA,VClass,year,youSaveSpend,guzzler,trans_dscr,tCharger,sCharger,atvType,fuelType2,rangeA,evMotor,mfrCode +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1,0,0,Alfa Romeo,Spider Veloce 2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Two Seaters,1985,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22020,(GUZZLER),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1985,-13000,T,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,19,77,100,0,0,Dodge,Charger,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,47.0,0.0,Subcompact Cars,1985,1750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1000,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,16.6667,0.0,Vans,1985,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10000,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1993,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10001,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Compact Cars,1993,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10002,0,15,Subaru,Loyale,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1993,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57005,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10003,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1993,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57005,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10004,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1993,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57006,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10005,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1993,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57006,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10006,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.3077,0.0,Compact Cars,1993,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,10007,0,0,Volkswagen,Golf III / GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59007,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,88,10008,0,0,Volkswagen,Golf III / GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1993,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10009,0,15,Volkswagen,Jetta III,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1001,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.0,0.0,Vans,1985,-9250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59007,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10010,0,15,Volkswagen,Jetta III,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Compact Cars,1993,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10011,0,14,Volvo,240,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Compact Cars,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10012,0,14,Volvo,240,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1993,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10013,0,17,Audi,100,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1993,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10014,0,17,Audi,100,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1993,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12071,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10015,0,13,BMW,740i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7778,0.0,28.0,0.0,Midsize Cars,1993,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12071,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10016,0,13,BMW,740il,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,28.0,0.0,Midsize Cars,1993,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10017,0,13,BMW,750il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1993,-9250,T,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10018,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Midsize Cars,1993,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10019,16,16,Buick,Century,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1993,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1002,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,23.0,0.0,Vans,1985,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10020,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4117,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10021,16,16,Buick,Regal,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10022,16,16,Buick,Regal,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10023,16,16,Buick,Regal,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10024,14,0,Buick,Riviera,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4620,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10025,15,0,Cadillac,Eldorado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1993,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4640,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10026,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1993,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4620,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10027,0,14,Cadillac,Seville,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1993,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4640,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10028,0,14,Cadillac,Seville,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1993,-5750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4122,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10029,15,16,Chevrolet,Lumina,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2859,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1003,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0769,0.0,Vans,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4117,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10030,15,16,Chevrolet,Lumina,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10031,15,16,Chevrolet,Lumina,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4120,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10032,15,16,Chevrolet,Lumina,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4119,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10033,15,16,Chevrolet,Lumina,N,false,95,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1993,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10034,0,16,Chrysler,New Yorker,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16923,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,16,97,10035,0,0,CX Automotive,XM v6,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.0,0.0,Midsize Cars,1993,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16923,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,16,97,10036,0,0,CX Automotive,XM v6a,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Midsize Cars,1993,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38032,(FFS) DOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10037,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1993,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38033,(FFS) SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10038,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1993,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38032,(FFS) DOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10039,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Midsize Cars,1993,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1004,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Vans,1985,-15500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10040,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10041,0,16,Dodge,Dynasty,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10042,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10043,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10044,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10045,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Midsize Cars,1993,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10046,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10047,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10048,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10049,0,18,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1993,-3750,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1005,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Vans,1985,-15500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10050,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10051,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,34.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3360,(FFS) (S-CHARGE),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10052,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1993,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3361,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10053,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize Cars,1993,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3362,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10054,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1993,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10055,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1993,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10056,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26502,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10057,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1993,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10058,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Midsize Cars,1993,-5750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38041,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10059,0,15,Infiniti,Q45 Full-Active Suspension,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Midsize Cars,1993,-8000,T,2MODE CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1006,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Vans,1985,-15500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10060,0,13,Lexus,LS 400,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10061,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1993,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3362,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10062,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1993,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10063,0,18,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1993,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10064,0,18,Mercury,Sable,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,97,10065,0,0,Mazda,626,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.7436,0.0,Midsize Cars,1993,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56051,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,14,97,10066,0,0,Mazda,626,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Midsize Cars,1993,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56052,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,14,97,10067,0,0,Mazda,626,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1993,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56052,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,97,10068,0,0,Mazda,626,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1993,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10069,0,12,Mazda,929,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1993,-3750,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1007,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,14.0,0.0,Vans,1985,-15500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10070,0,16,Oldsmobile,Cutlass Ciera,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Midsize Cars,1993,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10071,0,16,Oldsmobile,Cutlass Ciera,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1993,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10072,0,16,Oldsmobile,Cutlass Ciera,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4117,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10073,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10074,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4120,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10075,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4119,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10076,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1993,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10077,14,0,Oldsmobile,Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10078,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10079,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1993,0,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1008,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Vans,1985,-9250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10080,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Midsize Cars,1993,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10081,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10082,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4117,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10083,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10084,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1993,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4120,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10085,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4119,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10086,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1993,-3250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10087,0,12,Rolls-Royce,Brooklands/Brklnds L,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Midsize Cars,1993,-15500,T,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44008,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10088,0,12,Rolls-Royce,Turbo R/Turbo R(lwb),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1993,-15500,T,4MODE,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10089,0,12,Rolls-Royce,Silver Spirit II/Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Midsize Cars,1993,-15500,T,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1009,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1985,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10090,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1993,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10091,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Midsize Cars,1993,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57009,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10092,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1993,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57009,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10093,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Midsize Cars,1993,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10094,0,14,Volkswagen,Passat,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1993,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10095,0,14,Volkswagen,Passat,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Midsize Cars,1993,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10096,0,14,Volkswagen,Passat,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1993,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10097,0,14,Volkswagen,Passat,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10098,0,15,Volvo,850,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,36.0,0.0,Midsize Cars,1993,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10099,0,15,Volvo,850,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Midsize Cars,1993,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,101,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Subcompact Cars,1985,-2250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1010,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10100,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize Cars,1993,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10101,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10102,0,17,Volvo,960,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1993,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10103,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4480,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10104,0,20,Buick,Park Avenue,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,35.0,0.0,Large Cars,1993,-4750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10105,0,20,Buick,Park Avenue,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10106,0,21,Buick,Roadmaster,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4640,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10107,18,18,Cadillac,DeVille/60 Special,Y,false,107,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1993,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10108,0,21,Cadillac,Fleetwood,Y,false,0,125,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1993,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4100,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10109,0,20,Chevrolet,Caprice,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1993,-2500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1011,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Vans,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10110,0,20,Chevrolet,Caprice,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1993,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10111,0,20,Chevrolet,Caprice,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1993,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10112,0,15,Chrysler,Concorde,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1993,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2777,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10113,0,15,Chrysler,Concorde,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1993,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10114,0,17,Chrysler,Fifth Avenue/Imperial,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10115,0,17,Chrysler,Fifth Avenue/Imperial,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Large Cars,1993,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10116,0,15,Dodge,Intrepid,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1993,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2777,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10117,0,15,Dodge,Intrepid,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1993,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10118,0,15,Eagle,Vision,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1993,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2777,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10119,0,15,Eagle,Vision,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1993,-2500,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1012,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1985,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10120,0,21,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1993,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10121,0,19,Lincoln,Continental,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1993,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10122,0,21,Mercury,Grand Marquis,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1993,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10123,0,22,Lincoln,Town Car,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1993,-2500,,,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20055,"(DSL,TRBO) (NO-CAT)",-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10124,0,16,Mercedes-Benz,300SD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Large Cars,1993,-3500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10125,0,16,Mercedes-Benz,300SE,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,24.359,0.0,Large Cars,1993,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10126,0,16,Mercedes-Benz,400SEL,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Large Cars,1993,-9500,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20065,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10127,0,16,Mercedes-Benz,500SEL,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Large Cars,1993,-11250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10128,0,17,Oldsmobile,Eighty-Eight,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10129,0,20,Oldsmobile,Ninety-Eight,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1013,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4480,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10130,0,20,Oldsmobile,Ninety-Eight,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,35.0,0.0,Large Cars,1993,-4750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4440,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10131,0,18,Pontiac,Bonneville,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1993,-4750,,2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10132,0,18,Pontiac,Bonneville,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1993,-1750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10133,0,12,Rolls-Royce,Silver Spur II Mpw Touring L,N,false,0,127,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,18.0,0.0,Large Cars,1993,-15500,T,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,99,10134,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1993,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,99,10135,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Large Cars,1993,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47031,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,10136,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Large Cars,1993,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47041,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,99,10137,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Large Cars,1993,-1750,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10138,0,34,Audi,100 quattro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Small Station Wagons,1993,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10139,0,31,BMW,525i Touring,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Small Station Wagons,1993,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1014,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10140,0,34,Chevrolet,Cavalier Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Small Station Wagons,1993,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4116,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10141,0,34,Chevrolet,Cavalier Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Small Station Wagons,1993,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16923,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10142,0,25,CX Automotive,XM v6 Break,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Small Station Wagons,1993,-8000,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10143,0,31,Ford,Escort Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Small Station Wagons,1993,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10144,0,31,Ford,Escort Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,46.1538,0.0,Small Station Wagons,1993,2250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10145,0,34,Honda,Accord Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Small Station Wagons,1993,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10146,0,34,Honda,Accord Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Station Wagons,1993,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10147,0,31,Mercury,Tracer Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Small Station Wagons,1993,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10148,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,46.1538,0.0,Small Station Wagons,1993,2250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10149,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,45.0,0.0,Small Station Wagons,1993,1500,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1015,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10150,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,42.0,0.0,Small Station Wagons,1993,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10151,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Small Station Wagons,1993,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10152,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.8718,0.0,Small Station Wagons,1993,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10153,0,36,Subaru,Legacy Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Small Station Wagons,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10154,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Small Station Wagons,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10155,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Small Station Wagons,1993,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10156,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Small Station Wagons,1993,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10157,0,36,Subaru,Legacy Wagon AWD Turbo,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1993,-4750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10158,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1993,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10159,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1993,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1016,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Vans,1985,-11000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57006,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10160,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Small Station Wagons,1993,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57006,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10161,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.3077,0.0,Small Station Wagons,1993,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4122,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10162,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10163,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize-Large Station Wagons,1993,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10164,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,10165,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10166,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10167,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10168,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10169,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1017,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1985,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10170,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10171,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10172,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10173,0,38,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10174,0,38,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10175,0,38,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10176,0,38,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10177,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10178,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10179,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1018,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1985,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10180,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10181,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,10182,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10183,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10184,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10185,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10186,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10187,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10188,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4122,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10189,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,-1000,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1019,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1985,-4500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10190,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize-Large Station Wagons,1993,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10191,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49210,SOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10192,0,43,Mitsubishi,Diamante Wagon,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-3750,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10193,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,10194,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10195,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10196,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10197,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,10198,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,10199,0,0,Plymouth,Colt Vista,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,102,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1985,-3000,,,T,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1020,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1985,-5500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,10200,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10201,0,40,Toyota,Camry Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1993,-1000,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57009,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10202,0,40,Toyota,Camry Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-2500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10203,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1993,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10204,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1993,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10205,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1993,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10206,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,42,91,10207,0,0,Volvo,240 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,42,91,10208,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1993,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,10209,0,0,Volvo,940 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1993,-2500,,,T,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1021,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1985,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,39,95,10210,0,0,Volvo,940 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,10211,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10212,0,55,Buick,Roadmaster Wagon,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10213,0,55,Chevrolet,Caprice Wagon,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10214,0,55,Chevrolet,Caprice Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1993,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10215,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1993,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10216,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1993,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10217,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1993,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10218,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10219,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1993,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1022,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1985,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10220,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1993,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10221,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1993,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10222,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1993,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10223,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1993,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10224,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1993,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10225,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1993,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10226,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1993,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10227,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1993,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10228,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10229,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1993,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1023,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Vans,1985,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10230,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1993,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10231,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1993,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10232,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Small Pickup Trucks,1993,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10233,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1993,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10234,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1993,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10235,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1993,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10236,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10237,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10238,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10239,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1024,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Vans,1985,-500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10240,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10241,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10242,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10243,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10244,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-7750,,SIL Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,7.4,Rear-Wheel Drive,4880,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,10245,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,16.0,0.0,Standard Pickup Trucks,1993,-15500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10246,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10247,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10248,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10249,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1025,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10250,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10251,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10252,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10253,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,SIL Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2821,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10254,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Standard Pickup Trucks,1993,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10255,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10256,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10257,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10258,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10259,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4850,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1026,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.9231,0.0,Vans,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10260,0,0,Dodge,D100/D150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10261,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10262,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10263,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10264,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10265,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10266,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10267,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10268,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10269,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4854,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1027,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Vans,1985,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10270,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2921,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10271,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2921,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10272,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.2051,0.0,Standard Pickup Trucks,1993,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10273,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10274,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3710,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10275,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10276,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10277,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10278,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10279,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1028,0,0,Toyota,Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3802,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10280,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks,1993,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10281,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3904,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10282,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3707,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10283,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10284,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10285,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10286,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10287,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10288,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3905,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10289,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1993,-11000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1029,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,32.0,0.0,Vans,1985,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10290,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1993,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10291,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Standard Pickup Trucks,1993,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3623,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10292,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3625,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10293,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Standard Pickup Trucks,1993,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3662,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10294,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3661,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10295,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10296,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10297,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10298,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10299,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,103,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,59015,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1030,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10300,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10301,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10302,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10303,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10304,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-7750,,SIL Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10305,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10306,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10307,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10308,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10309,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,59015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1031,0,0,Volkswagen,Vanagon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Vans,1985,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10310,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10311,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10312,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,SIL Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10313,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10314,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1993,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10315,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1993,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10316,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Standard Pickup Trucks,1993,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10317,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1993,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10318,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Standard Pickup Trucks,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10319,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Standard Pickup Trucks,1993,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,9580,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1032,0,0,AM General,Post Office DJ5 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,23.0769,0.0,Special Purpose Vehicle 2WD,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10320,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Standard Pickup Trucks,1993,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10321,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1993,-3250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10322,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10323,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10324,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10325,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10326,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10327,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10328,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10329,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,9590,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1033,0,0,AM General,Post Office DJ8 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10330,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10331,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10332,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1993,-5500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10333,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10334,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10335,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10336,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10337,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10338,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10339,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1034,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10340,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10341,0,0,Chevrolet,Pickup 2500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1993,-5500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10342,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Standard Pickup Trucks,1993,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10343,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10344,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10345,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10346,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10347,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10348,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1993,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10349,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1035,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10350,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10351,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10352,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10353,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10354,0,0,Dodge,W100/W150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10355,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10356,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10357,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1993,-13000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10358,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1993,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10359,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1036,0,0,Chevrolet,Suburban C10 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-4500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10360,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10361,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1993,-13000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10362,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1993,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10363,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1993,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10364,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1993,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10365,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10366,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10367,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10368,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3844,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10369,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1037,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10370,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3843,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10371,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1993,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10372,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3903,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10373,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1993,-11000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10374,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Standard Pickup Trucks,1993,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3653,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10375,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3652,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10376,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3682,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10377,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3681,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10378,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10379,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1038,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1985,-1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10380,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10381,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1993,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10382,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10383,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10384,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10385,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10386,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10387,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1993,-5500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10388,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10389,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1039,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1985,-500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10390,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10391,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10392,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10393,0,0,GMC,Sierra 2500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10394,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10395,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1993,-11000,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10396,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1993,-5500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10397,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10398,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Standard Pickup Trucks,1993,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10399,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1993,-5250,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,81,104,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,53.0,0.0,Subcompact Cars,1985,4000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4831,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1040,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29084,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10400,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29087,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10401,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10402,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10403,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10404,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10405,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10406,0,0,Mazda,B2600i 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10407,0,0,Toyota,Truck 4WD/T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1993,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10408,0,0,Toyota,Truck 4WD/T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1993,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10409,0,0,Toyota,Truck 4WD/T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1993,-9250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4838,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1041,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10410,0,0,Toyota,Truck 4WD/T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10411,0,0,Toyota,Truck 4WD/T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10412,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1993,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10413,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1993,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10414,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10415,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10416,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10417,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10418,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10419,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4836,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1042,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10420,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10421,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10422,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Vans,1993,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10423,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1993,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10424,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10425,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Vans,1993,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10426,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10427,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10428,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Vans,1993,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3622,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10429,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Vans,1993,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1043,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1985,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3624,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10430,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Vans,1993,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3663,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10431,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3684,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10432,0,0,Ford,Aerostar Van AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3708,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10433,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Vans,1993,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10434,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10435,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10436,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1993,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3906,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10437,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1993,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3709,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10438,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1993,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10439,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1044,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1985,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10440,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1993,-13000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10441,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10442,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10443,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10444,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10445,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10446,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1993,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10447,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1993,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10448,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10449,0,0,Chevrolet,Astro AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1993,-8000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1045,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10450,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1993,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10451,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10452,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10453,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10454,0,0,Chevrolet,Sport Van G10/20 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10455,0,0,Chevrolet,Sport Van G30 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10456,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Vans,1993,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10457,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10458,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Vans,1993,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10459,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Vans,1993,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1046,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicle 2WD,1985,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10460,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10461,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Vans,1993,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10462,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Vans,1993,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10463,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Vans,1993,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3621,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10464,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3620,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10465,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3664,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10466,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1993,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3685,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10467,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1993,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10468,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3908,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10469,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1993,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2814,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1047,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3907,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10470,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10471,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1993,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10472,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1993,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10473,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10474,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10475,0,0,GMC,Rally G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1993,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10476,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1993,-8000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10477,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1993,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10478,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10479,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2810,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1048,0,0,Dodge,Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10480,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1993,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10481,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Vans,1993,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,59002,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10482,0,0,Volkswagen,Eurovan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.359,0.0,Vans,1993,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,59002,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10483,0,0,Volkswagen,Eurovan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Vans,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10484,0,0,Chevrolet,Lumina/APV Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10485,0,0,Chevrolet,Lumina/APV Minivan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10486,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1993,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10487,0,0,Chevrolet,S10 Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10488,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10489,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Special Purpose Vehicles,1993,-5250,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2811,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1049,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Special Purpose Vehicle 2WD,1985,0,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38095,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10490,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38094,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10491,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10492,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10493,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10494,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,39.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10495,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10496,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10497,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10498,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,39.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10499,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-2500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,105,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2810,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1050,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,37.0,0.0,Special Purpose Vehicle 2WD,1985,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10500,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10501,0,0,Dodge,Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1993,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10502,0,0,Dodge,Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1993,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10503,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10504,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Special Purpose Vehicles,1993,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10505,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3665,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10506,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3660,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10507,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3651,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10508,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3650,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10509,0,0,Mercury,Villager FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2810,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1051,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1985,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10510,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10511,0,0,Geo,Tracker Convertible 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10512,0,0,GMC,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1993,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10513,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10514,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29081,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10515,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.9231,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10516,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10517,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10518,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10519,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2816,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1052,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10520,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10521,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10522,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10523,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10524,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,39.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10525,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10526,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Rear-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10527,0,0,Suzuki,Samurai 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1993,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54084,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10528,0,0,Suzuki,Sidekick Hardtop 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1993,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10529,0,0,Suzuki,Sidekick Hardtop 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2840,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1053,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10530,0,0,Suzuki,Sidekick 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10531,0,0,Suzuki,Sidekick 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10532,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10533,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1993,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10534,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1993,-4250,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10535,0,0,Chevrolet,Blazer 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1993,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10536,0,0,Chevrolet,Blazer 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1993,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10537,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1993,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10538,0,0,Chevrolet,S10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10539,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,21480,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1054,0,0,"E. P. Dutton, Inc.",Funeral Coach,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10540,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10541,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10542,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10543,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10544,0,0,Dodge,Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Special Purpose Vehicles,1993,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10545,0,0,Dodge,Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Special Purpose Vehicles,1993,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2921,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10546,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.2051,0.0,Special Purpose Vehicles,1993,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10547,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10548,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10549,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1055,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10550,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10551,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10552,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10553,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Special Purpose Vehicles,1993,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2921,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10554,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1993,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10555,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,20.0,0.0,Special Purpose Vehicles,1993,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10556,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3845,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10557,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3841,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10558,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3902,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10559,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1993,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1056,0,0,GMC,C15 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3683,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10560,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1993,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3680,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10561,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10562,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10563,0,0,Geo,Tracker Convertible 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10564,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10565,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10566,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10567,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10568,0,0,GMC,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1993,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10569,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1993,-9250,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1057,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-4500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10570,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1993,-9250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29085,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10571,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(DOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10572,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10573,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(DOHC) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10574,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,22.0,0.0,Special Purpose Vehicles,1993,-7750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(SOHC) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10575,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,6050,0,Premium,Premium Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,10576,0,0,Land Rover,Defender 110,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicles,1993,-18250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46082,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10577,0,0,Land Rover,Range Rover County,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1993,-13250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,46091,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10578,0,0,Land Rover,Range Rover County LWB,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1993,-13250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10579,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1058,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10580,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10581,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1993,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10582,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10583,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1993,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10584,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1993,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10585,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,43101,"(FFS,TRBO) (MPFI)",-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10586,0,0,"PAS, Inc",Pas-Typhoon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-9500,,CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10587,0,0,Plymouth,Voyager/Grand Voyager 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10588,0,0,Subaru,Loyale AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.0,0.0,Special Purpose Vehicles,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10589,0,0,Subaru,Loyale AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1059,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1985,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10590,0,0,Subaru,Loyale Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,28.2051,0.0,Special Purpose Vehicles,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10591,0,0,Subaru,Loyale Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10592,0,0,Suzuki,Samurai Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1993,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10593,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10594,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10595,0,0,Suzuki,Sidekick Hardtop 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10596,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10597,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10598,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1993,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10599,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1993,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,106,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1060,0,0,GMC,S15 Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1985,-500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10600,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1993,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10601,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1993,-6750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57015,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10602,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1993,-11000,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10603,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Special Purpose Vehicles,1993,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10604,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1993,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10605,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicles,1993,-9250,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10606,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1993,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4660,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10607,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,30.0,0.0,Special Purpose Vehicles,1993,-6750,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10608,0,0,Chevrolet,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1993,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10609,0,0,Chevrolet,Postal Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,20.0,0.0,Special Purpose Vehicles,1993,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4831,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1061,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10610,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicles,1993,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,10611,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1993,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10612,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1993,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10613,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Special Purpose Vehicles,1993,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10614,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1993,-4250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,10615,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,14.0,0.0,Special Purpose Vehicles,1993,-15500,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,10616,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.2222,0.0,15.0,0.0,Special Purpose Vehicles,1993,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26061,DOHC-VTEC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10617,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1994,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26061,DOHC-VTEC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10618,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Two Seaters,1994,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10619,0,0,Alfa Romeo,Spider,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Two Seaters,1994,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4838,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1062,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10620,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Two Seaters,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10621,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Two Seaters,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4104,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10622,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,34.0,0.0,Two Seaters,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10623,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10624,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1994,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10625,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10626,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1994,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,2625,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10627,0,0,Dodge,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.0,0.0,28.0,0.0,Two Seaters,1994,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22021,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10628,0,0,Ferrari,Ferrari 348 TB/TS/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Two Seaters,1994,-9500,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10629,0,0,Ferrari,Ferrari 348 TB/TS/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1994,-11250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4836,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1063,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10630,0,0,Ferrari,Ferrari 512 TR,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,20.0,0.0,Two Seaters,1994,-15500,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10631,0,0,Honda,Civic Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Two Seaters,1994,2250,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,10632,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,53.0,0.0,Two Seaters,1994,3750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(VTEC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10633,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Two Seaters,1994,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(VTEC) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10634,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Two Seaters,1994,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26015,DOHC-VTEC (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10635,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Two Seaters,1994,0,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30593,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10636,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.9231,0.0,Two Seaters,1994,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"ESPRIT (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10637,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1994,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56045,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10638,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Two Seaters,1994,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56045,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10639,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Two Seaters,1994,-1000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24680,,-1,2300,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1064,0,0,Grumman Olson,Kubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.3333,0.0,38.0,0.0,Special Purpose Vehicles,1985,500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,"(FFS,TRBO) (ROTARY)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10640,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1994,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,"(FFS,TRBO) (ROTARY)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10641,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1994,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10642,0,0,Mercedes-Benz,SL320,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Two Seaters,1994,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10643,0,0,Mercedes-Benz,SL500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Two Seaters,1994,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10644,0,0,Mercedes-Benz,SL600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Two Seaters,1994,-11250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10645,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Two Seaters,1994,-4250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10646,0,0,Porsche,911 Carrera 4/2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Two Seaters,1994,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10647,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,29.0,0.0,Two Seaters,1994,-5250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10648,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Two Seaters,1994,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10649,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Two Seaters,1994,-3250,,,,,,,,, +12.306357,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24680,,-1,1900,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1065,0,0,Grumman Olson,Kubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.8889,0.0,45.0,0.0,Special Purpose Vehicles,1985,2500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57005,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10650,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,35.0,0.0,Two Seaters,1994,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57015,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10651,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,38.0,0.0,Two Seaters,1994,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57015,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10652,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Two Seaters,1994,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10653,7,0,Audi,Cabriolet,Y,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Minicompact Cars,1994,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10654,9,0,BMW,318i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Minicompact Cars,1994,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10655,9,0,BMW,318i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Minicompact Cars,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10656,9,0,BMW,325i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Minicompact Cars,1994,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10657,9,0,BMW,325i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Minicompact Cars,1994,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10658,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,33.0,0.0,Minicompact Cars,1994,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3040,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10659,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1994,0,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1066,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10660,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.7436,0.0,Minicompact Cars,1994,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10661,8,0,Mercedes-Benz,E320 Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1994,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10662,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Minicompact Cars,1994,-4250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10663,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,29.0,0.0,Minicompact Cars,1994,-5250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10664,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Minicompact Cars,1994,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10665,4,0,Porsche,911 Turbo,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,27.0,0.0,Minicompact Cars,1994,-9500,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,10666,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Minicompact Cars,1994,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,10667,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.0,0.0,Minicompact Cars,1994,-9250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,63,10668,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Minicompact Cars,1994,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,10669,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1994,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1811,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1067,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1985,-500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57002,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10670,8,0,Toyota,Paseo,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1994,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57002,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10671,8,0,Toyota,Paseo,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Minicompact Cars,1994,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,10672,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Minicompact Cars,1994,-3750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,10673,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Minicompact Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,10674,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,10675,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,30.0,0.0,Minicompact Cars,1994,-4750,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,DOHC-VTEC (FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,10676,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1994,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,10677,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1994,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,10678,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1994,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10679,0,14,Audi,90 quattro,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1994,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1812,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1068,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12036,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10680,9,10,BMW,318i/318is,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10681,9,10,BMW,318i/318is,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1994,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12036,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10682,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10683,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0256,0.0,Subcompact Cars,1994,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10684,9,10,BMW,325i/325is,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1994,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10685,9,10,BMW,325i/325is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1994,-3000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10686,0,10,BMW,850ci,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Subcompact Cars,1994,-9250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.6,Rear-Wheel Drive,12081,(GUZZLER) (FFS) (MPFI),-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10687,10,0,BMW,850csi,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,26.0,0.0,Subcompact Cars,1994,-11250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4420,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,10688,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4421,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,10689,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1812,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1069,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,82,10690,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4104,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,82,10691,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1994,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10692,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,42.0,0.0,Subcompact Cars,1994,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4410,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10693,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,46.0,0.0,Subcompact Cars,1994,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10694,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1994,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10695,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,10696,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,51.0,0.0,Subcompact Cars,1994,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,10697,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1994,5250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10698,10,0,Chrysler,LeBaron Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1994,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10699,12,12,Nissan,Sentra,Y,false,83,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,44.8718,0.0,Subcompact Cars,1994,1500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,107,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1070,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1985,-6250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,10700,12,12,Nissan,Sentra,Y,false,83,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.7179,0.0,Subcompact Cars,1994,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10701,12,12,Nissan,Sentra,N,false,83,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1994,0,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10702,12,12,Nissan,Sentra,N,false,83,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Subcompact Cars,1994,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,10703,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,10704,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1994,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10705,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1994,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,10706,11,11,Dodge,Colt,Y,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1994,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10707,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10708,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,10709,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1994,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1071,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,82,10710,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1994,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,10711,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1994,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,10712,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,10713,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1994,-4750,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10714,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1994,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,10715,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1994,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10716,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10717,11,11,Eagle,Summit,Y,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,10718,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1994,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,10719,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1994,500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2814,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1072,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,10720,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Subcompact Cars,1994,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,10721,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1994,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,10722,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1994,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,10723,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1994,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10724,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1994,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10725,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1994,-2250,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10726,4,0,Ferrari,Ferrari Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1994,-11250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10727,4,0,Ferrari,Ferrari Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.0,0.0,22.0,0.0,Subcompact Cars,1994,-11250,T,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,82,10728,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,43.0,0.0,Subcompact Cars,1994,1750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,82,10729,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Subcompact Cars,1994,4000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2810,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1073,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10730,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,37.0,0.0,Subcompact Cars,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3352,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10731,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,38.0,0.0,Subcompact Cars,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10732,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Subcompact Cars,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10733,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1994,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,79,10734,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,40.0,0.0,Subcompact Cars,1994,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3181,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,79,10735,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3260,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,79,10736,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1994,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3261,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,79,10737,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1994,-3000,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,10738,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1994,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,10739,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,63.0,0.0,Subcompact Cars,1994,5000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2816,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1074,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,10740,0,0,Geo,Metro XFI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.1553,0.0,74.7877,0.0,Subcompact Cars,1994,6250,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,77,10741,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1994,2250,,CLKUP,,,,,,, +8.657756000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,233.8684210526316,38,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26005,(8-VALVE) (FFS),-1,1450,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,10742,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,47.0,0.0,59.0,0.0,Subcompact Cars,1994,4750,,SIL,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26005,(8-VALVE) (FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,10743,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,58.0,0.0,Subcompact Cars,1994,4250,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,77,10744,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,51.0,0.0,Subcompact Cars,1994,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(VTEC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,77,10745,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(VTEC) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,77,10746,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1994,2250,,,,,,,,, +7.646952,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,50,0.0,0,0.0,0.0,0.0,0.0,13,77,10747,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,52.0,0.0,72.0,0.0,Subcompact Cars,1994,5500,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,13,77,10748,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,65.0,0.0,Subcompact Cars,1994,5000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26035,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10749,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1994,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2810,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1075,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1985,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26037,DOHC-VTEC (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10750,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1994,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26035,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10751,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26041,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10752,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1994,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26041,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10753,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Subcompact Cars,1994,-2250,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,86,10754,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,45.0,0.0,Subcompact Cars,1994,1750,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,10755,0,11,Hyundai,Excel,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1994,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10756,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1994,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10757,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1994,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,"(FFS,TRBO) (MPFI)",-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10758,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,40.0,0.0,Subcompact Cars,1994,1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10759,0,10,Infiniti,J30,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2840,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1076,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30590,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10760,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30592,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10761,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1994,-5750,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30580,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10762,11,0,Jaguar,XJS V12 Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Subcompact Cars,1994,-11250,T,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10763,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10764,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10765,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,DOHC (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10766,15,0,Mazda,MX-3,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1994,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,DOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,10767,15,0,Mazda,MX-3,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,48.0,0.0,Subcompact Cars,1994,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,V6DOHC (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10768,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Subcompact Cars,1994,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,V6DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10769,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1994,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1077,0,0,American Motors Corporation,Eagle 4DR Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10770,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1994,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56050,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10771,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1994,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10772,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1994,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10773,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1994,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10774,14,0,Mercedes-Benz,E320 Coupe,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1994,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10775,11,11,Mitsubishi,Mirage,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1994,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,10776,11,11,Mitsubishi,Mirage,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1994,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10777,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10778,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,10779,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1994,0,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1078,0,0,American Motors Corporation,Eagle 4DR Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,10780,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1994,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,10781,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Subcompact Cars,1994,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,10782,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1994,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,10783,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1994,-1000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10784,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1994,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10785,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,10786,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1994,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,10787,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1994,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,10788,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,10789,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1994,-4750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4961,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1079,0,0,Chevrolet,K10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1985,-9250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10790,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1994,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,10791,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1994,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10792,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10793,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1994,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,10794,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1994,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,10795,0,0,Plymouth,Laser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1994,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,10796,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1994,-3750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,10797,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Subcompact Cars,1994,-4750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,10798,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1994,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,10799,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1994,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,108,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4963,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1080,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1985,-7750,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10800,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1994,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,10801,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1994,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4420,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,10802,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4421,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,10803,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4103,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,10804,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4104,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,84,10805,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1994,-4750,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,10806,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,51.0,0.0,Subcompact Cars,1994,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,10807,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1994,5250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4405,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10808,12,13,Pontiac,Sunbird,Y,false,79,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1994,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4404,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10809,12,13,Pontiac,Sunbird,Y,false,79,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1994,1500,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1081,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-5500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10810,12,13,Pontiac,Sunbird,N,false,79,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1994,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10811,12,13,Pontiac,Sunbird,N,false,79,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1994,-1750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10812,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Subcompact Cars,1994,-15500,T,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,10813,9,0,Rolls-Royce,Corniche IV,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Subcompact Cars,1994,-15500,T,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47008,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,10814,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.9231,0.0,Subcompact Cars,1994,-4250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47009,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10815,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1994,-3000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47007,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10816,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1994,-1750,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47006,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10817,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1994,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47005,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10818,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1994,-3000,,SIL,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10819,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1994,1500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1082,0,0,Chevrolet,Suburban K10 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicle 4WD,1985,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10820,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0256,0.0,Subcompact Cars,1994,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,10821,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Subcompact Cars,1994,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4400,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10822,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Subcompact Cars,1994,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10823,0,11,Subaru,Impreza,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Subcompact Cars,1994,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10824,0,11,Subaru,Impreza,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,40.0,0.0,Subcompact Cars,1994,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10825,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10826,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Subcompact Cars,1994,0,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,10827,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1994,2750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,78,10828,0,0,Subaru,Justy AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1994,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,66040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10829,8,0,Subaru,SVX,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4971,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1083,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,17.9487,0.0,Special Purpose Vehicle 4WD,1985,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10830,8,0,Subaru,SVX AWD,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1994,-4750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54004,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,10831,0,12,Suzuki,Swift,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1994,1750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54004,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,10,79,10832,0,12,Suzuki,Swift,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.1111,0.0,56.0,0.0,Subcompact Cars,1994,4000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54005,(DOHC) (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,10833,0,0,Suzuki,Swift GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,44.8718,0.0,Subcompact Cars,1994,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,77,10834,11,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Subcompact Cars,1994,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,10835,11,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1994,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,77,10836,11,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1994,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,77,10837,11,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1994,0,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10838,11,11,Toyota,Tercel,Y,false,85,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1994,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10839,11,11,Toyota,Tercel,Y,false,85,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.1538,0.0,Subcompact Cars,1994,2500,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1084,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-6500,,,,,Diesel,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10840,11,11,Toyota,Tercel,Y,false,85,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1994,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10841,0,15,Volkswagen,Corrado SLC,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10842,0,15,Volkswagen,Corrado SLC,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26075,(PRE-CAT) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10843,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1994,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26071,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10844,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1994,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26071,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10845,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1994,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26075,(PRE-CAT) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10846,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.0,0.0,Compact Cars,1994,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10847,0,14,Acura,Vigor,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1994,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10848,0,14,Acura,Vigor,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1994,-3000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,(GUZZLER) (FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,10849,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Compact Cars,1994,-6750,T,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1085,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10850,0,15,Alfa Romeo,164,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Compact Cars,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10851,0,16,Audi,S4,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1994,-3250,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,64011,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10852,0,16,Audi,V8,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Compact Cars,1994,-8000,T,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10853,0,17,Audi,100,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1994,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10854,0,17,Audi,100,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1994,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10855,0,16,Audi,100 quattro,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10856,0,16,Audi,100 quattro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1994,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10857,0,14,Audi,90,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Compact Cars,1994,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10858,0,14,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1994,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10859,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1994,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1086,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1985,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10860,0,13,BMW,525i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1994,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10861,0,13,BMW,530i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8889,0.0,33.0,0.0,Compact Cars,1994,-4750,,2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10862,0,13,BMW,530i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Compact Cars,1994,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.1,Rear-Wheel Drive,12058,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10863,0,13,BMW,530i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,32.0,0.0,Compact Cars,1994,-5750,,2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.1,Rear-Wheel Drive,12058,(GUZZLER) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10864,0,13,BMW,530i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Compact Cars,1994,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10865,0,13,BMW,540i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.0,0.0,Compact Cars,1994,-5750,T,2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10866,13,13,Buick,Skylark,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0256,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10867,13,13,Buick,Skylark,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10868,13,13,Buick,Skylark,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10869,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.7436,0.0,Compact Cars,1994,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4920,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1087,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Special Purpose Vehicle 4WD,1985,-1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4410,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10870,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,44.0,0.0,Compact Cars,1994,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4433,(4-VALVE) (FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10871,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1994,-2250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10872,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.8974,0.0,Compact Cars,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10873,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10874,13,0,Chevrolet,Beretta,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1994,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10875,0,13,Chevrolet,Corsica,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.7436,0.0,Compact Cars,1994,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10876,0,13,Chevrolet,Corsica,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.8974,0.0,Compact Cars,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10877,0,13,Chevrolet,Corsica,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10878,14,14,Chrysler,LeBaron,N,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10879,14,14,Chrysler,LeBaron,Y,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4936,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1088,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10880,14,14,Chrysler,LeBaron,Y,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10881,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,37.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10882,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Compact Cars,1994,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,89,10883,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,89,10884,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Compact Cars,1994,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,10885,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,89,10886,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Compact Cars,1994,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,89,10887,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,89,10888,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1994,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,91,10889,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4934,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1089,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1985,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,91,10890,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1994,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,91,10891,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1994,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,91,10892,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Compact Cars,1994,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10893,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10894,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1994,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10895,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Compact Cars,1994,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10896,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10897,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1994,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10898,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1994,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10899,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Compact Cars,1994,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,109,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4932,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1090,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1985,-5250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10900,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1994,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33820,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10901,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,38.0,0.0,Compact Cars,1994,500,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33820,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10902,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.0,0.0,Compact Cars,1994,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10903,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,(VTEC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10904,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10905,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1994,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,(VTEC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10906,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1994,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10907,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1994,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10908,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1994,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10909,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1091,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1985,-13000,,Creeper,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,86,10910,0,0,Hyundai,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1994,1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10911,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10912,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1994,500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10913,0,12,Jaguar,XJ12,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Compact Cars,1994,-11250,T,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30556,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10914,0,12,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Compact Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10915,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1994,-3250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10916,13,13,Mercury,Topaz,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,10917,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1994,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10918,13,13,Mercury,Topaz,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Compact Cars,1994,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10919,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1092,0,0,Dodge,AW100/AW150 Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1985,-13000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10920,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10921,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1994,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10922,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1994,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,10923,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Compact Cars,1994,2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10924,0,13,Mazda,Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1994,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10925,0,13,Mazda,Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,10926,0,13,Mazda,Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1994,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,DOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10927,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Compact Cars,1994,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,2 VALVES (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,10928,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1994,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,4 VALVES (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,92,10929,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0256,0.0,Compact Cars,1994,1000,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2991,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1093,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1985,-15500,,Creeper,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,2 VALVES (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,10930,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1994,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,4 VALVES (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,10931,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,45.0,0.0,Compact Cars,1994,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,20011,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10932,0,12,Mercedes-Benz,C220,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Compact Cars,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,20012,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10933,0,12,Mercedes-Benz,C280,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1994,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10934,0,15,Mercedes-Benz,E320 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1994,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10935,0,15,Mercedes-Benz,E420,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1994,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10936,0,14,Mercedes-Benz,E500,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Compact Cars,1994,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,10937,14,0,Mercedes-Benz,S500 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Compact Cars,1994,-9500,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,10938,14,0,Mercedes-Benz,S600 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Compact Cars,1994,-11250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49061,(DOHC) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10939,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1994,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1094,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicle 4WD,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,(SOHC) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,10940,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1994,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19640,DOHC-4 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10941,0,12,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Compact Cars,1994,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10942,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1994,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10943,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1994,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19640,DOHC-4 (FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10944,0,12,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.1795,0.0,Compact Cars,1994,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10945,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0256,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4432,(4-VALVE) (FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10946,14,14,Oldsmobile,Achieva,Y,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10947,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4430,(2 VALVE) (FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10948,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,44.8718,0.0,Compact Cars,1994,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4433,(4-VALVE) (FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10949,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1994,-2250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1095,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10950,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,89,10951,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,89,10952,0,0,Plymouth,Sundance/Duster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Compact Cars,1994,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,10953,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,89,10954,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Compact Cars,1994,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,89,10955,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,89,10956,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1994,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10957,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0256,0.0,Compact Cars,1994,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4431,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10958,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4432,(4-VALVE) (FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10959,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3630,,-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1096,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Special Purpose Vehicle 4WD,1985,250,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4433,(4-VALVE) (FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10960,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1994,-2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4430,(2 VALVE) (FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10961,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,44.8718,0.0,Compact Cars,1994,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10962,0,13,Pontiac,Grand Am,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,44001,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,10963,12,0,Rolls-Royce,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,20.0,0.0,Compact Cars,1994,-15500,T,3MODE CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,10964,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1994,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10965,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0256,0.0,Compact Cars,1994,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4400,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10966,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1994,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,10967,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Compact Cars,1994,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10968,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10969,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Compact Cars,1994,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3651,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1097,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10970,0,14,Subaru,Legacy AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10971,0,14,Subaru,Legacy AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Compact Cars,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10972,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1994,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10973,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1994,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57003,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,10974,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.1795,0.0,Compact Cars,1994,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10975,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1994,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,10976,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Compact Cars,1994,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,10977,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Compact Cars,1994,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,10978,0,0,Volkswagen,Golf III,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,88,10979,0,0,Volkswagen,Golf III,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Compact Cars,1994,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3650,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1098,0,0,Ford,Bronco II 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10980,0,15,Volkswagen,Jetta III,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1994,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10981,0,15,Volkswagen,Jetta III,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Compact Cars,1994,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59005,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10982,0,15,Volkswagen,Jetta III GLX,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10983,0,14,Volkswagen,Passat,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10984,0,14,Volkswagen,Passat,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1994,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10985,0,13,BMW,740i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.0,0.0,Midsize Cars,1994,-5750,T,2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,10986,0,13,BMW,740il,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.0,0.0,Midsize Cars,1994,-5750,T,2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,10987,0,13,BMW,750il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1994,-9250,T,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,10988,0,16,Buick,Century,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.7436,0.0,Midsize Cars,1994,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10989,0,16,Buick,Century,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3712,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1099,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 4WD,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10990,16,16,Buick,Regal,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10991,16,16,Buick,Regal,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4100,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10992,15,0,Cadillac,Eldorado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4100,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10993,0,14,Cadillac,Seville,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1994,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,10994,16,16,Chevrolet,Lumina,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4503,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10995,16,16,Chevrolet,Lumina,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1994,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38034,(FFS) SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10996,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1994,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38033,(FFS) DOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,10997,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1994,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38033,(FFS) DOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,10998,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Midsize Cars,1994,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,10999,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Midsize Cars,1994,-500,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,2.9,Rear-Wheel Drive,22010,(GUZZLER),-1,5000,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11,0,0,Ferrari,308,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,20.0,0.0,Two Seaters,1985,-13000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,110,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3711,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1100,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11000,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.3333,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11001,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize Cars,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11002,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11003,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1994,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3330,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11004,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11005,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11006,0,18,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1994,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,3321,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11007,0,18,Ford,Taurus SHO,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1994,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11008,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3360,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11009,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1994,-4750,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3710,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1101,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,23.0,0.0,Special Purpose Vehicle 4WD,1985,-5250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11010,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3361,(FFS) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11011,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1994,-3750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11012,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1994,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26507,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11013,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Midsize Cars,1994,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26507,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11014,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Midsize Cars,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26508,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11015,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1994,-3250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26509,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11016,0,13,Hyundai,Sonata (Y-3),N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1994,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26509,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11017,0,13,Hyundai,Sonata (Y-3),N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Midsize Cars,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26510,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11018,0,13,Hyundai,Sonata (Y-3),N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1994,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11019,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Midsize Cars,1994,-5750,T,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3833,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1102,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1985,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38041,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11020,0,15,Infiniti,Q45 Full-Active Suspension,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Midsize Cars,1994,-6750,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11021,0,13,Lexus,GS 300,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11022,0,13,Lexus,LS 400,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1994,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11023,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11024,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3390,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11025,14,0,Lincoln,Mark VIII,Y,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1994,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11026,0,18,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11027,0,18,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11028,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Midsize Cars,1994,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56050,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11029,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Midsize Cars,1994,1500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3830,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1103,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicle 4WD,1985,-11000,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11030,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Midsize Cars,1994,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56051,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11031,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1994,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11032,0,12,Mazda,929,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1994,-3750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11033,0,16,Oldsmobile,Cutlass Ciera,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.7436,0.0,Midsize Cars,1994,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11034,0,16,Oldsmobile,Cutlass Ciera,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11035,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4503,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11036,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1994,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11037,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.3333,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11038,0,14,Plymouth,Acclaim,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Midsize Cars,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11039,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize Cars,1994,0,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3930,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1104,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1985,-13000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11040,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Midsize Cars,1994,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11041,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1994,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11042,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4503,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11043,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1994,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11044,0,12,Rolls-Royce,Brooklands and (LWB),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Midsize Cars,1994,-15500,T,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,44001,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11045,0,12,Rolls-Royce,Turbo R/Turbo Rl,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,20.0,0.0,Midsize Cars,1994,-15500,T,3MODE CLKUP,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11046,0,12,Rolls-Royce,Silver Spirit III/Spur III,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Midsize Cars,1994,-15500,T,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,92,11047,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1994,-2500,,2MODE CLKUP FW,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,11048,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Midsize Cars,1994,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47013,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,11049,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1994,-2500,,2MODE CLKUP FW,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4961,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1105,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1985,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47012,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,11050,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize Cars,1994,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11051,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1994,-1000,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11052,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Midsize Cars,1994,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11053,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1994,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60050,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11054,0,15,Volvo,850,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1994,-2500,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11055,0,15,Volvo,850,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1994,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11056,0,15,Volvo,850,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Midsize Cars,1994,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11057,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1994,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11058,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11059,0,17,Volvo,960,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1994,-3250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4963,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1106,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1985,-7750,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11060,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4500,(FFS) (MPFI) (S-CHARGE),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11061,0,20,Buick,Park Avenue,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1994,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11062,0,20,Buick,Park Avenue,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11063,0,21,Buick,Roadmaster,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4100,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11064,0,20,Cadillac,DeVille/Concourse,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1994,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11065,0,20,Cadillac,DeVille/Concourse,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,33.0,0.0,Large Cars,1994,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11066,0,21,Cadillac,Fleetwood,Y,false,0,125,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1994,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,4107,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11067,0,20,Chevrolet,Caprice/Impala,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11068,0,20,Chevrolet,Caprice/Impala,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1994,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2620,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11069,0,19,Chrysler,Concorde,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1994,-1000,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1107,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-5500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11070,0,19,Chrysler,Concorde,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11071,0,18,Chrysler,New Yorker/LHS,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2620,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11072,0,19,Dodge,Intrepid,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1994,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11073,0,19,Dodge,Intrepid,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2620,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11074,0,19,Eagle,Vision,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1994,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11075,0,19,Eagle,Vision,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3388,(POLICE) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11076,0,21,Ford,Crown Victoria Police,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.0,0.0,Large Cars,1994,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11077,0,21,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11078,0,19,Lincoln,Continental,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11079,0,21,Mercury,Grand Marquis,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1994,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1108,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicle 4WD,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11080,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11081,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1994,-4750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11082,0,16,Mercedes-Benz,S350D,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Large Cars,1994,-2000,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11083,0,16,Mercedes-Benz,S420,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Large Cars,1994,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11084,0,16,Mercedes-Benz,S500 Sedan,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Large Cars,1994,-9500,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11085,0,16,Mercedes-Benz,S600 Sedan,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Large Cars,1994,-11250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11086,0,18,Oldsmobile,Eighty-Eight,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4500,(FFS) (MPFI) (S-CHARGE),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11087,0,20,Oldsmobile,Ninety-Eight,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1994,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11088,0,20,Oldsmobile,Ninety-Eight,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1994,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11089,0,17,Pontiac,Bonneville,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1994,-1750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4971,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1109,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,17.9487,0.0,Special Purpose Vehicle 4WD,1985,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4501,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11090,0,17,Pontiac,Bonneville,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1994,-4750,,CLKUP,,S,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,11091,0,12,Rolls-Royce,Silver Spur III Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,18.0,0.0,Large Cars,1994,-15500,T,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,11092,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1994,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47002,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,11093,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1994,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47005,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,11094,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Large Cars,1994,-2250,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47003,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,11095,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Large Cars,1994,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47001,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,99,11096,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Large Cars,1994,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11097,0,34,Audi,100 quattro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11098,0,34,Audi,100 Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11099,0,31,BMW,525i Touring,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Small Station Wagons,1994,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,111,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1110,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1985,-6500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11100,0,31,BMW,530i Touring,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8889,0.0,33.0,0.0,Small Station Wagons,1994,-4750,,2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.1,Rear-Wheel Drive,12058,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11101,0,31,BMW,530i Touring,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,32.0,0.0,Small Station Wagons,1994,-5750,,2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4407,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11102,0,34,Chevrolet,Cavalier Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.7436,0.0,Small Station Wagons,1994,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11103,0,34,Chevrolet,Cavalier Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.8974,0.0,Small Station Wagons,1994,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11104,0,31,Ford,Escort Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1994,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11105,0,31,Ford,Escort Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Small Station Wagons,1994,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26032,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,26,94,11106,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Small Station Wagons,1994,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,26,94,11107,0,0,Honda,Accord Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Small Station Wagons,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26032,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,26,94,11108,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Small Station Wagons,1994,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,26,94,11109,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Small Station Wagons,1994,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1111,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11110,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1994,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11111,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Small Station Wagons,1994,2500,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11112,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.8718,0.0,Small Station Wagons,1994,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11113,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0256,0.0,Small Station Wagons,1994,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4400,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11114,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Small Station Wagons,1994,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11115,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Small Station Wagons,1994,2250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11116,0,25,Subaru,Impreza Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Small Station Wagons,1994,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11117,0,25,Subaru,Impreza Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,40.0,0.0,Small Station Wagons,1994,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11118,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Small Station Wagons,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11119,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Station Wagons,1994,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1112,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1985,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11120,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Small Station Wagons,1994,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11121,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Small Station Wagons,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11122,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Small Station Wagons,1994,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11123,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Small Station Wagons,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11124,0,36,Subaru,Legacy Wagon AWD Turbo,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1994,-4750,,CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11125,0,31,Toyota,Corolla Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Small Station Wagons,1994,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57004,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11126,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Small Station Wagons,1994,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4406,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11127,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,37.0,0.0,Midsize-Large Station Wagons,1994,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11128,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1994,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11129,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4920,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1113,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Special Purpose Vehicle 4WD,1985,-1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11130,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,11131,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,35,96,11132,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1994,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,11133,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,11134,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11135,0,38,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11136,0,38,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11137,0,38,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11138,0,38,Mercury,Sable Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1994,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11139,0,42,Mercedes-Benz,E320 Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1994,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4936,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1114,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11140,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11141,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1994,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11142,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11143,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11144,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11145,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,11146,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,11147,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4423,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11148,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1994,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49210,(SOHC) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11149,0,43,Mitsubishi,Diamante Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1994,-3750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4934,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1115,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1985,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11150,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,11151,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1994,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,11152,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,35,96,11153,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1994,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,11154,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,11155,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11156,0,40,Toyota,Camry Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1994,-1000,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11157,0,40,Toyota,Camry Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1994,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11158,0,34,Volkswagen,Passat Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11159,0,34,Volkswagen,Passat Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4932,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1116,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1985,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60050,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,97,11160,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize-Large Station Wagons,1994,-2500,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,34,97,11161,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1994,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,97,11162,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1994,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,11163,0,0,Volvo,940 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1994,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,11164,0,0,Volvo,940 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,11165,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11166,0,55,Buick,Roadmaster Wagon,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,4107,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11167,0,55,Chevrolet,Caprice/Impala Wagon,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11168,0,55,Chevrolet,Caprice/Impala Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1994,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4422,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11169,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Small Pickup Trucks,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29090,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1117,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4409,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11170,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks,1994,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11171,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11172,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11173,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1994,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11174,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1994,-3750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11175,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1994,-3000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11176,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Small Pickup Trucks,1994,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11177,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1994,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11178,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Small Pickup Trucks,1994,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4422,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11179,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Small Pickup Trucks,1994,-2500,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,1900,"(DSL,TRBO)",-1,2800,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1118,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.0,0.0,Special Purpose Vehicles,1985,-2000,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4409,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11180,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Small Pickup Trucks,1994,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11181,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1994,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11182,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11183,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1994,-3750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11184,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1994,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29081,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11185,0,0,Isuzu,Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Small Pickup Trucks,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11186,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1994,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11187,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.7692,0.0,Small Pickup Trucks,1994,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11188,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1994,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,49091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11189,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1994,-3250,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,1900,"(DSL,TRBO)",-1,2300,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1119,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,37.0,0.0,Special Purpose Vehicles,1985,500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,49091,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11190,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1994,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11191,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11192,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11193,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4808,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11194,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11195,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4817,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11196,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11197,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4819,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11198,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4818,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11199,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49071,"(CALIF) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,112,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1120,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4827,(MPFI) (TURBO),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11200,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,CLKUP,T,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11201,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1994,-5500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4824,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11202,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1994,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11203,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11204,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4808,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11205,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11206,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4817,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11207,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11208,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4819,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11209,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1121,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicles,1985,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4818,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11210,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11211,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4827,(MPFI) (TURBO),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11212,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,T,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4824,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11213,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1994,-3500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2821,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11214,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Standard Pickup Trucks,1994,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11215,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11216,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11217,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11218,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11219,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1122,0,0,Jeep,Cherokee/Wagoneer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11220,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.9231,0.0,Standard Pickup Trucks,1994,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11221,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11222,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11223,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11224,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11225,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1994,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11226,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11227,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1994,-9250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3785,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11228,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3782,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11229,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1123,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1985,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3823,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11230,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11231,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3863,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11232,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3784,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11233,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3781,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11234,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3822,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11235,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3821,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11236,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3860,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11237,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3862,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11238,0,0,Ford,Lightning F150 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1994,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11239,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Standard Pickup Trucks,1994,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1124,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11240,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Standard Pickup Trucks,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3645,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11241,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3642,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11242,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1994,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3722,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11243,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3720,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11244,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1994,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11245,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11246,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11247,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4808,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11248,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11249,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1125,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4817,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11250,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11251,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4819,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11252,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4818,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11253,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11254,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1994,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4827,(MPFI) (TURBO),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11255,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,CLKUP,T,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4824,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11256,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1994,-3500,,Creeper,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,0.0,Rear-Wheel Drive,4869,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11257,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,0.0,Rear-Wheel Drive,4864,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11258,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1994,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11259,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1126,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Special Purpose Vehicles,1985,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11260,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4808,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11261,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11262,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11263,0,0,GMC,Sierra 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4819,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11264,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4818,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11265,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4827,(MPFI) (TURBO),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11266,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,56081,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11267,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Standard Pickup Trucks,1994,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,56081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11268,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Standard Pickup Trucks,1994,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11269,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1127,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,26.0,0.0,Special Purpose Vehicles,1985,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11270,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1994,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11271,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11272,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1994,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57016,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11273,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1994,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11274,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11275,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11276,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Standard Pickup Trucks,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11277,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Standard Pickup Trucks,1994,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11278,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-3250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11279,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1128,0,0,Jeep,CJ7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4809,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11280,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4806,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11281,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4805,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11282,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11283,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11284,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11285,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11286,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11287,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1994,-11000,,SIL Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4828,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11288,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,,,Diesel,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11289,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1129,0,0,Jeep,CJ7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4825,(MPFI),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11290,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4809,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11291,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4806,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11292,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4805,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11293,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11294,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11295,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11296,0,0,Chevrolet,Pickup 2500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11297,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11298,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1994,-11000,,SIL Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4828,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11299,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,113,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1130,0,0,Jeep,CJ7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11300,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,T,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4825,(MPFI),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11301,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11302,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11303,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1994,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4814,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11304,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-5750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11305,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11306,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11307,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1994,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11308,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11309,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1131,0,0,Jeep,Grand Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Special Purpose Vehicles,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11310,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11311,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11312,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11313,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11314,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11315,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11316,0,0,Dodge,Ram 2500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11317,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1994,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11318,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11319,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1994,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1132,0,0,Jeep,Grand Wagoneer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1985,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3801,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11320,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3800,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11321,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11322,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11323,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11324,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11325,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0513,0.0,Standard Pickup Trucks,1994,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3661,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11326,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3660,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11327,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1994,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11328,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11329,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1133,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,22.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4809,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11330,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4806,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11331,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4805,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11332,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11333,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11334,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11335,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11336,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11337,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1994,-11000,,SIL Creeper,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11338,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,T,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4828,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11339,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,(CAL)(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1134,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.0,0.0,Special Purpose Vehicles,1985,-6250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4825,(MPFI),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11340,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5500,,Creeper,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,0.0,4-Wheel or All-Wheel Drive,4865,(MPFI),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11341,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-6500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4806,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11342,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11343,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11344,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11345,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1994,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11346,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1994,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11347,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1994,-11000,,SIL Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4828,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11348,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1994,-6500,,CLKUP,,,Diesel,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11349,0,0,GMC,Sierra 2500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1994,-7750,,CLKUP,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,(CAL)(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1135,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,24.359,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11350,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11351,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1994,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11352,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4814,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11353,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-5750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11354,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1994,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11355,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11356,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,56081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11357,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,30.0,0.0,Standard Pickup Trucks,1994,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11358,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Standard Pickup Trucks,1994,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11359,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1136,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11360,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56083,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11361,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1994,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11362,0,0,Toyota,T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1994,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11363,0,0,Toyota,T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57011,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11364,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1994,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11365,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1994,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11366,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1994,-9250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11367,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1994,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11368,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Vans,1994,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11369,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1994,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1137,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicles,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11370,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Vans,1994,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11371,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1994,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11372,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11373,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11374,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11375,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11376,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11377,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11378,0,0,Dodge,B150/B250 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11379,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1994,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1138,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,32.0,0.0,Special Purpose Vehicles,1985,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11380,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Vans,1994,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11381,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1994,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11382,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1994,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3644,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11383,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3643,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11384,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Vans,1994,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3721,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11385,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3745,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11386,0,0,Ford,Aerostar Van AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3786,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11387,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Vans,1994,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3783,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11388,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3824,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11389,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1139,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicles,1985,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3861,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11390,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3780,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,11391,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.9487,0.0,Vans,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3788,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11392,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3864,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11393,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1994,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11394,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11395,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11396,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11397,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11398,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11399,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49070,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,114,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1140,0,0,Subaru,Brat 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.8974,0.0,Special Purpose Vehicles,1985,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11400,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Vans,1994,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11401,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1994,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11402,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Vans,1994,-5750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11403,0,0,Chevrolet,Astro AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1994,-8000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11404,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1994,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11405,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11406,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11407,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11408,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11409,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1994,-6500,,CLKUP,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1141,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.8974,0.0,Special Purpose Vehicles,1985,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11410,0,0,Chevrolet,Sport Van G30 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11411,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11412,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1994,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11413,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11414,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1994,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11415,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1994,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11416,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Vans,1994,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3641,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11417,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1994,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3640,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11418,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1994,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3724,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11419,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1142,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicles,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11420,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3787,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11421,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3825,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11422,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3865,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11423,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1994,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11424,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4816,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11425,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Vans,1994,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11426,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4829,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11427,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1994,-6500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11428,0,0,GMC,Rally G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1994,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11429,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1994,-8000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1143,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11430,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1994,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4810,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11431,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57017,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11432,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Vans,1994,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11433,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1994,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57017,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11434,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Vans,1994,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11435,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Vans,1994,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11436,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1994,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4901,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11437,0,0,Chevrolet,Lumina Minivan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4900,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11438,0,0,Chevrolet,Lumina Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11439,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66097,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1144,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11440,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11441,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11442,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38094,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11443,0,0,Nissan,Quest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-3250,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11444,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11445,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11446,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Special Purpose Vehicles,1994,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11447,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11448,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11449,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Special Purpose Vehicles,1994,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1145,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicles,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11450,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11451,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11452,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11453,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11454,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11455,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1994,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11456,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3723,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11457,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3725,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11458,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicles,1994,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3647,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11459,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1146,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,32.0513,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3646,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11460,0,0,Mercury,Villager FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11461,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11462,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11463,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1994,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11464,0,0,Geo,Tracker Convertible 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4815,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11465,0,0,GMC,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1994,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11466,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11467,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11468,0,0,Isuzu,Amigo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29084,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11469,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1147,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicles,1985,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29086,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11470,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29086,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11471,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29085,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11472,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29087,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11473,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29087,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11474,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11475,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11476,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11477,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11478,0,0,Mazda,Navajo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11479,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.9231,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66097,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1148,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4901,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11480,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4900,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11481,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11482,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11483,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Special Purpose Vehicles,1994,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11484,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11485,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11486,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11487,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11488,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11489,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1994,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66097,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1149,0,0,Subaru,XT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11490,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11491,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicles,1994,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11492,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4901,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11493,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4900,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11494,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11495,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1994,-4250,,2MODE 2LKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11496,0,0,Chevrolet,Blazer 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1994,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11497,0,0,Chevrolet,Blazer 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1994,-9250,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11498,0,0,Chevrolet,Blazer 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-7750,,CLKUP,T,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11499,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.2308,0.0,Special Purpose Vehicles,1994,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,115,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,54090,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1150,0,0,Suzuki,SJ 410 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.5556,0.0,30.0,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11500,0,0,Chevrolet,S10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11501,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11502,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11503,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11504,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11505,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11506,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11507,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11508,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11509,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1994,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,54090,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1151,0,0,Suzuki,SJ 410V 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.5556,0.0,30.0,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11510,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11511,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11512,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Special Purpose Vehicles,1994,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11513,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0,0.0,Special Purpose Vehicles,1994,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2921,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11514,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,25.0,0.0,Special Purpose Vehicles,1994,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11515,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Special Purpose Vehicles,1994,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2971,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11516,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3843,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11517,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Special Purpose Vehicles,1994,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11518,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1994,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3881,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11519,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1994,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,57090,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,1152,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1985,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3743,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11520,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1994,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11521,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1994,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11522,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11523,0,0,Geo,Tracker Convertible 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11524,0,0,Geo,Tracker Convertible 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1994,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11525,0,0,Geo,Tracker Convertible 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11526,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11527,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11528,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1994,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11529,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57091,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1153,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,28.0,0.0,Special Purpose Vehicles,1985,-2500,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11530,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11531,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11532,0,0,GMC,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.2308,0.0,Special Purpose Vehicles,1994,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4821,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11533,0,0,GMC,Yukon K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1994,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4812,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11534,0,0,GMC,Yukon K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1994,-11000,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4826,(MPFI) (TURBO),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11535,0,0,GMC,Yukon K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11536,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11537,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11538,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29096,(DOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11539,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1154,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11540,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29096,(DOHC) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11541,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,22.0,0.0,Special Purpose Vehicles,1994,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11542,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11543,0,0,Honda,Passport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1994,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11544,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11545,0,0,Land Rover,Defender 90,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Special Purpose Vehicles,1994,-11250,,DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46082,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11546,0,0,Land Rover,Discovery,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1994,-11250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46082,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11547,0,0,Land Rover,Discovery,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1994,-13250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11548,0,0,Land Rover,Range Rover County,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1994,-13250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,46091,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11549,0,0,Land Rover,Range Rover County LWB,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1994,-11250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1155,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11550,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11551,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,49098,(V6-DOHC) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11552,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1994,-9500,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11553,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11554,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11555,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11556,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11557,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11558,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1994,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11559,0,0,Subaru,Loyale Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,28.2051,0.0,Special Purpose Vehicles,1994,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4830,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1156,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11560,0,0,Subaru,Loyale Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11561,0,0,Suzuki,Samurai Soft-top 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1994,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11562,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11563,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11564,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1994,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11565,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1994,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11566,0,0,Suzuki,Sidekick 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicles,1994,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(16VALVES) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11567,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Special Purpose Vehicles,1994,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11568,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Special Purpose Vehicles,1994,-6750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11569,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1994,-11000,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4930,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1157,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11570,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1994,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11571,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicles,1994,-9250,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11572,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1994,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11573,0,0,Chevrolet,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1994,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4408,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11574,0,0,Chevrolet,Postal Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.359,0.0,Special Purpose Vehicles,1994,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11575,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1994,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11576,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1994,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11577,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1994,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,11578,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1994,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11579,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1994,-4750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1158,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26070,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11580,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1995,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26070,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11581,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4104,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11582,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Two Seaters,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4113,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11583,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Two Seaters,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11584,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,34.0,0.0,Two Seaters,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11585,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11586,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1995,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11587,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Two Seaters,1995,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11588,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1995,-4750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,2911,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11589,0,0,Dodge,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,27.0,0.0,Two Seaters,1995,-9500,T,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1159,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1985,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,22015,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11590,0,0,Ferrari,Ferrari F355 Berlinetta/GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.0,0.0,19.0,0.0,Two Seaters,1995,-15500,T,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,12,4.7,Rear-Wheel Drive,22050,(GUZZLER) (FFS),-1,7550,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,11591,0,0,Ferrari,Ferrari F50,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,8.8889,0.0,14.0,0.0,Two Seaters,1995,-25750,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22030,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11592,0,0,Ferrari,Ferrari F512M,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,20.0,0.0,Two Seaters,1995,-15500,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,11593,0,0,Ferrari,Ferrari 348 TB/TS/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.0,0.0,Two Seaters,1995,-11250,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11594,0,0,Honda,Civic Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Two Seaters,1995,2250,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,11595,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,53.0,0.0,Two Seaters,1995,3750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11596,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Two Seaters,1995,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26015,DOHC (FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11597,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,38.0,0.0,Two Seaters,1995,-500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11598,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Two Seaters,1995,2250,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,11599,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1995,-18250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,116,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3506,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1160,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69102,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,11600,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1995,-18250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"ESPRIT (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11601,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1995,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,DOHC I-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11602,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Two Seaters,1995,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,DOHC I-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11603,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.1795,0.0,Two Seaters,1995,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11604,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1995,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11605,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Two Seaters,1995,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11606,0,0,Mercedes-Benz,SL320,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Two Seaters,1995,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11607,0,0,Mercedes-Benz,SL500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Two Seaters,1995,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11608,0,0,Mercedes-Benz,SL600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Two Seaters,1995,-11250,T,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,40701,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11609,0,0,Panoz Auto-Development,Panoz Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,42.3077,0.0,Two Seaters,1995,-500,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3643,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1161,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11610,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0513,0.0,Two Seaters,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11611,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Two Seaters,1995,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57006,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11612,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,35.0,0.0,Two Seaters,1995,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11613,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,38.0,0.0,Two Seaters,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11614,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Two Seaters,1995,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11615,7,0,Audi,Cabriolet,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Minicompact Cars,1995,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11616,7,0,Audi,Cabriolet,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Minicompact Cars,1995,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11617,9,0,BMW,318i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Minicompact Cars,1995,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11618,9,0,BMW,318i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Minicompact Cars,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11619,9,0,BMW,325i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Minicompact Cars,1995,-3000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3641,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1162,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0769,0.0,Special Purpose Vehicle 2WD,1985,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11620,9,0,BMW,325i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Minicompact Cars,1995,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11621,0,9,Nissan,240SX,Y,false,0,71,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Minicompact Cars,1995,-3000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11622,0,9,Nissan,240SX,Y,false,0,71,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Minicompact Cars,1995,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20045,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11623,8,0,Mercedes-Benz,E320 Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11624,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11625,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.0,0.0,Minicompact Cars,1995,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11626,4,0,Porsche,911 Carrera 4/2,Y,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,11627,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Minicompact Cars,1995,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,11628,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.0,0.0,Minicompact Cars,1995,-11250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,63,11629,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0513,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1163,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,11630,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11631,7,0,Toyota,Celica Convertible,N,false,69,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.1795,0.0,Minicompact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11632,7,0,Toyota,Celica Convertible,N,false,69,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Minicompact Cars,1995,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11633,8,0,Toyota,Paseo,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Minicompact Cars,1995,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11634,8,0,Toyota,Paseo,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Minicompact Cars,1995,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,11635,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Minicompact Cars,1995,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,11636,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Minicompact Cars,1995,-3750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,11637,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,11638,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.0,0.0,Minicompact Cars,1995,-4750,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,11639,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1995,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4830,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1164,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,11640,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1995,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,11641,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1995,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,12050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11642,9,0,BMW,M3,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,12050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11643,9,0,BMW,M3,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11644,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1995,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11645,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0256,0.0,Subcompact Cars,1995,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11646,9,10,BMW,325i/325is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11647,9,10,BMW,325i/325is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11648,10,0,BMW,840ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,30.7692,0.0,Subcompact Cars,1995,-5750,T,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11649,10,0,BMW,850ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,26.0,0.0,Subcompact Cars,1995,-8000,T,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4930,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1165,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11650,10,0,BMW,850csi,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.2222,0.0,25.0,0.0,Subcompact Cars,1995,-11250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4506,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11651,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4506,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11652,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4507,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11653,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4113,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11654,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11655,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1995,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11656,0,9,Chrysler,LeBaron Convertible,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Subcompact Cars,1995,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11657,12,12,Nissan,Sentra Classic,Y,false,83,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1995,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11658,12,12,Nissan,Sentra Classic,N,false,83,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.0,0.0,Subcompact Cars,1995,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11659,9,10,Nissan,Sentra/200SX,N,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1995,2250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57082,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1166,0,0,Toyota,Cab Chassis 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,11660,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,51.0,0.0,Subcompact Cars,1995,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11661,9,10,Nissan,Sentra/200SX,N,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1995,500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11662,9,10,Nissan,Sentra/200SX,N,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1995,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,11663,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,11664,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1995,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,82,11665,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1995,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,11666,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,11667,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1995,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,11668,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,11669,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1995,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57082,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1167,0,0,Toyota,Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1985,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11670,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1995,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11671,11,11,Eagle,Summit,Y,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1995,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11672,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1995,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11673,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1995,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,11674,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11675,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,11676,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5556,0.0,34.6154,0.0,Subcompact Cars,1995,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,11677,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1995,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,11678,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11679,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38049,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,23,50,1168,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Two Seaters,1985,-4250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11680,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1995,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,11681,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1995,-2250,,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,22025,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11682,7,0,Ferrari,Ferrari 456 GT,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.0,0.0,20.0,0.0,Subcompact Cars,1995,-15500,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,11683,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,44.0,0.0,Subcompact Cars,1995,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,16,81,11684,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,54.0,0.0,Subcompact Cars,1995,3750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11685,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,37.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11686,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,38.0,0.0,Subcompact Cars,1995,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11687,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11688,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1995,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3395,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11689,10,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,28.0,0.0,Subcompact Cars,1995,-6250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38047,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,23,50,1169,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1985,-4250,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3150,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,80,11690,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,40.0,0.0,Subcompact Cars,1995,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3151,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,80,11691,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,42.3077,0.0,Subcompact Cars,1995,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3201,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,80,11692,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1995,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3200,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,80,11693,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,89,11694,0,10,Geo,Metro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,63.0,0.0,Subcompact Cars,1995,5000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,89,11695,0,10,Geo,Metro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,44.0,0.0,Subcompact Cars,1995,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,89,11696,0,10,Geo,Metro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1995,4250,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,77,11697,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1995,2250,,CLKUP,,,,,,, +8.657756000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,233.8684210526316,38,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26003,EGR/2-VLV (FFS),-1,1450,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,11698,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,47.0,0.0,59.0,0.0,Subcompact Cars,1995,4750,,SIL,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26007,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,77,11699,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,51.0,0.0,Subcompact Cars,1995,3500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,117,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38046,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,50,1170,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1985,-3250,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26003,EGR/2-VLV (FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,11700,12,12,Honda,Civic,N,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,58.0,0.0,Subcompact Cars,1995,4250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,77,11701,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1995,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,77,11702,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1995,2250,,,,,,,,, +7.646952,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,EGR/4-VLV (FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,50,0.0,0,0.0,0.0,0.0,0.0,13,77,11703,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,52.0,0.0,72.0,0.0,Subcompact Cars,1995,5500,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,EGR/4-VLV (FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,13,77,11704,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,65.0,0.0,Subcompact Cars,1995,5000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26036,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11705,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26038,DOHC/VTEC (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11706,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1995,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26036,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11707,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26040,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11708,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1995,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26040,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11709,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Subcompact Cars,1995,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1171,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,41.0256,0.0,Two Seaters,1985,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11710,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,43.0,0.0,Subcompact Cars,1995,1000,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11711,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1995,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26503,"(FFS,TRBO) (MPFI)",-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11712,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1995,1500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11713,0,10,Infiniti,J30,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30583,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11714,11,0,Jaguar,XJS V12 Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Subcompact Cars,1995,-11250,T,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30581,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11715,11,0,Jaguar,XJS V12 Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.7949,0.0,Subcompact Cars,1995,-11250,T,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11716,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1995,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11717,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57002,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11718,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1995,-4750,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,DOHC (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11719,15,0,Mazda,MX-3,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,43.0,0.0,Subcompact Cars,1995,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26006,(FFS) CA model,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1172,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,45.0,0.0,Two Seaters,1985,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,DOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11720,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,48.0,0.0,Subcompact Cars,1995,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56042,DOHC V-6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11721,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56042,DOHC V-6 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11722,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11723,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1995,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11724,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1995,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,V-6 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11725,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1995,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,V-6 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11726,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20045,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11727,14,0,Mercedes-Benz,E320 Coupe,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1995,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11728,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,11729,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +8.02051,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26015,CA model,-1,1350,0,Regular,Regular Gasoline,-1,-1,46,0.0,0,0.0,0.0,0.0,0.0,0,0,1173,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,66.0,0.0,Two Seaters,1985,5250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,11730,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5556,0.0,34.6154,0.0,Subcompact Cars,1995,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,11731,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1995,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11732,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,11733,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,11734,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1995,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,11735,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1995,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11736,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1995,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11737,11,11,Mitsubishi,Mirage,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1995,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11738,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1995,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11739,11,11,Mitsubishi,Mirage,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1995,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27915,(GUZZLER) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1174,7,0,Mercedes-Benz,500SL,N,false,46,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Two Seaters,1985,-7750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,11740,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1995,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,11741,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,11742,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1995,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49053,DOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,4,84,11743,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1995,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49054,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,4,84,11744,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1995,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4506,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,11745,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4506,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,11746,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4507,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,11747,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4108,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,11748,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4118,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,11749,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,Rear-Wheel Drive,56015,(ROTARY) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1175,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4120,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,11750,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,84,11751,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1995,-4750,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11752,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Subcompact Cars,1995,-15500,T,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11753,9,0,Rolls-Royce,Continental (turbo),N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,19.0,0.0,Subcompact Cars,1995,-15500,T,2MODE,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11754,9,0,Rolls-Royce,Corniche IV,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Subcompact Cars,1995,-15500,T,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11755,9,0,Rolls-Royce,Corniche S,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,19.0,0.0,Subcompact Cars,1995,-15500,T,2MODE,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11756,13,0,Saab,900 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1995,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47001,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11757,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1995,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47001,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11758,13,0,Saab,900 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1995,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47002,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11759,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,34.0,0.0,Subcompact Cars,1995,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,Rear-Wheel Drive,56015,(ROTARY) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1176,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Two Seaters,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47002,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11760,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Subcompact Cars,1995,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11761,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Subcompact Cars,1995,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11762,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.1538,0.0,Subcompact Cars,1995,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,11763,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.0,0.0,Subcompact Cars,1995,2250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11764,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.8718,0.0,Subcompact Cars,1995,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11765,0,11,Subaru,Impreza,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Subcompact Cars,1995,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11766,0,11,Subaru,Impreza,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1995,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11767,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1995,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11768,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11769,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1995,-500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36006,(GUZZLER) (TURBO) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1177,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Minicompact Cars,1985,-7750,T,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,66030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11770,0,8,Subaru,SVX,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11771,0,8,Subaru,SVX AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1995,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,47401,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11772,12,0,Saleen,Mustang S351,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.5556,0.0,33.3333,0.0,Subcompact Cars,1995,-5250,T,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,8,89,11773,0,10,Suzuki,Swift,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1995,3500,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,89,11774,0,10,Suzuki,Swift,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,63.0,0.0,Subcompact Cars,1995,5000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,11775,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1995,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,11776,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1995,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,77,11777,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1995,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,11778,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1995,-500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11779,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,45.0,0.0,Subcompact Cars,1995,2500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7005,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,1178,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11780,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,50.0,0.0,Subcompact Cars,1995,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11781,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,50.0,0.0,Subcompact Cars,1995,3000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57016,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11782,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,50.0,0.0,Subcompact Cars,1995,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11783,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11784,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.7436,0.0,Subcompact Cars,1995,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26076,PRE-CAT (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,11785,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1995,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26073,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11786,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1995,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26073,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11787,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1995,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26076,PRE-CAT (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11788,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.0,0.0,Compact Cars,1995,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11789,0,14,Acura,2.5TL,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1995,-3000,,CLKUP,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7005,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,1179,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,(GUZZLER) (FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11790,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Compact Cars,1995,-6750,T,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11791,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Compact Cars,1995,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11792,0,17,Audi,A6,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11793,0,17,Audi,A6,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1995,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11794,0,16,Audi,A6 quattro,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11795,0,16,Audi,A6 quattro,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Compact Cars,1995,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11796,0,16,Audi,S6,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1995,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11797,0,14,Audi,90,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Compact Cars,1995,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11798,0,14,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Compact Cars,1995,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11799,0,14,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.3333,0.0,Compact Cars,1995,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,83,118,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,44.0,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7005,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1180,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,13.0,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11800,0,14,Audi,90 quattro,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1995,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,87,11801,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1995,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,11802,0,0,BMW,318ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0256,0.0,Compact Cars,1995,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11803,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1995,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11804,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1995,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11805,0,13,BMW,530i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8889,0.0,32.0513,0.0,Compact Cars,1995,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11806,0,13,BMW,530i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Compact Cars,1995,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11807,0,13,BMW,540i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1995,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11808,0,13,BMW,540i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,30.0,0.0,Compact Cars,1995,-6750,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4114,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11809,0,13,Buick,Skylark,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64028,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1181,0,10,Audi,4000s quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1985,-3250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11810,0,13,Buick,Skylark,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,40.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11811,0,13,Buick,Skylark,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Compact Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11812,0,13,Buick,Skylark,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Compact Cars,1995,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11813,13,0,Chevrolet,Beretta,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,46.0,0.0,Compact Cars,1995,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11814,13,0,Chevrolet,Beretta,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11815,13,0,Chevrolet,Beretta,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11816,13,14,Chevrolet,Cavalier,Y,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1995,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11817,13,14,Chevrolet,Cavalier,N,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1995,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11818,13,14,Chevrolet,Cavalier,Y,false,88,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,40.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11819,0,13,Chevrolet,Corsica,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4155,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1182,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11820,0,13,Chevrolet,Corsica,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19627,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11821,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11822,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Compact Cars,1995,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19627,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11823,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Compact Cars,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11824,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0256,0.0,Compact Cars,1995,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11825,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11826,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11827,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1995,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19627,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11828,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11829,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Compact Cars,1995,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4155,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1183,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.3333,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19627,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11830,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Compact Cars,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11831,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0256,0.0,Compact Cars,1995,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11832,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11833,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Compact Cars,1995,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11834,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.7179,0.0,Compact Cars,1995,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11835,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0,0.0,Compact Cars,1995,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3260,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11836,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3261,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11837,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,91,11838,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,91,11839,0,12,Ford,Escort,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.7436,0.0,Compact Cars,1995,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4190,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,1184,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,91,11840,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Compact Cars,1995,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,91,11841,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Compact Cars,1995,2500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11842,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1995,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11843,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1995,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11844,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Compact Cars,1995,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11845,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1995,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33821,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11846,0,11,Kia,Sephia,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,43.0,0.0,Compact Cars,1995,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33820,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11847,0,11,Kia,Sephia,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Compact Cars,1995,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33821,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11848,0,11,Kia,Sephia,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Compact Cars,1995,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33830,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11849,0,11,Kia,Sephia,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1995,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1185,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33830,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11850,0,11,Kia,Sephia,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Compact Cars,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,VTEC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11851,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1995,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11852,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,VTEC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11853,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1995,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11854,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1995,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11855,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1995,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,88,11856,0,11,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,46.0,0.0,Compact Cars,1995,1750,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,11857,0,11,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.7179,0.0,Compact Cars,1995,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11858,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.1795,0.0,Compact Cars,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26508,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11859,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Compact Cars,1995,-500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1186,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1985,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11860,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Compact Cars,1995,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26508,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11861,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11862,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11863,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Compact Cars,1995,-500,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11864,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Compact Cars,1995,-500,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11865,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1995,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11866,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1995,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11867,0,12,Jaguar,XJ12,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Compact Cars,1995,-13250,T,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30558,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11868,0,12,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1995,-4750,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11869,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1995,-1000,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4127,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1187,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11870,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0,0.0,Compact Cars,1995,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3260,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11871,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3261,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11872,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11873,0,12,Mercury,Tracer,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11874,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.7436,0.0,Compact Cars,1995,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11875,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Compact Cars,1995,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11876,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Compact Cars,1995,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,56051,V-6 (FFS) (S-CHARGE),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11877,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1995,-2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,V-6 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11878,0,13,Mazda,Millenia,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Compact Cars,1995,-3000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11879,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1995,1500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1188,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,11880,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Compact Cars,1995,2750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56041,SOHC I-4 (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11881,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1995,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,DOHC I-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11882,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56041,SOHC I-4 (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11883,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1995,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,DOHC I-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11884,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1995,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56036,SOHC (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,11885,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,42.0,0.0,Compact Cars,1995,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56036,SOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,11886,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1995,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,20020,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11887,0,12,Mercedes-Benz,C220,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,20030,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11888,0,12,Mercedes-Benz,C280,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1995,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,20036,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11889,0,12,Mercedes-Benz,C36,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1189,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20045,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11890,0,15,Mercedes-Benz,E320 Sedan,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1995,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11891,0,15,Mercedes-Benz,E420,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1995,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11892,14,0,Mercedes-Benz,S500 Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Compact Cars,1995,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,11893,14,0,Mercedes-Benz,S600 Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Compact Cars,1995,-11250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,SOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11894,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1995,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49061,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11895,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Compact Cars,1995,-3750,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11896,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1995,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11897,0,12,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1995,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19640,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11898,0,12,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Compact Cars,1995,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11899,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1995,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,119,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1985,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4105,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,1190,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4114,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11900,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11901,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,40.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11902,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Compact Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11903,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Compact Cars,1995,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,11904,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Compact Cars,1995,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,11905,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.7179,0.0,Compact Cars,1995,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11906,13,13,Pontiac,Grand Am,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1995,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4114,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11907,13,13,Pontiac,Grand Am,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11908,13,13,Pontiac,Grand Am,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,40.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11909,13,13,Pontiac,Grand Am,Y,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,37.0,0.0,Compact Cars,1995,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4106,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,1191,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,41.0256,0.0,Subcompact Cars,1985,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11910,13,13,Pontiac,Grand Am,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Compact Cars,1995,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11911,12,13,Pontiac,Sunfire,N,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,46.0,0.0,Compact Cars,1995,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11912,12,13,Pontiac,Sunfire,N,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1995,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11913,12,13,Pontiac,Sunfire,N,false,88,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,40.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11914,12,0,Rolls-Royce,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,20.0,0.0,Compact Cars,1995,-15500,T,3MODE,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI) DOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11915,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Compact Cars,1995,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI) SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,11916,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.1538,0.0,Compact Cars,1995,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS) (MPFI) SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,11917,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.0,0.0,Compact Cars,1995,2250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI) DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,11918,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.8718,0.0,Compact Cars,1995,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11919,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Compact Cars,1995,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4107,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,1192,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11920,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Compact Cars,1995,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11921,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11922,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1995,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11923,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1995,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11924,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1995,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11925,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Compact Cars,1995,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11926,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1995,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,11927,0,0,Volkswagen,Golf III,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,88,11928,0,0,Volkswagen,Golf III,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1995,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,87,11929,0,0,Volkswagen,GTI VR6,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1995,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,83,1193,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11930,0,15,Volkswagen,Jetta III,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1995,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,11931,0,15,Volkswagen,Jetta III,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1995,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11932,0,15,Volkswagen,Jetta III GLX,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Compact Cars,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11933,0,15,Volkswagen,Jetta III GLX,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11934,0,16,Volvo,960,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Compact Cars,1995,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11935,0,13,BMW,740i,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,30.7692,0.0,Midsize Cars,1995,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11936,0,13,BMW,740il,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,30.7692,0.0,Midsize Cars,1995,-5750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,11937,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,25.0,0.0,Midsize Cars,1995,-8000,T,2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11938,0,16,Buick,Century,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11939,0,16,Buick,Century,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,1194,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11940,16,16,Buick,Regal,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11941,16,16,Buick,Regal,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4505,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11942,16,16,Buick,Regal,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11943,17,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4102,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11944,15,0,Cadillac,Eldorado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1995,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11945,0,16,Chevrolet,Lumina/Monte Carlo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11946,0,16,Chevrolet,Lumina/Monte Carlo,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11947,0,16,Chevrolet,Lumina/Monte Carlo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1995,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11948,0,14,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2511,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11949,0,14,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2249,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,83,1195,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11950,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1995,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,11951,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize Cars,1995,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11952,0,14,Dodge,Spirit,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.8974,0.0,Midsize Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11953,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11954,0,14,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2511,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11955,0,14,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11956,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11957,0,18,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1995,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,3321,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11958,0,18,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1995,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11959,0,18,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,83,1196,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.3077,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3330,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11960,0,18,Ford,Taurus FFV,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3361,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11961,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1995,-4750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3362,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11962,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3360,(FFS) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11963,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1995,-3750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11964,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1995,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11965,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1995,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11966,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Midsize Cars,1995,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,11967,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Midsize Cars,1995,-5750,T,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38041,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,11968,0,15,Infiniti,Q45 Full-Active Suspension,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Midsize Cars,1995,-6750,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11969,0,13,Lexus,GS 300,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1995,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1197,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57017,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11970,0,14,Lexus,LS 400,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1995,-3750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3362,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11971,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11972,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3390,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,11973,14,0,Lincoln,Mark VIII,Y,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1995,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,11974,0,18,Mercury,Sable,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11975,0,18,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,11976,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Midsize Cars,1995,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,11977,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Midsize Cars,1995,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,V-6 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11978,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Midsize Cars,1995,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,V-6 (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11979,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1995,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1198,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56070,SOHC V-6 (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11980,0,12,Mazda,929,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1995,-3750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,4100,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,11981,0,16,Oldsmobile,Aurora,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1995,-5750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11982,0,16,Oldsmobile,Cutlass Ciera,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11983,0,16,Oldsmobile,Cutlass Ciera,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11984,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11985,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11986,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1995,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11987,0,14,Plymouth,Acclaim,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.8974,0.0,Midsize Cars,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11988,0,14,Plymouth,Acclaim,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1995,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11989,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1199,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,11990,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,11991,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1995,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11992,0,12,Rolls-Royce,Brooklands and (LWB),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Midsize Cars,1995,-15500,T,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11993,0,12,Rolls-Royce,Flying Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1995,-15500,T,2MODE,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,11994,0,12,Rolls-Royce,Spirit III/Spur III/Dawn,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,19.0,0.0,Midsize Cars,1995,-15500,T,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,11995,0,12,Rolls-Royce,Turbo R/Rl Bklds Turbo/LWB,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,20.0,0.0,Midsize Cars,1995,-15500,T,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,11996,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Midsize Cars,1995,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47001,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,11997,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1995,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47001,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,11998,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47002,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,92,11999,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,34.0,0.0,Midsize Cars,1995,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Two Seaters,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,120,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,84,1200,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47002,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,12000,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Midsize Cars,1995,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12001,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Midsize Cars,1995,-1000,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12002,15,15,Toyota,Camry,N,false,94,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Midsize Cars,1995,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12003,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1995,-1000,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12004,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1995,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12005,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.1795,0.0,Midsize Cars,1995,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12006,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize Cars,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12007,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize Cars,1995,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60050,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12008,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1995,-2500,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12009,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1995,-1000,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,84,1201,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12010,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1995,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12011,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1995,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4505,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12012,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12013,0,20,Buick,Park Avenue,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12014,0,21,Buick,Roadmaster,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4102,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12015,0,20,Cadillac,DeVille/Concourse,N,false,0,117,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1995,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4103,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12016,0,20,Cadillac,DeVille/Concourse,Y,false,0,117,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,33.0,0.0,Large Cars,1995,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12017,0,21,Cadillac,Fleetwood,Y,false,0,125,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4102,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12018,0,14,Cadillac,Seville,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1995,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,4105,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12019,0,20,Chevrolet,Caprice/Impala,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,13,84,1202,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,48.0,0.0,Subcompact Cars,1985,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12020,0,20,Chevrolet,Caprice/Impala,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2731,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12021,0,19,Chrysler,Concorde,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12022,0,19,Chrysler,Concorde,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2770,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12023,0,19,Chrysler,Concorde,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2770,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12024,0,18,Chrysler,New Yorker/LHS,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12025,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12026,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12027,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12028,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,18502,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12029,0,19,Dabryan Coach Builders Inc,WB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,1203,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,50.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12030,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,18502,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12031,0,19,Dabryan Coach Builders Inc,WB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,18501,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12032,0,22,Dabryan Coach Builders Inc,WB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Large Cars,1995,-4250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,18502,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12033,0,19,Dabryan Coach Builders Inc,WB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12034,0,19,Dodge,Intrepid,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2731,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12035,0,19,Dodge,Intrepid,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2770,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12036,0,19,Dodge,Intrepid,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12037,0,19,Eagle,Vision,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2731,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12038,0,19,Eagle,Vision,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2770,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12039,0,19,Eagle,Vision,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1995,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,82,1204,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12040,0,13,Federal Coach,Eagle,N,false,0,149,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12041,0,20,Federal Coach,Formal,N,false,0,144,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12042,0,20,Federal Coach,Six Door,N,false,0,154,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12043,0,13,Federal Coach,Windsor,N,false,0,147,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12044,0,10,Federal Coach,24E,N,false,0,136,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22702,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12045,0,1,Federal Coach,85J,N,false,0,176,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Large Cars,1995,-6250,T,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12046,0,17,Federal Coach,Lincoln Eagle/Windsor,N,false,0,157,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1995,-5250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12047,0,17,Federal Coach,Lincoln Eaton,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Large Cars,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12048,0,17,Federal Coach,Lincoln 100J,N,false,0,192,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1995,-5250,T,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12049,0,22,Federal Coach,Lincoln 24E,N,false,0,156,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1995,-5250,T,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,82,1205,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12050,0,17,Federal Coach,Lincoln 85J,N,false,0,187,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1995,-5250,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12051,0,21,Ford,Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3387,(POLICE) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12052,0,21,Ford,Crown Victoria Police,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Large Cars,1995,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,3370,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12053,0,18,Lincoln,Continental,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12054,0,20,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12055,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12056,0,16,Mercedes-Benz,S320,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12057,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1995,-4750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12058,0,16,Mercedes-Benz,S350,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Large Cars,1995,-2000,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12059,0,16,Mercedes-Benz,S420,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Large Cars,1995,-6750,T,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,82,1206,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,50.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12060,0,16,Mercedes-Benz,S500 Sedan,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Large Cars,1995,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12061,0,16,Mercedes-Benz,S600 Sedan,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Large Cars,1995,-11250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4505,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12062,0,18,Oldsmobile,Eighty-Eight,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12063,0,20,Oldsmobile,Ninety-Eight,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4505,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12064,0,18,Pontiac,Bonneville,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4501,(FFS) (MPFI) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12065,0,18,Pontiac,Bonneville,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1995,-4750,,CLKUP,,S,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12066,0,12,Rolls-Royce,Silver Spur III Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,19.2308,0.0,Large Cars,1995,-15500,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47005,"(FFS,TRBO) Low Boost",-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,99,12067,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1995,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,99,12068,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1995,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47007,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,12069,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Large Cars,1995,-2250,,SIL,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,82,1207,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,48.0,0.0,Subcompact Cars,1985,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47005,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,12070,0,18,Saab,9000,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Large Cars,1995,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,12071,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Large Cars,1995,-1000,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,47006,(FFS) (VARIABLE),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,12072,0,18,Saab,9000,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1995,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12073,0,15,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1995,-1000,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12074,0,34,Audi,A6 quattro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Small Station Wagons,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12075,0,34,Audi,A6 Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Small Station Wagons,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12076,0,33,Audi,S6 Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Station Wagons,1995,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12077,0,31,BMW,525i Touring,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Small Station Wagons,1995,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.0,Rear-Wheel Drive,12056,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12078,0,31,BMW,530i Touring,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8889,0.0,32.0513,0.0,Small Station Wagons,1995,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12079,0,31,Ford,Escort Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Small Station Wagons,1995,1500,,CLKUP,,,,,,, +9.554625000000001,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,38015,CA model,-1,1500,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,16,82,1208,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,51.0,0.0,63.0,0.0,Subcompact Cars,1985,4500,,SIL,,,Diesel,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,12080,0,31,Ford,Escort Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Small Station Wagons,1995,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,26,94,12081,0,0,Honda,Accord Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Small Station Wagons,1995,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,VTEC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,26,94,12082,0,0,Honda,Accord Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Small Station Wagons,1995,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,26,94,12083,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Small Station Wagons,1995,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,VTEC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,26,94,12084,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Small Station Wagons,1995,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12085,0,31,Mercury,Tracer Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Small Station Wagons,1995,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,12086,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Small Station Wagons,1995,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4401,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12087,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,47.0,0.0,Small Station Wagons,1995,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12088,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Small Station Wagons,1995,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4403,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,12089,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.0,0.0,Small Station Wagons,1995,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,38025,"(FFS,TRBO) CA model",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,1209,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4402,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12090,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.8718,0.0,Small Station Wagons,1995,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12091,0,25,Subaru,Impreza Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Small Station Wagons,1995,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12092,0,25,Subaru,Impreza Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1995,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12093,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Small Station Wagons,1995,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12094,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Small Station Wagons,1995,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12095,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Small Station Wagons,1995,-500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12096,0,31,Toyota,Corolla Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Small Station Wagons,1995,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57005,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12097,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Small Station Wagons,1995,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,92,12098,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Small Station Wagons,1995,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12099,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,121,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38036,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,76,1210,9,0,Nissan,200SX,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12100,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,12101,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.1795,0.0,Midsize-Large Station Wagons,1995,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,12102,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1995,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,35,96,12103,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1995,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,12104,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,12105,0,0,Eagle,Summit Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1995,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,12106,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1995,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12107,0,38,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3363,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12108,0,38,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1995,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,46,107,12109,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1995,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38046,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,73,1211,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12110,0,38,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1995,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3363,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12111,0,38,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20045,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12112,0,42,Mercedes-Benz,E320 Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1995,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12113,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1995,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12114,0,44,Mitsubishi,Expo,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1995,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12115,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1995,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12116,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1995,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,12117,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1995,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,12118,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1995,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4504,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12119,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,77,1212,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4500,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12120,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12121,0,36,Subaru,Legacy Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Midsize-Large Station Wagons,1995,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12122,0,36,Subaru,Legacy Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Midsize-Large Station Wagons,1995,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12123,0,36,Subaru,Legacy Wagon AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1995,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12124,0,36,Subaru,Legacy Wagon AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1995,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12125,0,40,Toyota,Camry Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1995,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12126,0,40,Toyota,Camry Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1995,-1000,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12127,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12128,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1995,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60050,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,99,12129,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1995,-2500,,2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,77,1213,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1985,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,12130,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,12131,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,37.0,0.0,Midsize-Large Station Wagons,1995,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,12132,0,0,Volvo,940 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1995,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12133,0,55,Buick,Roadmaster Wagon,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12134,0,55,Chevrolet,Caprice/Impala Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1995,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4111,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12135,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Pickup Trucks,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12136,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks,1995,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4806,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12137,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12138,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1995,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12139,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1995,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2151,(FFS) CA model,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1214,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.1795,0.0,Subcompact Cars,1985,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12140,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1995,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12141,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Small Pickup Trucks,1995,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12142,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Small Pickup Trucks,1995,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12143,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Small Pickup Trucks,1995,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4111,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12144,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Pickup Trucks,1995,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12145,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks,1995,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12146,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1995,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4806,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12147,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12148,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1995,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12149,0,0,Isuzu,Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks,1995,-1000,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,1215,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,41.0256,0.0,Subcompact Cars,1985,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12150,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1995,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12151,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1995,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12152,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Small Pickup Trucks,1995,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57018,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12153,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0513,0.0,Small Pickup Trucks,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57018,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12154,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Small Pickup Trucks,1995,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12155,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Small Pickup Trucks,1995,-3250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57020,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12156,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1995,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12157,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12158,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12159,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,Creeper,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,11,81,1216,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,51.2821,0.0,Subcompact Cars,1985,3750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12160,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12161,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4810,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12162,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4824,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12163,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12164,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,T,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12165,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4817,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12166,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12167,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12168,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12169,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,83,1217,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12170,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12171,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4810,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12172,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4824,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12173,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL Creeper,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12174,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,T,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12175,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4817,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12176,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-3500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2822,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12177,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Standard Pickup Trucks,1995,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12178,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1995,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12179,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1995,-4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,1218,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12180,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12181,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1995,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12182,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12183,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12184,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12185,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12186,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12187,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1995,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12188,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12189,0,0,Dodge,Ram 2500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2249,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,83,1219,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,43.0,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12190,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3804,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12191,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1995,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3800,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12192,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3843,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12193,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3925,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12194,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12195,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12196,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12197,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3844,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12198,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3923,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12199,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,122,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1220,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12200,0,0,Ford,Lightning F150 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12201,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1995,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3602,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12202,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Standard Pickup Trucks,1995,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3624,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12203,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3626,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12204,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1995,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3745,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12205,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3742,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12206,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1995,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12207,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12208,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12209,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1221,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12210,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12211,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4810,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12212,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4824,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12213,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12214,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12215,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,T,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4817,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12216,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12217,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12218,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12219,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1222,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12220,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12221,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4810,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12222,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4824,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12223,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12224,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12225,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1995,-6500,,CLKUP,T,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4817,(MPFI),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12226,0,0,GMC,Sierra 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-3500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12227,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1995,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3603,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12228,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Standard Pickup Trucks,1995,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3625,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12229,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1995,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3350,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,1223,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3627,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12230,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1995,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3746,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12231,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3743,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12232,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1995,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57019,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12233,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57019,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12234,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1995,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57020,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12235,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1995,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12236,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12237,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Standard Pickup Trucks,1995,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12238,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Standard Pickup Trucks,1995,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12239,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1995,-3250,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3353,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,1224,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12240,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12241,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12242,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12243,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4819,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12244,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12245,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12246,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12247,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4825,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12248,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,SIL Creeper,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4816,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12249,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1995,-6500,,CLKUP,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3372,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1225,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Subcompact Cars,1985,-2500,,,T,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12250,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,T,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4815,(MPFI),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12251,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4832,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12252,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4833,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12253,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12254,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4819,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12255,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12256,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12257,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12258,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1995,-11000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4825,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12259,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,84,1226,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4816,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12260,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1995,-6500,,CLKUP,,,Diesel,,,, +27.288009000000002,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,727.1428571428571,14,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,4250,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12261,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,T,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4815,(MPFI),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12262,0,0,Chevrolet,Pickup 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12263,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4805,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12264,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12265,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,5.2,4-Wheel or All-Wheel Drive,4902,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12266,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12267,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1995,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12268,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12269,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26035,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,81,1227,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12270,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12271,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12272,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12273,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12274,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12275,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12276,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12277,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12278,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,19.2308,0.0,Standard Pickup Trucks,1995,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12279,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Standard Pickup Trucks,1995,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26075,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,81,1228,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12280,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1995,-11000,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12281,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1995,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12282,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3863,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12283,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3845,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12284,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12285,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3940,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12286,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12287,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Standard Pickup Trucks,1995,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3628,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12288,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3640,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12289,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26035,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,81,1229,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3761,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12290,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3764,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12291,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12292,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12293,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12294,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4819,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12295,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12296,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12297,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12298,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4825,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12299,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1995,-9250,,SIL Creeper,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,86,123,0,14,Ford,Laser,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.7436,0.0,Subcompact Cars,1985,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26075,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,81,1230,0,12,Honda,Accord,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12300,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,T,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4816,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12301,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1995,-6500,,CLKUP,,,Diesel,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4815,(MPFI),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12302,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12303,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4833,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12304,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12305,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4819,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12306,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12307,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12308,0,0,GMC,Sierra 2500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12309,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1995,-11000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26065,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,81,1231,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,33.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4825,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12310,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1995,-9250,,SIL Creeper,,,,,,, +27.288009000000002,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,727.1428571428571,14,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,4250,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12311,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-9250,,CLKUP,T,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4816,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12312,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1995,-6500,,CLKUP,,,Diesel,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4815,(MPFI),-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12313,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1995,-7750,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12314,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4805,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12315,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4804,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12316,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1995,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,5.2,4-Wheel or All-Wheel Drive,4902,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12317,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-5750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12318,0,0,Isuzu,Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1995,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3611,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12319,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Standard Pickup Trucks,1995,-1000,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,26005,CA model,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,15,70,1232,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,55.0,0.0,Subcompact Cars,1985,4000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3629,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12320,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1995,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3641,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12321,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3762,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12322,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3765,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12323,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57019,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12324,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1995,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57019,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12325,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12326,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1995,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12327,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Standard Pickup Trucks,1995,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12328,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12329,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Standard Pickup Trucks,1995,-5250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26025,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,70,1233,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0256,0.0,Subcompact Cars,1985,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12330,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1995,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12331,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12332,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1995,-7750,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12333,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1995,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12334,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1995,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12335,0,0,Chevrolet,Astro 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1995,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12336,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1995,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12337,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12338,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1995,-5500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12339,0,0,Chevrolet,G30 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26025,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,70,1234,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,47.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12340,0,0,Nissan,Pathfinder Van (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Vans,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12341,0,0,Dodge,B1500/B2500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1995,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,12342,0,0,Dodge,B1500/B2500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1995,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12343,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1995,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12344,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1995,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12345,0,0,Dodge,B3500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1995,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12346,0,0,Dodge,B3500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1995,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3623,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12347,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Vans,1995,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3801,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12348,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1995,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3802,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12349,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26055,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1235,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.7436,0.0,Subcompact Cars,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12350,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3924,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12351,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1995,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3805,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,12352,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.9487,0.0,Vans,1995,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3809,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12353,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1995,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3806,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12354,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1995,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12355,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1995,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12356,0,0,GMC,Vandura G15/25 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12357,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1995,-5500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12358,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12359,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1995,-6750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,29005,CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1236,10,0,Isuzu,I-Mark,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12360,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1995,-5750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12361,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1995,-8000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12362,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Vans,1995,-6750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12363,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12364,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Vans,1995,-9250,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12365,0,0,Chevrolet,Sport Van G10/20 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1995,-6500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12366,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,12367,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1995,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12368,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1995,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12369,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1995,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,29005,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1237,10,0,Isuzu,I-Mark,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12370,0,0,Dodge,B3500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1995,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12371,0,0,Dodge,B3500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1995,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3760,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12372,0,0,Ford,Aerostar Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1995,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3620,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12373,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3740,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12374,0,0,Ford,Aerostar Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Vans,1995,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3808,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12375,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1995,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12376,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3921,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12377,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Vans,1995,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12378,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Vans,1995,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12379,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Vans,1995,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29025,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,1238,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4812,(MPFI) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12380,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1995,-6500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12381,0,0,GMC,Safari AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1995,-8000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12382,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Vans,1995,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12383,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1995,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS) (S-CHARGE),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12384,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Vans,1995,-3250,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12385,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Vans,1995,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57011,(FFS) (S-CHARGE),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12386,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1995,-4250,,,,S,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,59005,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12387,0,0,Volkswagen,Eurovan Camper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,23.0769,0.0,Vans,1995,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,59005,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12388,0,0,Volkswagen,Eurovan Camper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Vans,1995,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12389,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-5750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29025,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,1239,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12390,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-4750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4820,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12391,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.2308,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12392,0,0,Chevrolet,Lumina Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12393,0,0,Chevrolet,Lumina Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12394,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1995,-6250,,2MODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12395,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38094,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12396,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-3250,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12397,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12398,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12399,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,124,0,14,Ford,Laser,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,40.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3350,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,1240,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12400,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12401,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12402,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12403,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicles,1995,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12404,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12405,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12406,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12407,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12408,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12409,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Special Purpose Vehicles,1995,-5250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3353,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,83,1241,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12410,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12411,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1995,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12412,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1995,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12413,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Special Purpose Vehicles,1995,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3744,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12414,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1995,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3741,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12415,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3622,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12416,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3721,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12417,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3621,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12418,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3720,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12419,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,15,83,1242,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22703,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12420,0,0,Federal Coach,Heritage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22703,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12421,0,0,Federal Coach,Renaissance,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,22701,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12422,0,0,Federal Coach,Lincoln Stratford,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,33880,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12423,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3650,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12424,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3651,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12425,0,0,Mercury,Villager FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4820,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12426,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.2308,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4801,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12427,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12428,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12429,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56025,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,1243,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,40.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12430,0,0,Honda,Passport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12431,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,DOHC V-6 (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12432,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12433,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12434,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12435,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12436,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicles,1995,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12437,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12438,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12439,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,14,78,1244,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12440,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12441,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12442,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12443,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12444,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1995,-4250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12445,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Special Purpose Vehicles,1995,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,5.2,4-Wheel or All-Wheel Drive,4902,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12446,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-5750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12447,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12448,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12449,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1995,-11000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,78,1245,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +27.288009000000002,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,727.1428571428571,14,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,4250,0,Diesel,Diesel,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12450,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-9250,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12451,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,2MODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12452,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0769,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12453,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12454,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12455,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12456,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Special Purpose Vehicles,1995,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12457,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12458,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12459,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1995,-4250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,1246,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,41.0256,0.0,Subcompact Cars,1985,1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12460,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12461,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1995,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12462,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12463,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12464,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,25.0,0.0,Special Purpose Vehicles,1995,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12465,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Special Purpose Vehicles,1995,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2975,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12466,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3862,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12467,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Special Purpose Vehicles,1995,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3861,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12468,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3941,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12469,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1995,-9250,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,11,81,1247,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,51.2821,0.0,Subcompact Cars,1985,3750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3763,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12470,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1995,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3766,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12471,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1995,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33881,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12472,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33880,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12473,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1995,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33881,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12474,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4802,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12475,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Special Purpose Vehicles,1995,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,5.2,4-Wheel or All-Wheel Drive,4902,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12476,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-5750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12477,0,0,GMC,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4818,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12478,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4826,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12479,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1995,-11000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1248,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1985,-500,,,,,,,,, +27.288009000000002,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,727.1428571428571,14,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4814,"(DSL,TRBO) (MPFI)",-1,4250,0,Diesel,Diesel,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12480,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-9250,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12481,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(DOHC) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12482,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-7750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12483,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(DOHC) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12484,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12485,0,0,Land Rover,Defender 90,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicles,1995,-11250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12486,0,0,Land Rover,Discovery,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1995,-11250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12487,0,0,Land Rover,Discovery,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1995,-13250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46082,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12488,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1995,-11250,,EMS 2MODE CLKU,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12489,0,0,Land Rover,Range Rover County Classic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-11250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1249,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,46091,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12490,0,0,Land Rover,Range Rover County LWB,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Special Purpose Vehicles,1995,-13250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49099,V6-SOHC-4 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12491,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12492,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12493,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49099,V6-SOHC-4 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12494,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,49098,V6-DOHC (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12495,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1995,-9500,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,DOHC V-6 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12496,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1995,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12497,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12498,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1995,-4250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54083,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12499,0,0,Suzuki,Samurai,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1995,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,86,125,0,14,Ford,Laser,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,11,81,1250,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,51.2821,0.0,Subcompact Cars,1985,3750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57021,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12500,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1995,-9250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12501,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1995,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12502,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicles,1995,-9250,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12503,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1995,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12504,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Special Purpose Vehicles,1995,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12505,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1995,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12506,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Special Purpose Vehicles,1995,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26070,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12507,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Two Seaters,1996,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26070,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12508,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1996,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12509,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Two Seaters,1996,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2050,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,77,1251,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,51.2821,0.0,Subcompact Cars,1985,2750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12510,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Two Seaters,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12511,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Two Seaters,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12512,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,34.0,0.0,Two Seaters,1996,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12513,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1996,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12514,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Two Seaters,1996,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12515,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Two Seaters,1996,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12516,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1996,-4750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12517,0,0,Dodge,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,27.0,0.0,Two Seaters,1996,-9500,T,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,22015,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12518,0,0,Ferrari,Ferrari F355 Berlinetta/GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.0,0.0,19.2308,0.0,Two Seaters,1996,-15500,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12519,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Two Seaters,1996,2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,77,1252,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12520,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,45.0,0.0,Two Seaters,1996,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26015,DOHC/VTEC (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12521,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Two Seaters,1996,0,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12522,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,50.0,0.0,Two Seaters,1996,3500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12523,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Two Seaters,1996,2250,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,12524,0,0,Lamborghini,DB132/Diablo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1996,-18250,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,I-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12525,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Two Seaters,1996,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,I-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12526,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Two Seaters,1996,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12527,0,0,Mercedes-Benz,SL320,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Two Seaters,1996,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12528,0,0,Mercedes-Benz,SL500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,30.0,0.0,Two Seaters,1996,-5750,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12529,0,0,Mercedes-Benz,SL600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,26.0,0.0,Two Seaters,1996,-9500,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,77,1253,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1985,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54014,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12530,0,0,Suzuki,X-90 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Two Seaters,1996,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12531,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.0,0.0,Two Seaters,1996,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12532,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Two Seaters,1996,500,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,25301,(GUZZLER) (FFS) (MPFI),-1,6700,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,12533,0,0,Vector,Avtech SC / M12,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,8.8889,0.0,16.6667,0.0,Two Seaters,1996,-21500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64013,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12534,7,0,Audi,Cabriolet,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Minicompact Cars,1996,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12535,9,0,BMW,318i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Minicompact Cars,1996,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12536,9,0,BMW,318i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Minicompact Cars,1996,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12537,9,0,BMW,328i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Minicompact Cars,1996,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12043,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12538,9,0,BMW,328i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Minicompact Cars,1996,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38021,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12539,0,9,Nissan,240SX,N,false,0,71,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Minicompact Cars,1996,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2151,(FFS) CA model,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1254,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.1795,0.0,Subcompact Cars,1985,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38021,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12540,0,9,Nissan,240SX,Y,false,0,71,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Minicompact Cars,1996,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30596,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12541,10,0,Jaguar,XJS Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Minicompact Cars,1996,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,5,74,12542,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Minicompact Cars,1996,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,"DOHC TURBO (FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,5,74,12543,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Minicompact Cars,1996,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19638,SOHC-4 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,5,74,12544,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Minicompact Cars,1996,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19638,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,5,74,12545,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.1795,0.0,Minicompact Cars,1996,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12546,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Minicompact Cars,1996,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12547,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,29.0,0.0,Minicompact Cars,1996,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12548,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1996,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12549,4,0,Porsche,911 Turbo,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Minicompact Cars,1996,-9500,T,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4155,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1255,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12550,7,0,Toyota,Celica Convertible,N,false,67,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Minicompact Cars,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12551,7,0,Toyota,Celica Convertible,Y,false,67,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Minicompact Cars,1996,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12552,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,44.0,0.0,Minicompact Cars,1996,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12553,8,0,Toyota,Paseo,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Minicompact Cars,1996,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57023,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,12554,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1996,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,69,12555,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Minicompact Cars,1996,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,12556,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1996,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,DOHC/VTEC (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,12557,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,12558,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1996,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,12559,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4155,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1256,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,12032,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12560,9,0,BMW,M3,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1996,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12561,9,10,BMW,318i/318is,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Subcompact Cars,1996,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12562,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1996,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12563,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1996,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12043,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12564,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1996,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12057,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12565,10,0,BMW,840ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,26.0,0.0,Subcompact Cars,1996,-8000,T,3MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12566,10,0,BMW,850ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,26.0,0.0,Subcompact Cars,1996,-8000,T,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4109,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12567,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1996,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4108,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12568,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,39.0,0.0,Subcompact Cars,1996,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12569,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1996,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4190,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,1257,0,0,Pontiac,Firebird,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12570,13,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,34.0,0.0,Subcompact Cars,1996,-3250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12571,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1996,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,12572,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,51.0,0.0,Subcompact Cars,1996,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12573,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1996,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12574,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1996,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,12575,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1996,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,12576,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1996,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12577,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1996,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12578,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,12579,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1996,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4215,(FFS/TRBO) CA model,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1258,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,32.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12580,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1996,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12581,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12582,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1996,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12583,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1996,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12584,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12585,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,79,12586,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1996,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,79,12587,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1996,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,12588,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1996,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,12589,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1996,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4216,(FFS/TRBO) CA model,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1259,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,12590,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,12591,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1996,-500,,,T,,,,,, +9.976196,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,17,82,12592,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,54.0,0.0,Subcompact Cars,1996,3750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,82,12593,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,44.0,0.0,Subcompact Cars,1996,2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3260,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12594,10,11,Ford,Mustang,N,false,89,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3261,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12595,10,11,Ford,Mustang,Y,false,89,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3340,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12596,10,11,Ford,Mustang,Y,false,89,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3341,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12597,10,11,Ford,Mustang,Y,false,89,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1996,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3280,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12598,10,11,Ford,Mustang,Y,false,89,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1996,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,80,12599,19,0,Ford,Probe,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1996,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,126,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,32.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4105,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,1260,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3150,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,8,80,12600,19,0,Ford,Probe,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3140,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,8,80,12601,19,0,Ford,Probe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1996,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3141,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,8,80,12602,19,0,Ford,Probe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1996,-2250,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,81,12603,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,63.0,0.0,Subcompact Cars,1996,5000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,81,12604,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,43.0,0.0,Subcompact Cars,1996,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,81,12605,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.3333,0.0,55.0,0.0,Subcompact Cars,1996,4250,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,86,12606,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.2222,0.0,46.1538,0.0,Subcompact Cars,1996,2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,12607,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,45.0,0.0,Subcompact Cars,1996,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,86,12608,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1996,2250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,86,12609,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,49.0,0.0,Subcompact Cars,1996,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4106,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,1261,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,41.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26001,VTEC (FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12610,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.0,0.0,50.0,0.0,Subcompact Cars,1996,3500,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26001,VTEC (FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,12611,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,58.0,0.0,Subcompact Cars,1996,4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12612,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26043,DOHC/VTEC (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12613,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1996,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12614,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26046,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12615,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.3333,0.0,Subcompact Cars,1996,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26046,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12616,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Subcompact Cars,1996,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12617,0,10,Infiniti,J30,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1996,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12618,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12619,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1996,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4107,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,1262,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57007,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12620,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1996,-4750,,2MODE 2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,80,12621,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,44.0,0.0,Subcompact Cars,1996,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56035,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,80,12622,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.0,0.0,Subcompact Cars,1996,2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,1.8,Front-Wheel Drive,56042,V-6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,80,12623,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1996,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,1.8,Front-Wheel Drive,56042,V-6 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,80,12624,15,0,Mazda,MX-3,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1996,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12625,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1996,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12626,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1996,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12627,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1996,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12628,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1996,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,12629,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1996,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66025,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,78,1263,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,79,12630,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1996,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,79,12631,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1996,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,12632,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1996,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,12633,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,12634,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1996,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12635,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1996,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12636,11,11,Mitsubishi,Mirage,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1996,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12637,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12638,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1996,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12639,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,2MODE,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66025,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,78,1264,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0256,0.0,Subcompact Cars,1985,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,12640,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1996,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,12641,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49053,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,4,84,12642,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1996,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49054,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,4,84,12643,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0513,0.0,Subcompact Cars,1996,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4109,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,12644,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1996,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4108,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,84,12645,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,39.0,0.0,Subcompact Cars,1996,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,12646,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,84,12647,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1996,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,"(GUZZLER) (L410MTKT) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12648,7,0,Rolls-Royce,Azure,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Subcompact Cars,1996,-13250,T,EMS 3MODE,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12649,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,47.0,0.0,Subcompact Cars,1996,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,78,1265,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12650,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Subcompact Cars,1996,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12651,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1996,1500,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,12652,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,51.0,0.0,Subcompact Cars,1996,2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12653,11,11,Subaru,Impreza,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,39.0,0.0,Subcompact Cars,1996,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12654,11,11,Subaru,Impreza,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,40.0,0.0,Subcompact Cars,1996,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12655,11,11,Subaru,Impreza AWD,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12656,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1996,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12657,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1996,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12658,8,0,Subaru,SVX AWD,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1996,-4750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,54003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12659,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1996,1500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57015,(FFS) CA model,-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,84,1266,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1985,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,54003,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,12660,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Subcompact Cars,1996,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,89,12661,0,10,Suzuki,Swift,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1996,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,89,12662,0,10,Suzuki,Swift,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.3333,0.0,55.0,0.0,Subcompact Cars,1996,4250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,12663,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1996,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,12664,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Subcompact Cars,1996,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,12665,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,12666,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1996,-500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12667,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,45.0,0.0,Subcompact Cars,1996,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12668,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,50.0,0.0,Subcompact Cars,1996,2500,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,12669,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.7778,0.0,51.0,0.0,Subcompact Cars,1996,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57015,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,1267,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.7179,0.0,Subcompact Cars,1985,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12670,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,50.0,0.0,Subcompact Cars,1996,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12671,8,0,Volkswagen,Cabrio,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1996,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12672,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1996,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12673,0,14,Acura,2.5TL/3.2TL,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1996,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26080,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12674,0,14,Acura,2.5TL/3.2TL,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1996,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12675,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,35.8974,0.0,Compact Cars,1996,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12676,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1996,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12677,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,35.0,0.0,Compact Cars,1996,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12678,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Compact Cars,1996,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12679,0,17,Audi,A6,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1996,-3750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4330,(GM-OLDS) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1268,13,0,Buick,Riviera Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Compact Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12680,0,16,Audi,A6 quattro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1996,-3750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,12681,0,0,BMW,318ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Compact Cars,1996,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12037,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,12682,0,0,BMW,318ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Compact Cars,1996,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12683,13,13,Buick,Skylark,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0256,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12684,13,13,Buick,Skylark,Y,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12685,13,0,Chevrolet,Beretta,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1996,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12686,13,0,Chevrolet,Beretta,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1996,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12687,13,0,Chevrolet,Beretta,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12688,12,14,Chevrolet,Cavalier,Y,false,86,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1996,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4110,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12689,12,14,Chevrolet,Cavalier,Y,false,86,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,43.0,0.0,Compact Cars,1996,1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4215,(FFS/TRBO) CA model,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1269,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,32.0,0.0,Compact Cars,1985,-3750,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12690,12,14,Chevrolet,Cavalier,Y,false,86,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1996,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12691,12,14,Chevrolet,Cavalier,Y,false,86,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12692,12,14,Chevrolet,Cavalier,Y,false,86,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1996,0,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12693,0,13,Chevrolet,Corsica,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1996,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12694,0,13,Chevrolet,Corsica,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12695,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12696,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Compact Cars,1996,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12697,12,0,Chrysler,Sebring,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Compact Cars,1996,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12698,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1996,-1000,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12699,0,14,Nissan,Altima / Stanza,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1996,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3301,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,127,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4216,(FFS/TRBO) CA model,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1270,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,38.0,0.0,Compact Cars,1985,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12700,12,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1996,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12701,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1996,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12702,12,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Compact Cars,1996,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12703,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,42.3077,0.0,Compact Cars,1996,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12704,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,49.0,0.0,Compact Cars,1996,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3121,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12705,0,14,Ford,Contour,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12706,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.0,0.0,Compact Cars,1996,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3160,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12707,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3161,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12708,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Compact Cars,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12709,12,17,Ford,Escort,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Compact Cars,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1271,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Compact Cars,1985,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12710,12,17,Ford,Escort,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1996,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12711,12,17,Ford,Escort,Y,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1996,1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12712,12,17,Ford,Escort,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,49.0,0.0,Compact Cars,1996,2750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12713,0,13,Geo,Prizm,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1996,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12714,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.8718,0.0,Compact Cars,1996,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12715,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Compact Cars,1996,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12716,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1996,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33841,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12717,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.7436,0.0,Compact Cars,1996,500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33841,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12718,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1996,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33840,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12719,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1996,-1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1272,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33840,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12720,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,38.0,0.0,Compact Cars,1996,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12721,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12722,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1996,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12723,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0256,0.0,Compact Cars,1996,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,(VTEC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12724,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1996,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12725,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1996,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12726,0,11,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Compact Cars,1996,1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12727,0,11,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Compact Cars,1996,1500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26501,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12728,0,11,Hyundai,Accent,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,47.0,0.0,Compact Cars,1996,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12729,0,11,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.8718,0.0,Compact Cars,1996,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1273,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,88,12730,0,0,Hyundai,Accent (Sporty),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1996,1000,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,88,12731,0,0,Hyundai,Accent (Sporty),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.8718,0.0,Compact Cars,1996,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12732,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Compact Cars,1996,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12733,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1996,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12734,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Compact Cars,1996,-500,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12735,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1996,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30550,(GUZZLER) (FFS) (S-CHARGE),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12736,0,13,Jaguar,XJR,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,24.359,0.0,Compact Cars,1996,-9500,T,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30558,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12737,0,13,Jaguar,XJ6,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1996,-4750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12738,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Compact Cars,1996,-1000,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3121,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12739,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1274,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12740,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.0,0.0,Compact Cars,1996,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3160,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12741,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3161,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12742,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Compact Cars,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12743,12,0,Mercury,Tracer,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Compact Cars,1996,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3080,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12744,12,0,Mercury,Tracer,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1996,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12745,12,0,Mercury,Tracer,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1996,1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12746,12,0,Mercury,Tracer,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,49.0,0.0,Compact Cars,1996,2750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,56051,(FFS) (S-CHARGE),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12747,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Compact Cars,1996,-3000,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12748,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Compact Cars,1996,-3000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12749,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1996,1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4410,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1275,14,0,Buick,Somerset Regal,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.3333,0.0,Compact Cars,1985,-2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12750,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,50.0,0.0,Compact Cars,1996,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,I-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12751,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,I-4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12752,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,42.0,0.0,Compact Cars,1996,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,20020,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12753,0,12,Mercedes-Benz,C220,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12754,0,12,Mercedes-Benz,C280,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1996,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,20036,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12755,0,12,Mercedes-Benz,C36 AMG,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1996,-4750,,,,,,,,, +14.140845,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,,-1,2200,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12756,0,15,Mercedes-Benz,E300 Diesel,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,45.0,0.0,Compact Cars,1996,1000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20045,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12757,0,15,Mercedes-Benz,E320,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Compact Cars,1996,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12758,14,0,Mercedes-Benz,S500 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,28.0,0.0,Compact Cars,1996,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12759,14,0,Mercedes-Benz,S600 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,26.0,0.0,Compact Cars,1996,-9500,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1276,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Compact Cars,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49061,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12760,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1996,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,SOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12761,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1996,-3750,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12762,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.8974,0.0,Compact Cars,1996,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12763,0,12,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1996,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12764,14,14,Oldsmobile,Achieva,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0256,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12765,14,14,Oldsmobile,Achieva,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1996,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12766,14,14,Oldsmobile,Achieva,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12767,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,42.3077,0.0,Compact Cars,1996,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12768,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,49.0,0.0,Compact Cars,1996,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12769,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4127,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1277,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Compact Cars,1985,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12770,13,13,Pontiac,Grand Am,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1996,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12771,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Compact Cars,1996,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12772,12,13,Pontiac,Sunfire,Y,false,88,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1996,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4110,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12773,12,13,Pontiac,Sunfire,Y,false,88,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,43.0,0.0,Compact Cars,1996,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12774,12,13,Pontiac,Sunfire,N,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1996,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12775,12,13,Pontiac,Sunfire,N,false,88,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1996,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12776,12,13,Pontiac,Sunfire,Y,false,88,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1996,0,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,"(GUZZLER) (L410MTKT) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12777,12,0,Rolls-Royce,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Compact Cars,1996,-13250,T,EMS 3MODE,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12778,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Compact Cars,1996,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12779,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.1538,0.0,Compact Cars,1996,1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1278,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12780,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1996,1500,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,12781,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,51.0,0.0,Compact Cars,1996,2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12782,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Compact Cars,1996,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,12783,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.3077,0.0,Compact Cars,1996,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12784,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Compact Cars,1996,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12785,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1996,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12786,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1996,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12787,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1996,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12788,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.8718,0.0,Compact Cars,1996,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12789,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Compact Cars,1996,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1279,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12790,0,13,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1996,1750,,,,,,,,, +10.038726,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59004,"(DSL,TRBO)",-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,17,88,12791,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.0,0.0,62.8205,0.0,Compact Cars,1996,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,12792,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1996,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,88,12793,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Compact Cars,1996,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,87,12794,0,0,Volkswagen,GTI VR6,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1996,-2500,,,,,,,,, +10.038726,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59004,"(DSL,TRBO)",-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,12795,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.0,0.0,62.8205,0.0,Compact Cars,1996,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12796,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1996,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12797,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Compact Cars,1996,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12798,0,15,Volkswagen,Jetta GLX,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12799,0,15,Volkswagen,Jetta GLX,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1996,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3322,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,128,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1985,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,1280,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Compact Cars,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12800,0,16,Volvo,960,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Compact Cars,1996,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,26090,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12801,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1996,-3750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12802,0,16,Buick,Century,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Midsize Cars,1996,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12803,0,16,Buick,Century,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12804,16,16,Buick,Regal,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12805,15,0,Cadillac,Eldorado,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12806,0,16,Chevrolet,Lumina/Monte Carlo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4111,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12807,0,16,Chevrolet,Lumina/Monte Carlo,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12808,0,14,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12809,0,14,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,1281,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0256,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12810,0,14,Chrysler,Sebring Convertible,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12811,0,14,Chrysler,Sebring Convertible,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38033,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12812,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1996,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38033,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12813,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize Cars,1996,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12814,0,14,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1996,-500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12815,0,14,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Midsize Cars,1996,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12816,0,14,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2411,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12817,0,14,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1996,-1750,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12818,0,14,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3220,(4-VALVE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12819,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4127,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,1282,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Compact Cars,1985,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3180,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12820,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3200,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12821,0,16,Ford,Taurus,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1996,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Front-Wheel Drive,3240,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12822,0,16,Ford,Taurus SHO,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3262,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12823,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1996,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3302,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12824,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12825,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12826,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Midsize Cars,1996,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12827,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1996,-2500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38034,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12828,0,15,Infiniti,I30,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1996,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38034,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12829,0,15,Infiniti,I30,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1996,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4153,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,1283,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12830,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Midsize Cars,1996,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30552,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12831,0,13,Jaguar,Vanden Plas,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Midsize Cars,1996,-5750,,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12832,0,13,Jaguar,XJ12,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Midsize Cars,1996,-13250,T,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12833,0,13,Lexus,GS 300,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1996,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57008,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12834,0,14,Lexus,LS 400,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1996,-3750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3262,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12835,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1996,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3302,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12836,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12837,14,0,Lincoln,Mark VIII,Y,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1996,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3220,(4-VALVE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12838,0,16,Mercury,Sable,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3180,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12839,0,16,Mercury,Sable,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,1284,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12840,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Midsize Cars,1996,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12841,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Midsize Cars,1996,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12842,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize Cars,1996,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12843,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1996,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,4100,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12844,0,16,Oldsmobile,Aurora,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12845,0,16,Oldsmobile,Ciera SL,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Midsize Cars,1996,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12846,0,16,Oldsmobile,Ciera SL,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12847,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4111,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12848,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2211,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12849,0,14,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1996,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38045,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1285,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12850,0,14,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.1538,0.0,Midsize Cars,1996,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2311,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12851,0,14,Plymouth,Breeze,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12852,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4111,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12853,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (L410MNKT) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12854,0,12,Rolls-Royce,Brooklands and (LWB),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Midsize Cars,1996,-13250,T,EMS 2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,"(GUZZLER) (L410MTKT) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12855,0,12,Rolls-Royce,Turbo R/Turbo Rl,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1996,-13250,T,EMS 3MODE,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (L410MNKT) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12856,0,12,Rolls-Royce,Silver Spur/Silver Dawn,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Midsize Cars,1996,-13250,T,EMS 2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12857,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Midsize Cars,1996,-1000,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,12858,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Midsize Cars,1996,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12859,15,15,Toyota,Camry,Y,false,94,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Midsize Cars,1996,-1000,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38035,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,88,1286,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.8974,0.0,Compact Cars,1985,0,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59004,"(DSL,TRBO)",-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,12860,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,58.0,0.0,Midsize Cars,1996,3500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12861,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1996,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12862,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12863,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12864,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1996,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60020,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12865,0,14,Volvo,850,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1996,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12866,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12867,0,14,Volvo,850,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1996,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12057,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12868,0,13,BMW,740il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,30.7692,0.0,Large Cars,1996,-4750,,2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12869,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,25.0,0.0,Large Cars,1996,-8000,T,2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38035,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,88,1287,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.3077,0.0,Compact Cars,1985,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12870,0,21,Buick,Roadmaster,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12871,0,20,Cadillac,DeVille,Y,false,0,117,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12872,0,21,Cadillac,Fleetwood,Y,false,0,125,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12873,0,14,Cadillac,Seville,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,4103,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12874,0,20,Chevrolet,Caprice/Impala,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1996,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12875,0,20,Chevrolet,Caprice/Impala,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12876,0,19,Chrysler,Concorde,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1996,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12877,0,19,Chrysler,Concorde,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12878,0,18,Chrysler,New Yorker/LHS,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12879,0,19,Dodge,Intrepid,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1996,-1750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2050,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,1288,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,51.2821,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2612,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12880,0,19,Dodge,Intrepid,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1996,-3250,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12881,0,19,Dodge,Intrepid,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1996,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12882,0,19,Eagle,Vision,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1996,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2612,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12883,0,19,Eagle,Vision,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1996,-3250,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12884,0,19,Eagle,Vision,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3302,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12885,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +0.10329200000000001,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,390.55555555555554,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3301,(FFS),-1,1750,0,CNG,Natural Gas,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12886,0,21,Ford,Crown Victoria CNG,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3300,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12887,0,21,Ford,Crown Victoria Police,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.0,0.0,Large Cars,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,3360,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12888,0,18,Lincoln,Continental,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1996,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3302,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12889,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,1289,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3302,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12890,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12891,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1996,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12892,0,16,Mercedes-Benz,S320,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1996,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12893,0,16,Mercedes-Benz,S420,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,28.0,0.0,Large Cars,1996,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12894,0,16,Mercedes-Benz,S500,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,26.9231,0.0,Large Cars,1996,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12895,0,16,Mercedes-Benz,S600,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,24.0,0.0,Large Cars,1996,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4113,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12896,0,18,Pontiac,Bonneville,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1996,-4750,,CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (L410MNKT) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12897,0,12,Rolls-Royce,Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Large Cars,1996,-13250,T,EMS 2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (L410MNKT) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,12898,0,12,Rolls-Royce,Silver Spur Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Large Cars,1996,-13250,T,EMS 2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12899,0,15,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Large Cars,1996,-1000,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,129,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,1290,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12900,0,34,Audi,A6 quattro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Small Station Wagons,1996,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12901,0,34,Audi,A6 Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1996,-3750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12902,0,26,Ford,Escort Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1996,1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12903,0,26,Ford,Escort Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,49.0,0.0,Small Station Wagons,1996,2750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,26,94,12904,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Small Station Wagons,1996,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26033,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,26,94,12905,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Small Station Wagons,1996,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,26,94,12906,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Station Wagons,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,95,12907,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Small Station Wagons,1996,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,95,12908,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Small Station Wagons,1996,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12909,32,0,Mercury,Tracer Wagon,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1996,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2151,(FFS) CA model,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,85,1291,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.1795,0.0,Compact Cars,1985,-2250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12910,32,0,Mercury,Tracer Wagon,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,49.0,0.0,Small Station Wagons,1996,2750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12911,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,44.0,0.0,Small Station Wagons,1996,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,12912,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.1538,0.0,Small Station Wagons,1996,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,12913,0,29,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Small Station Wagons,1996,1500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,12914,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,49.0,0.0,Small Station Wagons,1996,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12915,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Small Station Wagons,1996,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12916,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Small Station Wagons,1996,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12917,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Small Station Wagons,1996,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57003,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,12918,0,31,Toyota,Corolla Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Small Station Wagons,1996,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,60015,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,36,92,12919,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Station Wagons,1996,-4750,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3150,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,1292,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,92,12920,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Small Station Wagons,1996,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12921,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,12922,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,35,96,12923,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1996,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,12924,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1996,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,12925,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1996,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,12926,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Midsize-Large Station Wagons,1996,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,35,96,12927,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Midsize-Large Station Wagons,1996,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3221,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12928,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1996,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3181,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12929,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1996,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3160,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,1293,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Compact Cars,1985,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,46,107,12930,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,46,107,12931,0,0,Isuzu,Oasis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1996,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3221,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12932,0,38,Mercury,Sable Wagon,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1996,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3181,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12933,0,38,Mercury,Sable Wagon,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1996,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC-4 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12934,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1996,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4107,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12935,0,41,Oldsmobile,Ciera SL Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,12936,0,36,Subaru,Legacy Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Midsize-Large Station Wagons,1996,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12937,0,36,Subaru,Legacy Wagon AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12938,0,36,Subaru,Legacy Wagon AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12939,0,36,Subaru,Legacy Wagon AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1996,-1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3280,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,1294,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12940,0,40,Toyota,Camry Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1996,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12941,0,40,Toyota,Camry Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1996,-1000,,2MODE 2LKUP,,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59004,"(DSL,TRBO)",-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,12942,0,34,Volkswagen,Passat Wagon,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,58.0,0.0,Midsize-Large Station Wagons,1996,3500,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12943,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12944,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1996,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60020,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,99,12945,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1996,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,12946,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,12947,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1996,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12948,0,55,Buick,Roadmaster Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12949,0,55,Chevrolet,Caprice/Impala Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1996,-3250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3281,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,85,1295,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4903,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12950,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Small Pickup Trucks,1996,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4904,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12951,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1996,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12952,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Small Pickup Trucks,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4902,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12953,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1996,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12954,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1996,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,12955,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1996,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4903,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,12956,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Small Pickup Trucks,1996,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4904,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12957,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1996,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,12958,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4902,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12959,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1996,-2500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3360,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1296,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.1795,0.0,Compact Cars,1985,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4904,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,12960,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1996,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12961,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks,1996,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12962,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1996,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12963,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,12964,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks,1996,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12965,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Small Pickup Trucks,1996,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12966,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1996,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12967,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4917,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,12968,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1996,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12969,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3361,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1297,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Compact Cars,1985,500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4914,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12970,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12971,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4908,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12972,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4905,"(DSL,TRBO) (MPFI)",-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12973,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1996,-6500,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12974,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4914,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12975,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12976,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4908,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12977,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1996,-9250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4905,"(DSL,TRBO) (MPFI)",-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12978,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-6500,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,12979,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Standard Pickup Trucks,1996,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3362,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1298,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,39.0,0.0,Compact Cars,1985,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12980,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,12981,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1996,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12982,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12983,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12984,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,12985,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12986,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12987,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12988,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12989,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3372,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1299,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1985,-2500,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12990,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1996,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12991,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,12992,0,0,Dodge,Ram 2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1996,-11000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12993,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3848,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,12994,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1996,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3884,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12995,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12996,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3961,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12997,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3843,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,12998,0,0,Ford,F250,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,12999,0,0,Ford,F250,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3102,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Two Seaters,1985,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3410,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,130,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1985,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1300,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3883,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13000,0,0,Ford,F250,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3881,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13001,0,0,Ford,F250,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3962,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13002,0,0,Ford,F250,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3602,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13003,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1996,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13004,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Standard Pickup Trucks,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3624,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13005,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3622,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13006,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1996,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3724,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13007,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3721,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13008,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13009,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3352,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1301,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4917,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13010,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1996,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13011,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4914,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13012,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13013,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4908,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13014,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4905,"(DSL,TRBO) (MPFI)",-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13015,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1996,-6500,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13016,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4914,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13017,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13018,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4908,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13019,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1996,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27915,(GUZZLER) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1302,15,0,Mercedes-Benz,500SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Compact Cars,1985,-7750,T,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4905,"(DSL,TRBO) (MPFI)",-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13020,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-6500,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3603,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13021,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1996,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13022,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Standard Pickup Trucks,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3626,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13023,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3623,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13024,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1996,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3725,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13025,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3720,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13026,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13027,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13028,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Standard Pickup Trucks,1996,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3372,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1303,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1985,-2500,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13030,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13031,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4918,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13032,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4919,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13033,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1996,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4907,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13034,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4913,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13035,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13036,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4912,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13037,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4906,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13038,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13039,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1304,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4900,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13040,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1996,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13041,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.0,0.0,Standard Pickup Trucks,1996,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13042,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13043,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13044,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13045,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13046,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1996,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13047,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13048,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.2308,0.0,Standard Pickup Trucks,1996,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13049,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1996,-11000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3150,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,1305,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13050,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,19.2308,0.0,Standard Pickup Trucks,1996,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13051,0,0,Dodge,Ram 2500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.2308,0.0,Standard Pickup Trucks,1996,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13052,0,0,Dodge,Ram 2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1996,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3861,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13053,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13054,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3902,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13055,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3900,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13056,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3971,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13057,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1996,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13058,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1996,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3640,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13059,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3280,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,1306,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3641,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13060,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3743,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13061,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13062,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4918,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13063,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1996,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4919,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13064,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1996,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4907,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13065,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4913,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13066,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13067,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4912,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13068,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1996,-7750,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4906,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13069,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-7750,,CLKUP,T,,Diesel,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3281,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,85,1307,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13070,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4900,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13071,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1996,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13072,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1996,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3643,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13073,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3642,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13074,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13075,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13076,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13077,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1996,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13078,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1996,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13079,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1996,-5250,,2MODE 2LKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3250,CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,1308,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1985,3250,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13080,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Standard Pickup Trucks,1996,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13081,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1996,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13082,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Standard Pickup Trucks,1996,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13083,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13084,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Vans,1996,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13085,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13086,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13087,0,0,Chevrolet,Van 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13088,0,0,Dodge,B1500/B2500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Vans,1996,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13089,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1996,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3360,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1309,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.1795,0.0,Compact Cars,1985,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13090,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13091,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13092,0,0,Dodge,B3500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13093,0,0,Dodge,B3500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3625,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13094,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Vans,1996,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3846,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13095,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1996,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3844,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13096,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13097,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3963,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13098,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3845,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13099,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Vans,1996,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,131,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3361,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1310,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Compact Cars,1985,500,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3841,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13100,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Vans,1996,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3960,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13101,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13102,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13103,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13104,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13105,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13106,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Vans,1996,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4918,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13107,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13108,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1996,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13109,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3362,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1311,13,13,Mercury,Topaz,Y,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,39.0,0.0,Compact Cars,1985,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13110,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13111,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13112,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Vans,1996,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13113,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1996,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13114,0,0,Dodge,B1500/B2500 Wagon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13115,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13116,0,0,Dodge,B3500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13117,0,0,Dodge,B3500 Wagon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1996,-13000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3745,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13118,0,0,Ford,Aerostar Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3627,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13119,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,29.0,0.0,Vans,1996,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4410,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1312,13,0,Oldsmobile,Calais,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.3333,0.0,Compact Cars,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3726,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13120,0,0,Ford,Aerostar Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1996,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3847,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13121,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3886,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13122,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3964,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13123,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13124,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4909,(FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13125,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13126,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1996,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4918,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13127,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1996,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4916,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13128,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57010,(FFS) (S-CHARGE),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13129,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Vans,1996,-4250,,,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,83,1313,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Compact Cars,1985,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57010,(FFS) (S-CHARGE),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13130,0,0,Toyota,Previa All-Trac,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Vans,1996,-4250,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13131,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Special Purpose Vehicles,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4902,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13132,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13133,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13134,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4901,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13135,0,0,Chevrolet,Lumina Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,38090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13136,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1996,-5250,,2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,38090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13137,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,25.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13138,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1996,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13139,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,1314,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13140,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13141,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2812,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13142,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13143,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13144,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13145,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13146,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,29.0,0.0,Special Purpose Vehicles,1996,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13147,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13148,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13149,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4153,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,1315,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3723,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13150,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3722,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13151,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1996,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3885,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13152,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3620,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13153,0,0,Ford,Windstar FWD Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3681,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13154,0,0,Ford,Windstar FWD Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3621,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13155,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3680,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13156,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,33881,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13157,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Special Purpose Vehicles,1996,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3651,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13158,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3650,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13159,0,0,Mercury,Villager FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,1316,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13160,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13161,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13162,0,0,Geo,Tracker Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13163,0,0,Geo,Tracker Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13164,0,0,GMC,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4911,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13165,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4800,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13166,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Special Purpose Vehicles,1996,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4902,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13167,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13168,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29080,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13169,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-6250,,2MODE CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2050,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,1317,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,51.2821,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29080,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13170,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13171,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29081,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13172,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13173,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13174,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4901,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13175,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13176,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2812,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13177,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13178,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13179,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,1318,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1985,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13180,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13181,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13182,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13183,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4901,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13184,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13185,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Special Purpose Vehicles,1996,0,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13186,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Special Purpose Vehicles,1996,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13187,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1750,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13188,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Special Purpose Vehicles,1996,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57021,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13189,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-4250,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,1319,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13190,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13191,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-6250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13192,0,0,Chevrolet,Blazer AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13193,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4900,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13194,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13195,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13196,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4906,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13197,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13198,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-6250,,2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13199,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,81,132,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4410,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1320,13,0,Pontiac,Grand Am,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.3333,0.0,Compact Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13200,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13201,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13202,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13203,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1996,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13204,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2970,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13205,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13206,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3903,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13207,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3901,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13208,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3970,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13209,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Special Purpose Vehicles,1996,-11000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4215,(FFS/TRBO) CA model,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,84,1321,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,32.0,0.0,Compact Cars,1985,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3746,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13210,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1996,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13211,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3904,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13212,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33881,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13213,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33881,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13214,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57022,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13215,0,0,Lexus,LX 450,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1996,-9250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13216,0,0,Geo,Tracker Convertible 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13217,0,0,Geo,Tracker Convertible 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13218,0,0,Geo,Tracker Van 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13219,0,0,Geo,Tracker Van 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4216,(FFS/TRBO) CA model,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,84,1322,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,38.0,0.0,Compact Cars,1985,-1750,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13220,0,0,GMC,Jimmy AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4899,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13221,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4900,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13222,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13223,0,0,GMC,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1996,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4910,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13224,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4906,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13225,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Special Purpose Vehicles,1996,-7750,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13226,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1996,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13227,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13228,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-7750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13229,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1996,-6250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,1323,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0256,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13230,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1996,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13231,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13232,0,0,Land Rover,Discovery,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicles,1996,-9500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13233,0,0,Land Rover,Range Rover 4.0,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1996,-11250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,46091,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13234,0,0,Land Rover,Range Rover 4.6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1996,-13250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49099,V6-SOHC-4 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13235,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-6250,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13236,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1996,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,V6-SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13237,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49099,V6-SOHC-4 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13238,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1996,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,49098,V6-DOHC (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13239,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1996,-9500,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66035,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1324,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13240,0,0,Mazda,MPV 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1996,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13241,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13242,0,0,Suzuki,Sidekick Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13243,0,0,Suzuki,Sidekick Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13244,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13245,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13246,0,0,Suzuki,Sidekick 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1996,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13247,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13248,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13249,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1996,-9250,,2MODE 2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,1325,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Compact Cars,1985,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57009,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13250,0,0,Toyota,RAV4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,34.0,0.0,Special Purpose Vehicles,1996,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57009,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13251,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Special Purpose Vehicles,1996,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13252,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1996,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57020,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13253,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1996,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57021,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13254,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicles,1996,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57021,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13255,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicles,1996,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4102,(350 V8) (FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13256,0,0,Buick,Funeral Coach/Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Special Purpose Vehicles,1996,-3250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13257,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Two Seaters,1997,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13258,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Two Seaters,1997,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,22015,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13259,0,0,Ferrari,Ferrari F355,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.0,0.0,19.2308,0.0,Two Seaters,1997,-15500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60025,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1326,0,14,Volvo,240 DL/GL/turbo,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,29.0,0.0,Compact Cars,1985,-4250,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13260,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1111,0.0,45.0,0.0,Two Seaters,1997,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13261,0,0,Honda,Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,44.8718,0.0,Two Seaters,1997,1750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,13262,0,0,Honda,Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Two Seaters,1997,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26015,DOHC/VTEC (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13263,0,0,Honda,Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Two Seaters,1997,0,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13264,0,0,Honda,Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Two Seaters,1997,2250,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13265,0,0,Lamborghini,DB132/144 - Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1997,-18250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,35001,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13266,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Two Seaters,1997,-6750,T,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13267,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Two Seaters,1997,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,56040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13268,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Two Seaters,1997,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13269,0,0,Mercedes-Benz,SL320,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1997,-4750,,EMS 2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,Front-Wheel Drive,64024,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1327,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Midsize Cars,1985,-4250,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20047,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13270,0,0,Mercedes-Benz,SL500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,29.0,0.0,Two Seaters,1997,-6750,T,EMS 2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20097,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13271,0,0,Mercedes-Benz,SL600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4444,0.0,26.0,0.0,Two Seaters,1997,-9500,T,EMS 2MODE,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13272,0,0,Suzuki,X-90 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.0,0.0,Two Seaters,1997,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13273,0,0,Suzuki,X-90 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Two Seaters,1997,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13274,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.0,0.0,Two Seaters,1997,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13275,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Two Seaters,1997,500,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,25301,(GUZZLER) (FFS) (MPFI),-1,6700,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,13276,0,0,Vector,Avtech SC / M12,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,16.6667,0.0,Two Seaters,1997,-21500,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,7001,(GUZZLER) ASTON-DB7 (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13277,6,0,Aston Martin,DB7 Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Minicompact Cars,1997,-8000,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,7001,(GUZZLER) ASTON-DB7 (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13278,6,0,Aston Martin,DB7 Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.9231,0.0,Minicompact Cars,1997,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,7001,(GUZZLER) ASTON-DB7 (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13279,6,0,Aston Martin,DB7 Volante,Y,false,69,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Minicompact Cars,1997,-8000,T,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4460,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1328,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,7001,(GUZZLER) ASTON-DB7 (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13280,6,0,Aston Martin,DB7 Volante,N,false,69,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.9231,0.0,Minicompact Cars,1997,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13281,7,0,Audi,Cabriolet,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Minicompact Cars,1997,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13282,9,0,BMW,318i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Minicompact Cars,1997,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13283,9,0,BMW,318i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Minicompact Cars,1997,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13284,9,0,BMW,328ic,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Minicompact Cars,1997,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13285,9,0,BMW,328ic,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Minicompact Cars,1997,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13286,0,9,Nissan,240SX,N,false,0,71,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Minicompact Cars,1997,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38010,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13287,0,9,Nissan,240SX,Y,false,0,71,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Minicompact Cars,1997,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,5,74,13288,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Minicompact Cars,1997,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19626,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,5,74,13289,0,0,Mitsubishi,Eclipse Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Minicompact Cars,1997,-500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4406,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1329,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19638,S0HC-4 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,5,74,13290,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Minicompact Cars,1997,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19638,S0HC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,5,74,13291,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Minicompact Cars,1997,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13292,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Minicompact Cars,1997,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13293,4,0,Porsche,911 Carrera 4/2,Y,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1997,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13294,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,29.0,0.0,Minicompact Cars,1997,-5750,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13295,4,0,Porsche,911 Turbo,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Minicompact Cars,1997,-9500,T,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13296,7,0,Toyota,Celica Convertible,Y,false,67,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,38.0,0.0,Minicompact Cars,1997,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13297,7,0,Toyota,Celica Convertible,N,false,67,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Minicompact Cars,1997,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13298,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Minicompact Cars,1997,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13299,8,0,Toyota,Paseo,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Minicompact Cars,1997,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,81,133,0,12,Honda,Accord,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2200,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1330,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,45.0,0.0,Midsize Cars,1985,1000,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13300,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Minicompact Cars,1997,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13301,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,45.0,0.0,Minicompact Cars,1997,2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57005,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,69,13302,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Minicompact Cars,1997,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,13303,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1997,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57005,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,13304,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Minicompact Cars,1997,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57006,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,13305,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.0,0.0,Minicompact Cars,1997,-4750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,DOHC/VTEC (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,13306,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1997,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,13307,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1997,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,13308,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1997,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13309,12,0,Acura,2.2CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1997,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4450,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1331,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1985,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13310,12,0,Acura,2.2CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1997,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26053,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13311,12,0,Acura,2.2CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,12032,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13312,9,10,BMW,M3,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1997,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,12032,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13313,9,10,BMW,M3,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1997,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13314,9,10,BMW,318i/318is,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Subcompact Cars,1997,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13315,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1997,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13316,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Subcompact Cars,1997,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13317,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1997,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12044,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13318,10,0,BMW,840ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,26.0,0.0,Subcompact Cars,1997,-8000,T,3MODE,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12054,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13319,10,0,BMW,850ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,26.0,0.0,Subcompact Cars,1997,-8000,T,3MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1332,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,13320,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,82,13321,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,39.0,0.0,Subcompact Cars,1997,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4111,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,82,13322,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,82,13323,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,34.0,0.0,Subcompact Cars,1997,-4750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13324,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Subcompact Cars,1997,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,13325,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,50.0,0.0,Subcompact Cars,1997,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13326,9,10,Nissan,Sentra/200SX,N,false,82,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1997,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13327,9,10,Nissan,Sentra/200SX,Y,false,82,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1997,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,79,13328,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1997,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,13329,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.7436,0.0,Subcompact Cars,1997,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4330,(GM-OLDS) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1333,16,0,Buick,Riviera,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,13330,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1997,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,13331,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Subcompact Cars,1997,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,13332,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1997,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,13333,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1997,-2250,,,T,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,22020,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13334,7,0,Ferrari,Ferrari 456,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.0,0.0,19.0,0.0,Subcompact Cars,1997,-18250,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,22020,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13335,7,0,Ferrari,Ferrari 456,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.0,0.0,21.0,0.0,Subcompact Cars,1997,-15500,T,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,82,13336,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +9.976196,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,17,82,13337,0,0,Ford,Aspire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,54.0,0.0,Subcompact Cars,1997,3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3241,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13338,11,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3240,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13339,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,38.0,0.0,Subcompact Cars,1997,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4606,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1334,15,0,Cadillac,Eldorado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3341,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13340,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3260,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13341,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1997,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3340,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13342,11,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,33.0,0.0,Subcompact Cars,1997,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3090,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,80,13343,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1997,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3091,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,80,13344,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1997,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3120,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,80,13345,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1997,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3121,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,80,13346,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1997,-2250,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,81,13347,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,63.0,0.0,Subcompact Cars,1997,5000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,81,13348,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,44.0,0.0,Subcompact Cars,1997,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,81,13349,0,10,Geo,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1997,4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4606,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1335,0,14,Cadillac,Seville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13350,0,13,Geo,Prizm,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1997,500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13351,0,13,Geo,Prizm,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1997,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13352,0,13,Geo,Prizm,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13353,0,13,Geo,Prizm,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,45.0,0.0,Subcompact Cars,1997,2250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26001,VTEC-E (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,86,13354,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.0,0.0,49.0,0.0,Subcompact Cars,1997,3000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,13355,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,44.8718,0.0,Subcompact Cars,1997,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,13356,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1997,2250,,CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26001,VTEC-E (FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,13,86,13357,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Subcompact Cars,1997,4000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,VTEC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,86,13358,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1997,2250,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26005,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,86,13359,12,12,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,49.0,0.0,Subcompact Cars,1997,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1336,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,80,13360,0,0,Hyundai,Tiburon (Coupe),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1997,0,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,80,13361,0,0,Hyundai,Tiburon (Coupe),Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1997,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,80,13362,0,0,Hyundai,Tiburon (Coupe),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1997,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,80,13363,0,0,Hyundai,Tiburon (Coupe),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.1795,0.0,Subcompact Cars,1997,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38022,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13364,0,10,Infiniti,J30,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57005,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13365,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1997,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57005,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13366,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1997,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13367,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1997,-4750,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13368,12,0,Mazda,MX-6,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1997,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13369,12,0,Mazda,MX-6,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1337,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13370,12,0,Mazda,MX-6,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1997,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13371,12,0,Mazda,MX-6,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Subcompact Cars,1997,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,13372,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.7436,0.0,Subcompact Cars,1997,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,13373,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1997,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,79,13374,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1997,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,13375,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1997,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,13376,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Subcompact Cars,1997,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,13377,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1997,-500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC-2 (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,13378,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1997,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC-4 (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,13379,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1997,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,95,1338,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC-4 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,13380,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1997,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC-2 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,13381,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1997,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,13382,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1997,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49053,DOHC-4 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,4,84,13383,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1997,-2500,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49054,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,4,84,13384,0,0,Mitsubishi,3000 GT Spyder,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0513,0.0,Subcompact Cars,1997,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,13385,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4110,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,84,13386,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,39.0,0.0,Subcompact Cars,1997,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4111,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,13387,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,84,13388,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1997,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13389,7,0,Rolls-Royce,Azure,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Subcompact Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,19,95,1339,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13390,12,0,Rolls-Royce,Continental T,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Subcompact Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"B204L3 (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13391,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1997,-2500,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"B204L3 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13392,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1997,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,B234I3 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13393,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1997,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,B234I3 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13394,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1997,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47005,B258I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13395,13,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1997,-2500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13396,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1997,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13397,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,47.0,0.0,Subcompact Cars,1997,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13398,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,47.0,0.0,Subcompact Cars,1997,1750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,13399,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.2821,0.0,Subcompact Cars,1997,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26060,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,81,134,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1340,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13400,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1997,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13401,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13402,11,11,Subaru,Impreza AWD,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1997,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13403,8,0,Subaru,SVX AWD,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1997,-4750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,54003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13404,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,54003,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13405,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Subcompact Cars,1997,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,81,13406,0,10,Suzuki,Swift,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1997,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54002,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,81,13407,0,10,Suzuki,Swift,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1997,4250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,77,13408,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,77,13409,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,44.8718,0.0,Subcompact Cars,1997,2250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1341,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,13410,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1997,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,13411,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1997,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13412,0,13,Toyota,Corolla,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1997,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13413,0,13,Toyota,Corolla,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.8718,0.0,Subcompact Cars,1997,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13414,0,13,Toyota,Corolla,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1997,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,13415,0,13,Toyota,Corolla,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,44.8718,0.0,Subcompact Cars,1997,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13416,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1997,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13417,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,48.0,0.0,Subcompact Cars,1997,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57007,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,13418,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,50.0,0.0,Subcompact Cars,1997,3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13419,8,0,Volkswagen,Cabrio,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1997,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1342,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13420,8,0,Volkswagen,Cabrio,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1997,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26045,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13421,0,14,Acura,2.5TL/3.2TL,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Compact Cars,1997,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26065,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13422,0,14,Acura,2.5TL/3.2TL,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1997,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64010,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13423,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1997,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64013,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13424,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,35.8974,0.0,Compact Cars,1997,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64013,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13425,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1997,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,64010,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13426,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,37.1795,0.0,Compact Cars,1997,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64013,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13427,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,35.0,0.0,Compact Cars,1997,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64013,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13428,0,14,Audi,A4 quattro,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1997,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13429,0,17,Audi,A6,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1997,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1343,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13430,0,16,Audi,A6 quattro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1997,-3750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,13431,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,12019,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,13432,0,0,BMW,318ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13433,0,11,BMW,528i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Compact Cars,1997,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,12028,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13434,0,11,BMW,528i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1997,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12044,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13435,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1997,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12044,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13436,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.0,0.0,30.7692,0.0,Compact Cars,1997,-6750,T,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4119,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13437,13,13,Buick,Skylark,Y,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0256,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13438,13,13,Buick,Skylark,Y,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Compact Cars,1997,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4123,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13439,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1997,500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1344,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4121,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13440,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,43.0,0.0,Compact Cars,1997,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4122,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13441,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1997,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13442,12,14,Chevrolet,Cavalier,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,44.0,0.0,Compact Cars,1997,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4119,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13443,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4120,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13444,12,14,Chevrolet,Cavalier,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1997,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13445,13,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13446,13,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Compact Cars,1997,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13447,13,0,Chrysler,Sebring,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Compact Cars,1997,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2311,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13448,11,0,Chrysler,Sebring Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1997,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2411,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13449,11,0,Chrysler,Sebring Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Compact Cars,1997,-2500,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1345,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2411,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13450,11,0,Chrysler,Sebring Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Compact Cars,1997,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13451,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1997,-1000,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13452,0,14,Nissan,Altima / Stanza,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1997,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13453,13,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19625,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13454,13,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Compact Cars,1997,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19641,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13455,13,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Compact Cars,1997,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13456,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,43.0,0.0,Compact Cars,1997,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,13457,12,12,Dodge,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,50.0,0.0,Compact Cars,1997,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3101,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13458,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13459,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1997,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,98,1346,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3140,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13460,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.0,0.0,Compact Cars,1997,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3141,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13461,0,14,Ford,Contour,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,38.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3081,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13462,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,44.0,0.0,Compact Cars,1997,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3080,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13463,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Compact Cars,1997,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33842,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13464,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.7436,0.0,Compact Cars,1997,500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33842,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13465,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1997,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33843,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13466,0,11,Kia,Sephia,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1997,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33843,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13467,0,11,Kia,Sephia,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Compact Cars,1997,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13468,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13469,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1997,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,98,1347,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize Cars,1985,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13470,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0256,0.0,Compact Cars,1997,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13471,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Compact Cars,1997,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26050,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13472,13,13,Honda,Accord,Y,false,89,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1997,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26507,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13473,0,13,Hyundai,Accent (SOHC),Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Compact Cars,1997,1750,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26507,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13474,0,13,Hyundai,Accent (SOHC),Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,47.0,0.0,Compact Cars,1997,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13475,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,40.0,0.0,Compact Cars,1997,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13476,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1997,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30558,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13477,0,13,Jaguar,XJ6,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1997,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13478,0,13,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Compact Cars,1997,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3101,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13479,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2249,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,96,1348,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Midsize Cars,1985,0,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13480,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1997,500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3140,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13481,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.0,0.0,Compact Cars,1997,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3141,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13482,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3081,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13483,0,13,Mercury,Tracer,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,44.0,0.0,Compact Cars,1997,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3080,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13484,0,13,Mercury,Tracer,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Compact Cars,1997,2250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,56051,(FFS) (S-CHARGE),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13485,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Compact Cars,1997,-3000,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13486,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Compact Cars,1997,-3000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13487,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.0,0.0,Compact Cars,1997,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56030,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13488,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1997,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13489,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,1349,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Midsize Cars,1985,0,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13490,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1997,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13491,0,12,Mercedes-Benz,C230,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.0,0.0,39.0,0.0,Compact Cars,1997,-1000,,EMS 2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,20015,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13492,0,12,Mercedes-Benz,C280,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1997,-3000,,EMS 2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,20025,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13493,0,12,Mercedes-Benz,C36 AMG,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1997,-3750,,EMS 2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20045,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13494,14,0,Mercedes-Benz,S500 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,28.0,0.0,Compact Cars,1997,-6750,T,EMS 2MODE,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20095,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13495,14,0,Mercedes-Benz,S600 Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,25.0,0.0,Compact Cars,1997,-9500,T,EMS 2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,96,13496,0,0,Mitsubishi,Galant,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1997,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19635,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,96,13497,0,0,Mitsubishi,Galant,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1997,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,19640,SOHC-V6 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,96,13498,0,0,Mitsubishi,Galant,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Compact Cars,1997,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13499,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Compact Cars,1997,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,81,135,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1350,0,17,Chrysler,New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC-3 (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,13500,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,51.2821,0.0,Compact Cars,1997,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13501,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.3077,0.0,Compact Cars,1997,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13502,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1997,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4119,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13503,14,14,Oldsmobile,Achieva,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0256,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4120,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13504,14,14,Oldsmobile,Achieva,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1997,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13505,14,14,Oldsmobile,Achieva,N,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,1997,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13506,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,43.0,0.0,Compact Cars,1997,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,13507,12,12,Plymouth,Neon,Y,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,50.0,0.0,Compact Cars,1997,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4119,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13508,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4120,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13509,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1997,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1351,0,17,Chrysler,New Yorker,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13510,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Compact Cars,1997,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4123,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13511,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1997,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4121,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13512,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,43.0,0.0,Compact Cars,1997,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4122,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13513,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,47.0,0.0,Compact Cars,1997,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13514,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,44.0,0.0,Compact Cars,1997,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4119,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13515,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4120,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13516,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.0,0.0,Compact Cars,1997,0,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13517,12,0,Rolls-Royce,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Compact Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13518,0,11,Saturn,SL,Y,false,0,77,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.0,0.0,Compact Cars,1997,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13519,0,11,Saturn,SL,Y,false,0,77,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,47.0,0.0,Compact Cars,1997,1750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2550,(FFS) CA model,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1352,0,15,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1985,-6750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13520,0,11,Saturn,SL,Y,false,0,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,47.0,0.0,Compact Cars,1997,1750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,13521,0,11,Saturn,SL,Y,false,0,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.2821,0.0,Compact Cars,1997,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13522,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1997,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13523,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Compact Cars,1997,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13524,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Compact Cars,1997,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13525,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Compact Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13526,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1997,-1000,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59006,"(DSL,TRBO)",-1,1600,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,17,88,13527,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,63.0,0.0,Compact Cars,1997,4000,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,13528,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1997,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,88,13529,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Compact Cars,1997,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1353,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,87,13530,0,0,Volkswagen,GTI VR6,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Compact Cars,1997,-2500,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59006,"(DSL,TRBO)",-1,1600,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,13531,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,63.0,0.0,Compact Cars,1997,4000,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13532,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1997,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13533,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Compact Cars,1997,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13534,0,15,Volkswagen,Jetta GLX,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1997,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13535,0,15,Volkswagen,Jetta GLX,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Compact Cars,1997,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13536,0,16,Volvo,960/S90,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Compact Cars,1997,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,26070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13537,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1997,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.7,Front-Wheel Drive,64014,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13538,0,18,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,64015,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13539,0,18,Audi,A8,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,32.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1354,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Midsize Cars,1985,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13540,0,17,Buick,Regal/Century,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13541,0,17,Buick,Regal/Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,38.0,0.0,Midsize Cars,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13542,17,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1997,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4113,(FFS) (MPFI) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13543,17,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1997,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,4103,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13544,0,14,Cadillac,Catera,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1997,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13545,15,0,Cadillac,Eldorado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13546,0,14,Cadillac,Seville,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13547,0,16,Chevrolet,Lumina/Monte Carlo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4114,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13548,0,16,Chevrolet,Lumina/Monte Carlo,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13549,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2149,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1355,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13550,0,16,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,39.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13551,0,16,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13552,0,16,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38020,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13553,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Midsize Cars,1997,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38020,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13554,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Midsize Cars,1997,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13555,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Midsize Cars,1997,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13556,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,48.0,0.0,Midsize Cars,1997,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2310,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13557,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,39.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13558,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,2410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13559,0,16,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1356,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3200,4V (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13560,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1997,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3180,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13561,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Front-Wheel Drive,3220,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13562,0,16,Ford,Taurus SHO,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3259,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13563,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1997,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13564,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1997,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13565,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1997,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13566,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Midsize Cars,1997,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26504,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13567,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1997,-3250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38021,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13568,0,14,Infiniti,I30,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1997,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38021,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13569,0,14,Infiniti,I30,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1997,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1357,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13570,0,13,Infiniti,Q45,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57005,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13571,0,13,Lexus,GS 300,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1997,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57009,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13572,0,14,Lexus,LS 400,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1997,-3750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3259,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13573,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1997,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13574,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3261,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13575,14,0,Lincoln,Mark VIII,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1997,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3200,4V (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13576,0,16,Mercury,Sable,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1997,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3180,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13577,0,16,Mercury,Sable,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13578,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.0,0.0,Midsize Cars,1997,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56045,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13579,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Midsize Cars,1997,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1358,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13580,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize Cars,1997,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56060,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13581,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Midsize Cars,1997,-3000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20090,(FFS),-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,13582,0,15,Mercedes-Benz,E300 Diesel,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.0,0.0,42.3077,0.0,Midsize Cars,1997,500,,EMS 2MODE,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13583,0,15,Mercedes-Benz,E320,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1997,-3000,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13584,0,15,Mercedes-Benz,E420,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,32.0,0.0,Midsize Cars,1997,-4750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,4102,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,102,13585,0,0,Oldsmobile,Aurora,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13586,0,16,Oldsmobile,Cutlass,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13587,16,16,Oldsmobile,Cutlass Supreme,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4114,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13588,16,16,Oldsmobile,Cutlass Supreme,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,49201,SOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13589,0,14,Mitsubishi,Diamante,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1997,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2550,(FFS) CA model,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1359,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1985,-6750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13590,0,16,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Midsize Cars,1997,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2210,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13591,0,16,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,48.0,0.0,Midsize Cars,1997,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13592,0,16,Pontiac,Grand Prix,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4109,(FFS) (MPFI) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13593,0,16,Pontiac,Grand Prix,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Midsize Cars,1997,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4105,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13594,0,16,Pontiac,Grand Prix,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,38.0,0.0,Midsize Cars,1997,-1750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13595,0,12,Rolls-Royce,Brooklands,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (L410MN2) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13596,0,12,Rolls-Royce,Brooklands,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Midsize Cars,1997,-13250,T,EMS 2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13597,0,12,Rolls-Royce,Turbo R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (L410MN2) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13598,0,12,Rolls-Royce,Silver Dawn,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.7949,0.0,Midsize Cars,1997,-13250,T,EMS 2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13599,0,12,Rolls-Royce,Silver Spur,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1997,-13250,T,EMS 3MODE,T,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,26000,,-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,70,136,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.2222,0.0,54.0,0.0,Subcompact Cars,1985,4000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,98,1360,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"B204L3 (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,92,13600,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1997,-2500,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47003,"B204L3 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,92,13601,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Midsize Cars,1997,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,B234I3 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,92,13602,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1997,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47004,B234I3 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,13603,0,0,Saab,900,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1997,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,47005,B258I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,13604,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1997,-2500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13605,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.0,0.0,Midsize Cars,1997,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13606,0,14,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Midsize Cars,1997,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13607,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1997,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13608,0,14,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Midsize Cars,1997,-1000,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59006,"(DSL,TRBO)",-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,13609,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,60.0,0.0,Midsize Cars,1997,3750,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,98,1361,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13610,0,14,Volkswagen,Passat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13611,0,14,Volkswagen,Passat,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1997,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60020,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13612,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1997,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13613,0,14,Volvo,850,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-2250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13614,0,14,Volvo,850,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Midsize Cars,1997,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13615,0,14,Volvo,850,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1997,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,12044,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13616,0,13,BMW,740il,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,30.7692,0.0,Large Cars,1997,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,12054,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13617,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,25.0,0.0,Large Cars,1997,-8000,T,2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4100,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13618,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,38.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13619,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2249,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,1362,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.3077,0.0,Midsize Cars,1985,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4113,(FFS) (MPFI) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13620,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1997,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4101,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13621,0,20,Cadillac,DeVille,Y,false,0,117,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1997,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13622,0,17,Chrysler,Concorde,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13623,0,17,Chrysler,Concorde,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13624,0,18,Chrysler,New Yorker/LHS,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13625,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13626,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13627,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-3250,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13628,0,17,Eagle,Vision,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13629,0,17,Eagle,Vision,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-3250,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,1363,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,42.3077,0.0,Midsize Cars,1985,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13630,0,17,Eagle,Vision,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Large Cars,1997,-2500,,CLKUP,,,,,,, +0.10329200000000001,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,390.55555555555554,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3290,(NGV) (FFS),-1,1750,0,CNG,Natural Gas,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13631,0,21,Ford,Crown Victoria CNG,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1997,3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13632,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,3320,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13633,0,18,Lincoln,Continental,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1997,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13634,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13635,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13636,0,16,Mercedes-Benz,S320,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1997,-4750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13637,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,31.0,0.0,Large Cars,1997,-4750,,EMS 2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20040,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13638,0,16,Mercedes-Benz,S420,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7778,0.0,28.0,0.0,Large Cars,1997,-6750,T,EMS 2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20045,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13639,0,16,Mercedes-Benz,S500,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,26.9231,0.0,Large Cars,1997,-6750,T,EMS 2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1364,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20095,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13640,0,16,Mercedes-Benz,S600,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,24.0,0.0,Large Cars,1997,-9500,T,EMS 2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4113,(FFS) (MPFI) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13641,0,18,Oldsmobile,Eighty-Eight/Regency,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1997,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13642,0,18,Oldsmobile,Eighty-Eight/Regency,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4109,(FFS) (MPFI) (S-CHARGE),-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13643,0,18,Pontiac,Bonneville,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Large Cars,1997,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4116,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13644,0,18,Pontiac,Bonneville,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1997,-1750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (L410MN2) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13645,0,12,Rolls-Royce,Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Large Cars,1997,-13250,T,EMS 2MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (L410MT2) (FFS,TRBO)",-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,13646,0,12,Rolls-Royce,Park Ward,N,false,0,120,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.9487,0.0,Large Cars,1997,-15500,T,EMS 3MODE,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (L410MN2) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13647,0,12,Rolls-Royce,Silver Spur Limousine,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.0,0.0,Large Cars,1997,-13250,T,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47002,"B234E4 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,13648,0,0,Saab,9000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1997,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47006,"B234L/R4 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,13649,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1997,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1365,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize Cars,1985,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47006,"B234L/R4 (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,13650,0,0,Saab,9000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Large Cars,1997,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47002,"B234E4 (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,99,13651,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Large Cars,1997,-1000,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,47001,B308I4 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,13652,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1997,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13653,0,15,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,39.7436,0.0,Large Cars,1997,-500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13654,0,34,Audi,A6 quattro Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Small Station Wagons,1997,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13655,0,34,Audi,A6 Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1997,-3750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3081,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13656,0,31,Ford,Escort Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1997,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3080,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13657,0,31,Ford,Escort Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Small Station Wagons,1997,2250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,26,94,13658,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Small Station Wagons,1997,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26034,(VTEC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,26,94,13659,0,0,Honda,Accord Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Small Station Wagons,1997,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1366,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,26,94,13660,0,0,Honda,Accord Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Station Wagons,1997,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,95,13661,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Small Station Wagons,1997,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,95,13662,0,0,Hyundai,Elantra Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Small Station Wagons,1997,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3081,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13663,0,31,Mercury,Tracer Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1997,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3080,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13664,0,31,Mercury,Tracer Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Small Station Wagons,1997,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13665,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.0,0.0,Small Station Wagons,1997,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,13666,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Small Station Wagons,1997,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4106,DOHC (FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,13667,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,47.0,0.0,Small Station Wagons,1997,1750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,SOHC (FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,13668,0,29,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.0,0.0,Small Station Wagons,1997,2250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13669,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1997,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3350,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1367,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13670,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Station Wagons,1997,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,92,13671,0,0,Volvo,960 Wagon/V90,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Small Station Wagons,1997,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3201,(4-VLV) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13672,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1997,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3181,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13673,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,46,107,13674,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1997,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,46,107,13675,0,0,Isuzu,Oasis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1997,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3201,(4-VLV) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13676,0,38,Mercury,Sable Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1997,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3181,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13677,0,38,Mercury,Sable Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1997,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13678,0,36,Subaru,Legacy Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Midsize-Large Station Wagons,1997,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13679,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1997,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1368,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13680,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1997,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13681,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1997,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13682,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1997,-1000,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,59006,"(DSL,TRBO)",-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,13683,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,60.0,0.0,Midsize-Large Station Wagons,1997,3750,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13684,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13685,0,34,Volkswagen,Passat Wagon,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1997,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,60020,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,99,13686,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1997,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60040,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,99,13687,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1997,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,13688,0,0,Volvo,850 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1997,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,60030,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,13689,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1997,-2250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27915,(GUZZLER) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1369,0,15,Mercedes-Benz,500SE,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Midsize Cars,1985,-7750,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4118,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13690,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Small Pickup Trucks,1997,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13691,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1997,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13692,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13693,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1997,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13694,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1997,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13695,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Small Pickup Trucks,1997,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4118,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13696,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Small Pickup Trucks,1997,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13697,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1997,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13698,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13699,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1997,-2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,70,137,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,36.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27915,(GUZZLER) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1370,0,15,Mercedes-Benz,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Midsize Cars,1985,-7750,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4117,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,13700,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks,1997,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13701,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0513,0.0,Small Pickup Trucks,1997,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13702,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Small Pickup Trucks,1997,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13703,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Small Pickup Trucks,1997,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13704,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1997,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13705,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13706,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13707,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13708,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13709,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3350,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1371,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4812,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13710,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13711,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13712,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13713,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4812,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13714,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +27.288009000000002,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,727.1428571428571,14,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4810,"(DSL,TRBO) (MPFI)",-1,4250,0,Diesel,Diesel,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13715,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13716,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1997,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13717,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13718,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13719,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1372,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13720,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13721,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13722,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13723,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13724,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1997,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13725,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,3760,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13726,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,3761,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13727,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13728,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3800,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13729,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4460,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1373,16,16,Oldsmobile,Cutlass Ciera,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3861,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13730,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3805,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13731,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3806,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13732,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1997,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3862,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13733,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13734,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0513,0.0,Standard Pickup Trucks,1997,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3602,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13735,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Standard Pickup Trucks,1997,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3623,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13736,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3622,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13737,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3703,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13738,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3702,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13739,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4462,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1374,16,16,Oldsmobile,Cutlass Ciera,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13740,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13741,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1997,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13742,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13743,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13744,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4812,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13745,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13746,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4808,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13747,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13748,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4812,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13749,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4450,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1375,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1985,-3250,,,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,4810,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13750,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3621,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13751,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13752,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0513,0.0,Standard Pickup Trucks,1997,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3603,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13753,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Standard Pickup Trucks,1997,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3624,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13754,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3704,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13755,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3701,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13756,0,0,Mazda,B2300/B3000/B4000 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57013,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13757,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,29.0,0.0,Standard Pickup Trucks,1997,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13758,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13759,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4337,(GM-OLDS) (FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1376,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13760,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13761,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13762,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4806,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13763,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4807,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13764,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Standard Pickup Trucks,1997,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13765,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13766,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-9250,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13767,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13768,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13769,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4330,(GM-OLDS) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1377,15,0,Oldsmobile,Toronado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13770,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13771,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13772,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13773,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13774,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13775,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13776,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13777,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1997,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,3780,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13778,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,3781,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13779,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1378,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize Cars,1985,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,3820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13780,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,3821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13781,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,3880,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13782,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,3822,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13783,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,3824,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13784,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,3881,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13785,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1997,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3643,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13786,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3641,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13787,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3724,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13788,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3726,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13789,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1379,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13790,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13791,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1997,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4806,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13792,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4807,(FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13793,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Standard Pickup Trucks,1997,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13794,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4811,(350 V8) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13795,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1997,-9250,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13796,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1997,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13797,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13798,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3642,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13799,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,70,138,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1985,2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1380,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,3640,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13800,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3723,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13801,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3725,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13802,0,0,Mazda,B2300/B3000/B4000 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13803,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1997,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13804,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1997,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13805,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1997,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13806,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13807,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1997,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13808,0,0,Toyota,T100 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1997,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13809,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2550,(FFS) CA model,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1381,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1985,-6750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13810,0,0,Chevrolet,Astro 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1997,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13811,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13812,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13813,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13814,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1997,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13815,0,0,Dodge,B1500/B2500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1997,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13816,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13817,0,0,Dodge,B1500/B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13818,0,0,Dodge,B3500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13819,0,0,Dodge,B3500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1382,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3625,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13820,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1997,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,3762,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13821,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3803,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13822,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3865,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13823,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0769,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,3764,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13824,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3863,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13825,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13826,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13827,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13828,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13829,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1997,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1383,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Midsize Cars,1985,500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13830,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1997,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13831,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13832,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1997,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13833,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13834,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13835,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13836,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1997,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13837,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13838,0,0,Dodge,B1500/B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13839,0,0,Dodge,B3500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.2308,0.0,Vans,1997,-11000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2149,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1384,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13840,0,0,Dodge,B3500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1997,-13000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3721,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13841,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3620,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13842,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Vans,1997,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3705,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13843,0,0,Ford,Aerostar Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,28.0,0.0,Vans,1997,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,3763,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13844,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3802,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13845,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3864,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13846,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Vans,1997,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13847,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4809,(FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13848,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13849,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1385,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13850,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13851,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57011,(FFS) (S-CHARGE),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13852,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Vans,1997,-4250,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57011,(FFS) (S-CHARGE),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13853,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Vans,1997,-4250,,,,S,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59005,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13854,0,0,Volkswagen,Eurovan Camper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1997,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13855,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13856,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-2500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13857,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13858,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4108,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13859,0,0,Chevrolet,Venture 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Special Purpose Vehicles,1997,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1386,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13860,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1997,-5250,,2MODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13861,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.0,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13862,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13863,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13864,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13865,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13866,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13867,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13868,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2850,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13869,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1387,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2870,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13870,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2880,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13871,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3804,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13872,0,0,Ford,Expedition 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3860,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13873,0,0,Ford,Expedition 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3740,(SOHC) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13874,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3706,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13875,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,24.359,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3700,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13876,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1997,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13877,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3627,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13878,0,0,Ford,Windstar FWD Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3681,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13879,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4450,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1388,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3626,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13880,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3680,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13881,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,33882,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13882,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,33882,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13883,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1997,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13884,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3660,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13885,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3661,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13886,0,0,Mercury,Villager FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13887,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13888,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13889,0,0,Geo,Tracker Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1389,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13890,0,0,Geo,Tracker Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13891,0,0,GMC,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4805,(350 V8) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13892,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4803,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13893,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4804,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13894,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13895,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicles,1997,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29080,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13896,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29080,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13897,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13898,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicles,1997,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29081,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13899,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,139,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4450,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1390,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1985,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,29081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13900,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13901,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4108,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13902,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Special Purpose Vehicles,1997,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13903,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13904,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13905,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13906,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,54082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13907,0,0,Suzuki,Sidekick Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13908,0,0,Suzuki,Sidekick Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13909,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1391,16,0,Pontiac,Grand Prix,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13910,0,0,Suzuki,Sidekick 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13911,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13912,0,0,Suzuki,Sidekick 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4108,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13913,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Special Purpose Vehicles,1997,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13914,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicles,1997,0,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13915,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Special Purpose Vehicles,1997,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57013,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13916,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13917,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1997,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13918,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1997,-4250,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13919,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1392,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize Cars,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13920,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-6250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13921,0,0,Chevrolet,Blazer AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13922,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13923,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1997,-4250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13924,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1997,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13925,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13926,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13927,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,VLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13928,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13929,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1393,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0513,0.0,Midsize Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13930,0,0,Dodge,Caravan/Grand Caravan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2971,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13931,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2980,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13932,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,3823,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13933,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,3882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13934,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1997,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3750,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13935,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3722,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13936,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3720,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13937,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3851,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13938,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33882,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13939,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1997,-3250,,2MODE CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1394,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,33882,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,13940,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1997,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13941,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13942,0,0,Infiniti,QX4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57015,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13943,0,0,Lexus,LX 450,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1997,-9250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13944,0,0,Geo,Tracker Convertible 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13945,0,0,Geo,Tracker Convertible 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13946,0,0,Geo,Tracker Van 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13947,0,0,Geo,Tracker Van 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13948,0,0,GMC,Jimmy AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13949,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4406,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1395,16,16,Buick,Electra/Park Avenue,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4801,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13950,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1997,-4250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13951,0,0,GMC,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1997,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4802,(350 V8) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13952,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,4813,"(DSL,TRBO) (MPFI)",-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13953,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13954,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13955,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13956,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-7750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13957,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,23.0,0.0,Special Purpose Vehicles,1997,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13958,0,0,Honda,Passport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1997,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13959,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-5250,,SIL,,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4310,CA model,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1396,16,16,Buick,Electra/Park Avenue,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46082,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13960,0,0,Land Rover,Defender 90,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,19.0,0.0,Special Purpose Vehicles,1997,-11250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13961,0,0,Land Rover,Discovery,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1997,-9500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13962,0,0,Land Rover,Discovery,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1997,-11250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,46081,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,13963,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1997,-11250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,46091,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,13964,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1997,-13250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13965,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,SOHC-2 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13966,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,49099,SOHC-4 (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13967,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,49099,SOHC-4 (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13968,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13969,0,0,Mazda,MPV 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1997,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4451,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1397,21,21,Buick,LeSabre,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Large Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13970,0,0,Suzuki,Sidekick Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13971,0,0,Suzuki,Sidekick Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13972,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13973,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13974,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1997,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13975,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,33.0,0.0,Special Purpose Vehicles,1997,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4800,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13976,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.5,4-Wheel or All-Wheel Drive,57015,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13977,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,19.2308,0.0,Special Purpose Vehicles,1997,-9250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13978,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,33.3333,0.0,Special Purpose Vehicles,1997,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13979,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Special Purpose Vehicles,1997,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4337,(GM-OLDS) (FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1398,21,21,Buick,LeSabre,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Large Cars,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13980,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1997,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13981,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1997,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,13982,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1997,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,13983,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13984,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8733,0.0,30.3612,0.0,Two Seaters,1998,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13985,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,30.1295,0.0,Two Seaters,1998,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,ASTON-DB7,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13986,0,0,Aston Martin,DB7 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,26.2,0.0,Two Seaters,1998,-8000,G,CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,ASTON-DB7,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13987,0,0,Aston Martin,DB7 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.3,0.0,Two Seaters,1998,-8000,G,,,S,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,ASTON-DB7,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13988,0,0,Aston Martin,DB7 Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,26.2,0.0,Two Seaters,1998,-8000,G,CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,ASTON-DB7,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,13989,0,0,Aston Martin,DB7 Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.3,0.0,Two Seaters,1998,-8000,G,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1399,16,16,Cadillac,Fleetwood/DeVille (FWD),N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Large Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,13990,0,0,BMW,M Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,36.0,0.0,Two Seaters,1998,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,13991,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.966,0.0,39.1636,0.0,Two Seaters,1998,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,13992,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7315,0.0,41.0884,0.0,Two Seaters,1998,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,13993,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,31.2,0.0,Two Seaters,1998,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,13994,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,33.2,0.0,Two Seaters,1998,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,13995,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,31.7776,0.0,Two Seaters,1998,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,13996,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8564,0.0,34.8859,0.0,Two Seaters,1998,-3750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13997,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9514,0.0,27.0565,0.0,Two Seaters,1998,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,13998,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9514,0.0,27.0565,0.0,Two Seaters,1998,-11250,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,13999,0,0,Ferrari,Ferrari 550 Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,18.9,0.0,Two Seaters,1998,-18250,G,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3130,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,43.0,0.0,Two Seaters,1985,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,140,9,0,Honda,Prelude,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,40.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4310,CA model,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1400,16,16,Cadillac,Fleetwood/DeVille (FWD),N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14000,0,0,Ferrari,Ferrari F355/355 F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,10.9991,0.0,17.9728,0.0,Two Seaters,1998,-15500,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,14001,0,0,Ferrari,Ferrari F355/355 F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.1,0.0,19.6,0.0,Two Seaters,1998,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14002,0,0,Lamborghini,DB132/144 Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.9,0.0,17.3,0.0,Two Seaters,1998,-18250,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,V8,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14003,0,0,Lotus,98 Esrit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2,0.0,29.5,0.0,Two Seaters,1998,-6750,G,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14004,8,0,Mercedes-Benz,SL500,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,29.4,0.0,Two Seaters,1998,-5750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14005,8,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,25.3,0.0,Two Seaters,1998,-9500,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14006,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3899,0.0,30.623,0.0,Two Seaters,1998,-5750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14007,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,33.9499,0.0,Two Seaters,1998,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14008,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8657,0.0,34.874,0.0,Two Seaters,1998,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14009,0,0,Suzuki,X-90 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5634,0.0,35.8814,0.0,Two Seaters,1998,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4167,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1401,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,30.0,0.0,Large Cars,1985,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14010,0,0,Suzuki,X-90 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8641,0.0,34.8807,0.0,Two Seaters,1998,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14011,0,0,Suzuki,X-90 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6179,0.0,35.9288,0.0,Two Seaters,1998,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14012,7,0,Audi,Cabriolet,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7,0.0,Minicompact Cars,1998,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14013,9,0,BMW,323i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8956,0.0,34.6788,0.0,Minicompact Cars,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14014,9,0,BMW,323i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4856,0.0,38.3202,0.0,Minicompact Cars,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14015,9,0,BMW,328i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4924,0.0,33.4147,0.0,Minicompact Cars,1998,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14016,9,0,BMW,328i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.821,0.0,36.5059,0.0,Minicompact Cars,1998,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14017,0,9,BMW,M3 Convertible,Y,false,0,74,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,32.1,0.0,Minicompact Cars,1998,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14018,0,9,BMW,M3 Convertible,N,false,0,74,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,36.0,0.0,Minicompact Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14019,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8157,0.0,30.6253,0.0,Minicompact Cars,1998,-4750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4167,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1402,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,5,74,14020,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,33.3333,0.0,Minicompact Cars,1998,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,5,74,14021,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,40.1,0.0,Minicompact Cars,1998,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,5,74,14022,0,0,Mitsubishi,Eclipse Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7922,0.0,36.0357,0.0,Minicompact Cars,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,5,74,14023,0,0,Mitsubishi,Eclipse Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.375,0.0,38.0046,0.0,Minicompact Cars,1998,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14024,9,0,Nissan,240SX,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7006,0.0,34.0476,0.0,Minicompact Cars,1998,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14025,9,0,Nissan,240SX,Y,false,71,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,35.4,0.0,Minicompact Cars,1998,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14026,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4462,0.0,30.3344,0.0,Minicompact Cars,1998,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14027,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5499,0.0,31.9,0.0,Minicompact Cars,1998,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14028,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8157,0.0,29.1335,0.0,Minicompact Cars,1998,-5750,G,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14029,7,0,Toyota,Celica Convertible,Y,false,67,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4839,0.0,38.3624,0.0,Minicompact Cars,1998,0,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1403,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Large Cars,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14030,7,0,Toyota,Celica Convertible,N,false,67,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.342,0.0,35.6032,0.0,Minicompact Cars,1998,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14031,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.7476,0.0,40.7848,0.0,Minicompact Cars,1998,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14032,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.3167,0.0,44.9583,0.0,Minicompact Cars,1998,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14033,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.7476,0.0,40.7848,0.0,Minicompact Cars,1998,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14034,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.9,0.0,44.2,0.0,Minicompact Cars,1998,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,14035,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,31.2,0.0,Minicompact Cars,1998,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,10,69,14036,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,29.5,0.0,Minicompact Cars,1998,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,69,14037,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5337,0.0,30.8528,0.0,Minicompact Cars,1998,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC VTEC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14038,12,0,Acura,2.3CL/3.0CL,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,37.9,0.0,Subcompact Cars,1998,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC VTEC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14039,12,0,Acura,2.3CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,40.2,0.0,Subcompact Cars,1998,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4451,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1404,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Large Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14040,12,0,Acura,2.3CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7329,0.0,35.8658,0.0,Subcompact Cars,1998,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,14041,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7776,0.0,40.2978,0.0,Subcompact Cars,1998,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,14042,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8144,0.0,40.1853,0.0,Subcompact Cars,1998,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC-VTEC,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,14043,0,12,Acura,Integra,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1393,0.0,39.1155,0.0,Subcompact Cars,1998,-500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14044,7,0,Bentley,Azure,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Subcompact Cars,1998,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14045,11,0,Bentley,Continental SC,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Subcompact Cars,1998,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14046,12,0,Bentley,Continental T,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3846,0.0,20.3127,0.0,Subcompact Cars,1998,-13250,G,EMS 2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14047,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,39.7,0.0,Subcompact Cars,1998,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14048,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7315,0.0,41.0884,0.0,Subcompact Cars,1998,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14049,9,0,BMW,323is,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8956,0.0,34.6788,0.0,Subcompact Cars,1998,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4337,(GM-OLDS) (FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1405,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Large Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14050,9,0,BMW,323is,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4856,0.0,38.3202,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14051,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4924,0.0,33.4147,0.0,Subcompact Cars,1998,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14052,9,10,BMW,328i/328is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.821,0.0,36.5059,0.0,Subcompact Cars,1998,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14053,9,10,BMW,M3,N,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,36.1,0.0,Subcompact Cars,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14054,9,10,BMW,M3,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,36.0,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,14055,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0253,0.0,36.917,0.0,Subcompact Cars,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,82,14056,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3884,0.0,38.8496,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,82,14057,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7041,0.0,31.6751,0.0,Subcompact Cars,1998,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,82,14058,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7868,0.0,34.7615,0.0,Subcompact Cars,1998,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14059,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.8,0.0,37.5,0.0,Subcompact Cars,1998,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4406,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1406,16,16,Oldsmobile,Ninety-Eight Regency,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14060,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7028,0.0,39.7888,0.0,Subcompact Cars,1998,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14061,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,43.6,0.0,Subcompact Cars,1998,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14062,12,14,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6254,0.0,41.5008,0.0,Subcompact Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14063,12,14,Chevrolet,Cavalier,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,1998,500,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,81,14064,0,10,Chevrolet,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.9244,0.0,63.1646,0.0,Subcompact Cars,1998,5000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,81,14065,0,10,Chevrolet,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.4745,0.0,44.0837,0.0,Subcompact Cars,1998,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,81,14066,0,10,Chevrolet,Metro,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.2225,0.0,54.9276,0.0,Subcompact Cars,1998,4250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,14067,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0639,0.0,38.9952,0.0,Subcompact Cars,1998,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,14068,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.2,0.0,Subcompact Cars,1998,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,14069,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.8,0.0,Subcompact Cars,1998,-3750,,,T,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4310,CA model,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1407,16,16,Oldsmobile,Ninety-Eight Regency,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,14070,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0864,0.0,39.0532,0.0,Subcompact Cars,1998,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,14071,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.2,0.0,Subcompact Cars,1998,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,14072,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.8,0.0,Subcompact Cars,1998,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,14073,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2823,0.0,42.7594,0.0,Subcompact Cars,1998,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,14074,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,40.2,0.0,Subcompact Cars,1998,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,14075,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.6,0.0,Subcompact Cars,1998,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,14076,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0045,0.0,42.1509,0.0,Subcompact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,14077,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,40.2,0.0,Subcompact Cars,1998,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,14078,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.6,0.0,Subcompact Cars,1998,-2250,,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,14079,7,0,Ferrari,Ferrari 456 GT/GTA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,1998,-15500,G,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4167,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1408,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,30.0,0.0,Large Cars,1985,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14080,7,0,Ferrari,Ferrari 456 GT/GTA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,1998,-15500,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4V,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14081,12,0,Ford,Escort ZX2,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9229,0.0,42.5144,0.0,Subcompact Cars,1998,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4V,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14082,12,0,Ford,Escort ZX2,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5139,0.0,42.3518,0.0,Subcompact Cars,1998,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14083,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1338,0.0,35.9473,0.0,Subcompact Cars,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14084,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5829,0.0,37.4137,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14085,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9355,0.0,30.8113,0.0,Subcompact Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14086,11,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.317,0.0,33.2959,0.0,Subcompact Cars,1998,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14087,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7317,0.0,32.4813,0.0,Subcompact Cars,1998,-3250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,86,14088,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.9365,0.0,45.9531,0.0,Subcompact Cars,1998,2250,,CLKUP,,,,,,, +0.06882,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,260.3703703703704,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,CNG,-1,1150,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,86,14089,12,9,Honda,Civic CNG,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,43.8,0.0,Subcompact Cars,1998,6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4167,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1409,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1985,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,14090,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6,0.0,44.6,0.0,Subcompact Cars,1998,1750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,13,86,14091,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.5383,0.0,47.7721,0.0,Subcompact Cars,1998,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,14092,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,45.0,0.0,Subcompact Cars,1998,2250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,14093,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.0242,0.0,49.4123,0.0,Subcompact Cars,1998,3000,,,,,,,,, +9.690534,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,14094,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.6472,0.0,55.8537,0.0,Subcompact Cars,1998,4000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14095,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7794,0.0,34.8465,0.0,Subcompact Cars,1998,-2250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14096,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0392,0.0,34.1086,0.0,Subcompact Cars,1998,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14097,13,0,Hyundai,Tiburon,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,37.6483,0.0,Subcompact Cars,1998,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14098,13,0,Hyundai,Tiburon,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6751,0.0,39.4556,0.0,Subcompact Cars,1998,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14099,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3979,0.0,31.6987,0.0,Subcompact Cars,1998,-4750,,EMS 2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,141,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.3333,0.0,Subcompact Cars,1985,-1000,,VLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1410,0,21,Pontiac,Parisienne,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Large Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14100,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8228,0.0,30.3997,0.0,Subcompact Cars,1998,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14101,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6326,0.0,31.896,0.0,Subcompact Cars,1998,-3750,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14102,11,0,Mercedes-Benz,CLK320,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3,0.0,37.5,0.0,Subcompact Cars,1998,-1750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,82,14103,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,29.6499,0.0,Subcompact Cars,1998,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,DOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14104,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.8,0.0,Subcompact Cars,1998,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14105,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,31.1,0.0,Subcompact Cars,1998,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,DOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,14106,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,31.7,0.0,Subcompact Cars,1998,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14107,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,31.2,0.0,Subcompact Cars,1998,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,DOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,4,84,14108,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7468,0.0,30.0433,0.0,Subcompact Cars,1998,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,4,84,14109,0,0,Mitsubishi,3000 GT Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,31.4499,0.0,Subcompact Cars,1998,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1411,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,14110,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0246,0.0,38.9003,0.0,Subcompact Cars,1998,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,14111,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.8,0.0,Subcompact Cars,1998,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,14112,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.2,0.0,Subcompact Cars,1998,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,14113,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0045,0.0,42.1509,0.0,Subcompact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-T/C,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,14114,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,40.2,0.0,Subcompact Cars,1998,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-T/C,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,14115,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.6,0.0,Subcompact Cars,1998,-2250,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14116,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.638,0.0,45.6975,0.0,Subcompact Cars,1998,2250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14117,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.7923,0.0,51.4087,0.0,Subcompact Cars,1998,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14118,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8911,0.0,42.1686,0.0,Subcompact Cars,1998,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14119,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6779,0.0,46.7048,0.0,Subcompact Cars,1998,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1412,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1985,1000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14120,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.7,0.0,46.1387,0.0,Subcompact Cars,1998,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,14121,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.5205,0.0,49.4613,0.0,Subcompact Cars,1998,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14122,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5499,0.0,37.9,0.0,Subcompact Cars,1998,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14123,10,11,Nissan,Sentra/200SX,N,false,84,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2532,0.0,39.1535,0.0,Subcompact Cars,1998,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,14124,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0196,0.0,36.9132,0.0,Subcompact Cars,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,84,14125,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3803,0.0,38.8143,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,84,14126,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4585,0.0,30.9828,0.0,Subcompact Cars,1998,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,84,14127,0,0,Pontiac,Firebird/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2652,0.0,33.8297,0.0,Subcompact Cars,1998,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14128,11,13,Pontiac,Sunfire,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.8,0.0,37.5,0.0,Subcompact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14129,11,13,Pontiac,Sunfire,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7028,0.0,39.7888,0.0,Subcompact Cars,1998,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1413,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14130,11,13,Pontiac,Sunfire,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,43.6,0.0,Subcompact Cars,1998,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14131,11,13,Pontiac,Sunfire,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5052,0.0,41.5,0.0,Subcompact Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14132,11,13,Pontiac,Sunfire,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,1998,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14133,13,0,Saab,900SE Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.3,0.0,Subcompact Cars,1998,-2500,,2MODE,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14134,13,0,Saab,900S Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,35.7,0.0,Subcompact Cars,1998,-500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14135,13,0,Saab,900SE Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.1,0.0,Subcompact Cars,1998,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14136,13,0,Saab,900S Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.6,0.0,Subcompact Cars,1998,-1750,,2MODE,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14137,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1548,0.0,43.2237,0.0,Subcompact Cars,1998,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14138,11,0,Saturn,SC,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9659,0.0,47.4712,0.0,Subcompact Cars,1998,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14139,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6986,0.0,46.0497,0.0,Subcompact Cars,1998,1500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1414,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1985,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14140,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1987,0.0,50.3379,0.0,Subcompact Cars,1998,2250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14141,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.823,0.0,37.8344,0.0,Subcompact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14142,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0748,0.0,37.8826,0.0,Subcompact Cars,1998,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14143,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,35.285,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14144,11,11,Subaru,Impreza AWD,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,35.8,0.0,Subcompact Cars,1998,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14145,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,43.4,0.0,Subcompact Cars,1998,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14146,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,47.1,0.0,Subcompact Cars,1998,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,81,14147,0,10,Suzuki,Swift,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.4745,0.0,44.0837,0.0,Subcompact Cars,1998,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,81,14148,0,10,Suzuki,Swift,Y,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.2225,0.0,54.9276,0.0,Subcompact Cars,1998,4250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,14149,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3524,0.0,36.5175,0.0,Subcompact Cars,1998,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4127,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1415,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Small Station Wagons,1985,500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,14150,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.342,0.0,35.6032,0.0,Subcompact Cars,1998,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14151,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.7,0.0,42.2,0.0,Subcompact Cars,1998,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14152,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,47.7,0.0,Subcompact Cars,1998,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,14153,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.6841,0.0,49.3858,0.0,Subcompact Cars,1998,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14154,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1323,0.0,36.5449,0.0,Subcompact Cars,1998,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14155,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.121,0.0,39.7864,0.0,Subcompact Cars,1998,500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,12,87,14156,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.1,0.0,55.9,0.0,Subcompact Cars,1998,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,12,87,14157,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.4,0.0,62.0,0.0,Subcompact Cars,1998,4250,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,87,14158,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,34.1,0.0,Subcompact Cars,1998,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,87,14159,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.7,0.0,Subcompact Cars,1998,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4153,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1416,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14160,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1633,0.0,32.5155,0.0,Subcompact Cars,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14161,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5468,0.0,32.7487,0.0,Subcompact Cars,1998,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14162,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7429,0.0,32.73,0.0,Subcompact Cars,1998,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,SOHC L-5,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14163,0,14,Acura,2.5TL/3.2TL,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,32.1,0.0,Compact Cars,1998,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC V-6,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14164,0,14,Acura,2.5TL/3.2TL,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,30.3,0.0,Compact Cars,1998,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14165,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9593,0.0,40.0868,0.0,Compact Cars,1998,-1750,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14166,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,40.7,0.0,Compact Cars,1998,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14167,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1794,0.0,37.4496,0.0,Compact Cars,1998,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14168,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,37.4,0.0,Compact Cars,1998,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14169,0,14,Audi,A4 quattro,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5471,0.0,35.1984,0.0,Compact Cars,1998,-3000,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1417,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Small Station Wagons,1985,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14170,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,37.4,0.0,Compact Cars,1998,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14171,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4283,0.0,34.9482,0.0,Compact Cars,1998,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14172,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3655,0.0,34.2658,0.0,Compact Cars,1998,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14173,12,0,Bentley,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3846,0.0,20.3127,0.0,Compact Cars,1998,-13250,G,EMS 2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,87,14174,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.966,0.0,39.1636,0.0,Compact Cars,1998,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,14175,0,0,BMW,318ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7315,0.0,41.0884,0.0,Compact Cars,1998,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14176,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4924,0.0,33.4147,0.0,Compact Cars,1998,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14177,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.821,0.0,36.5059,0.0,Compact Cars,1998,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14178,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4928,0.0,30.8929,0.0,Compact Cars,1998,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14179,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,30.1499,0.0,Compact Cars,1998,-5250,G,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1418,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14180,13,13,Buick,Skylark,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5344,0.0,41.5002,0.0,Compact Cars,1998,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14181,13,13,Buick,Skylark,Y,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9571,0.0,37.2393,0.0,Compact Cars,1998,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14182,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.957,0.0,41.9033,0.0,Compact Cars,1998,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14183,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6209,0.0,45.6812,0.0,Compact Cars,1998,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14184,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.2666,0.0,47.9643,0.0,Compact Cars,1998,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14185,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2987,0.0,37.9467,0.0,Compact Cars,1998,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14186,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2987,0.0,37.9467,0.0,Compact Cars,1998,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14187,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0996,0.0,40.191,0.0,Compact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14188,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0996,0.0,40.191,0.0,Compact Cars,1998,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14189,12,0,Chrysler,Sebring,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.4121,0.0,Compact Cars,1998,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1419,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14190,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.4121,0.0,Compact Cars,1998,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14191,11,0,Chrysler,JX/JXI/Limited Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0969,0.0,38.8536,0.0,Compact Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14192,11,0,Chrysler,JX/JXI/Limited Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,36.7,0.0,Compact Cars,1998,-1750,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14193,11,0,Chrysler,JX/JXI/Limited Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1628,0.0,35.47,0.0,Compact Cars,1998,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,91,14194,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,47.4359,0.0,Compact Cars,1998,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,14195,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,45.8,0.0,Compact Cars,1998,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,91,14196,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5556,0.0,43.6821,0.0,Compact Cars,1998,500,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,14197,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,46.0,0.0,Compact Cars,1998,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,11,91,14198,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,43.6821,0.0,Compact Cars,1998,1000,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,91,14199,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,41.0256,0.0,Compact Cars,1998,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,142,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,1420,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,48.0,0.0,Small Station Wagons,1985,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,14200,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Compact Cars,1998,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,14201,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Compact Cars,1998,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14202,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2987,0.0,37.9467,0.0,Compact Cars,1998,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14203,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2987,0.0,37.9467,0.0,Compact Cars,1998,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14204,12,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1794,0.0,40.6742,0.0,Compact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14205,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1794,0.0,40.6742,0.0,Compact Cars,1998,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14206,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.4121,0.0,Compact Cars,1998,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14207,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.4121,0.0,Compact Cars,1998,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14208,11,11,Dodge,Neon,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.2258,0.0,41.7589,0.0,Compact Cars,1998,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,14209,11,11,Dodge,Neon,Y,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,52.6,0.0,Compact Cars,1998,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38005,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,1421,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,50.0,0.0,Small Station Wagons,1985,2750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14210,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2546,0.0,41.641,0.0,Compact Cars,1998,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14211,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1605,0.0,44.5067,0.0,Compact Cars,1998,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14212,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0177,0.0,38.5302,0.0,Compact Cars,1998,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14213,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7296,0.0,37.0177,0.0,Compact Cars,1998,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14214,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1428,0.0,43.4723,0.0,Compact Cars,1998,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14215,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.3083,0.0,48.2378,0.0,Compact Cars,1998,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14216,0,13,Hyundai,Accent,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5376,0.0,44.4938,0.0,Compact Cars,1998,1500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14217,0,13,Hyundai,Accent,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5503,0.0,46.6253,0.0,Compact Cars,1998,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14218,0,12,Hyundai,Elantra,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7491,0.0,37.8499,0.0,Compact Cars,1998,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14219,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0554,0.0,40.5668,0.0,Compact Cars,1998,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1422,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Small Station Wagons,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14220,0,12,Jaguar,XJ8,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,30.4,0.0,Compact Cars,1998,-4750,,EMS 2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14221,0,12,Jaguar,XJR,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0739,0.0,27.5541,0.0,Compact Cars,1998,-5750,G,EMS 2MODE,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14222,0,10,Kia,Sephia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,40.1,0.0,Compact Cars,1998,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14223,0,10,Kia,Sephia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2,0.0,39.3,0.0,Compact Cars,1998,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14224,0,13,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2959,0.0,34.2188,0.0,Compact Cars,1998,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14225,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2546,0.0,41.641,0.0,Compact Cars,1998,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14226,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1605,0.0,44.5067,0.0,Compact Cars,1998,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14227,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0177,0.0,38.5302,0.0,Compact Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14228,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3654,0.0,36.1133,0.0,Compact Cars,1998,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14229,0,13,Mercury,Tracer,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1428,0.0,43.4723,0.0,Compact Cars,1998,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1423,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14230,0,13,Mercury,Tracer,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.3083,0.0,48.2378,0.0,Compact Cars,1998,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14231,0,13,Mazda,Millenia,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.3,0.0,Compact Cars,1998,-3000,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14232,0,13,Mazda,Millenia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.0,0.0,Compact Cars,1998,-3000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14233,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0958,0.0,41.5706,0.0,Compact Cars,1998,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14234,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.1876,0.0,46.828,0.0,Compact Cars,1998,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14235,0,13,Mazda,Protege,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,38.4,0.0,Compact Cars,1998,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14236,0,13,Mazda,Protege,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2,0.0,41.2,0.0,Compact Cars,1998,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14237,0,13,Mercedes-Benz,C230,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.8,0.0,39.0,0.0,Compact Cars,1998,-1000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14238,0,13,Mercedes-Benz,C280,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,34.4,0.0,Compact Cars,1998,-2250,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14239,0,13,Mercedes-Benz,C43,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.7,0.0,Compact Cars,1998,-5750,,EMS 2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3160,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1424,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1985,1500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14240,14,0,Mercedes-Benz,CL500,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,28.2,0.0,Compact Cars,1998,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14241,14,0,Mercedes-Benz,CL600,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.7,0.0,Compact Cars,1998,-9500,G,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14242,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0368,0.0,35.7072,0.0,Compact Cars,1998,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14243,0,12,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2683,0.0,38.2788,0.0,Compact Cars,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14244,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8138,0.0,38.892,0.0,Compact Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14245,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9,0.0,39.4,0.0,Compact Cars,1998,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14246,14,14,Oldsmobile,Achieva,N,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,41.5,0.0,Compact Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14247,14,14,Oldsmobile,Achieva,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Compact Cars,1998,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14248,14,14,Oldsmobile,Achieva,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,37.8,0.0,Compact Cars,1998,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14249,11,11,Plymouth,Neon,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.2258,0.0,41.7589,0.0,Compact Cars,1998,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3280,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,1425,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,46.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,14250,11,11,Plymouth,Neon,Y,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,52.6,0.0,Compact Cars,1998,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14251,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5181,0.0,41.5001,0.0,Compact Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14252,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Compact Cars,1998,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14253,13,13,Pontiac,Grand Am,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2099,0.0,37.4617,0.0,Compact Cars,1998,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14254,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1548,0.0,43.2237,0.0,Compact Cars,1998,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14255,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9659,0.0,47.4712,0.0,Compact Cars,1998,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14256,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6986,0.0,46.0497,0.0,Compact Cars,1998,1500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14257,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1987,0.0,50.3379,0.0,Compact Cars,1998,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14258,0,13,Subaru,Legacy,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,40.0998,0.0,Compact Cars,1998,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14259,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.823,0.0,37.8344,0.0,Compact Cars,1998,0,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3281,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,1426,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14260,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0748,0.0,37.8826,0.0,Compact Cars,1998,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14261,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9259,0.0,33.0954,0.0,Compact Cars,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14262,0,13,Subaru,Legacy AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4373,0.0,34.3452,0.0,Compact Cars,1998,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14263,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.9,0.0,42.0,0.0,Compact Cars,1998,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14264,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6054,0.0,46.1779,0.0,Compact Cars,1998,2250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14265,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.3556,0.0,48.3532,0.0,Compact Cars,1998,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,14266,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1323,0.0,36.5449,0.0,Compact Cars,1998,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,88,14267,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1933,0.0,39.8287,0.0,Compact Cars,1998,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,87,14268,0,0,Volkswagen,GTI VR6,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1843,0.0,33.1419,0.0,Compact Cars,1998,-2500,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1600,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,14269,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.1,0.0,62.8,0.0,Compact Cars,1998,4000,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3250,CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,1427,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Small Station Wagons,1985,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14270,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1323,0.0,36.5449,0.0,Compact Cars,1998,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14271,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.121,0.0,39.7864,0.0,Compact Cars,1998,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14272,0,15,Volkswagen,Jetta GLX,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,31.9,0.0,Compact Cars,1998,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14273,0,15,Volkswagen,Jetta GLX,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1843,0.0,33.1419,0.0,Compact Cars,1998,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14274,13,0,Volvo,C70,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1882,0.0,32.2058,0.0,Compact Cars,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14275,13,0,Volvo,C70,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8241,0.0,32.1872,0.0,Compact Cars,1998,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14276,13,0,Volvo,C70,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.563,0.0,34.0651,0.0,Compact Cars,1998,-3000,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14277,0,16,Volvo,S90,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8597,0.0,31.7848,0.0,Compact Cars,1998,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC V-6,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14278,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,31.6,0.0,Midsize Cars,1998,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14279,0,15,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4129,0.0,35.3482,0.0,Midsize Cars,1998,-3750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26025,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1428,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0256,0.0,Small Station Wagons,1985,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14280,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8202,0.0,33.0997,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.7,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14281,0,18,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8467,0.0,33.1493,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14282,0,18,Audi,A8,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6466,0.0,31.8922,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14283,0,12,Bentley,Brooklands R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3498,0.0,20.3499,0.0,Midsize Cars,1998,-13250,G,EMS CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14284,0,12,Bentley,Turbo RT,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3846,0.0,20.3127,0.0,Midsize Cars,1998,-13250,G,EMS 2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14285,0,13,BMW,740i,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.2,0.0,Midsize Cars,1998,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14286,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7901,0.0,37.0911,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14287,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14288,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4357,0.0,34.8843,0.0,Midsize Cars,1998,-2500,,2MODE CLKUP,T,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14289,17,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.2,0.0,Midsize Cars,1998,-2500,,CLKUP,T,S,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26025,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,1429,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,47.0,0.0,Small Station Wagons,1985,2750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14290,0,14,Cadillac,Catera,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.232,0.0,Midsize Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14291,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Midsize Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14292,0,16,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Midsize Cars,1998,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14293,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,96,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7901,0.0,37.0911,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14294,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,96,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14295,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,96,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,34.5,0.0,Midsize Cars,1998,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,99,14296,0,0,Chevrolet,Malibu,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5388,0.0,41.5061,0.0,Midsize Cars,1998,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,99,14297,0,0,Chevrolet,Malibu,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7901,0.0,37.0911,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14298,0,16,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0969,0.0,38.8536,0.0,Midsize Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14299,0,16,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1628,0.0,35.47,0.0,Midsize Cars,1998,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,29001,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,143,10,0,Isuzu,I-Mark,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,32.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3280,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,1430,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,46.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14300,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,35.2,0.0,Midsize Cars,1998,-1750,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14301,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,37.1795,0.0,Midsize Cars,1998,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14302,0,14,Daewoo,Leganza,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.7,0.0,Midsize Cars,1998,-1000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14303,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.5,0.0,Midsize Cars,1998,-1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14304,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.9,0.0,Midsize Cars,1998,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14305,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0969,0.0,38.8536,0.0,Midsize Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14306,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,36.7,0.0,Midsize Cars,1998,-1750,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14307,0,16,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1998,-1750,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14308,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,34.3,0.0,Midsize Cars,1998,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,MFFV-GAS,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14309,0,16,Ford,Taurus,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,32.5,0.0,Midsize Cars,1998,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3281,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,1431,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,EFFV-GAS,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14310,0,16,Ford,Taurus,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.4,0.0,Midsize Cars,1998,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14311,0,16,Ford,Taurus,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,36.2,0.0,Midsize Cars,1998,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Front-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14312,0,16,Ford,Taurus SHO,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3422,0.0,32.1566,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14313,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,37.5201,0.0,Midsize Cars,1998,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14314,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.425,0.0,38.3814,0.0,Midsize Cars,1998,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14315,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9,0.0,39.5538,0.0,Midsize Cars,1998,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14316,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6499,0.0,39.8997,0.0,Midsize Cars,1998,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC V-6,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14317,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.718,0.0,35.8,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14318,0,13,Hyundai,Sonata,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3743,0.0,34.5898,0.0,Midsize Cars,1998,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14319,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5673,0.0,35.4614,0.0,Midsize Cars,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1432,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14320,0,13,Hyundai,Sonata,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0995,0.0,30.9883,0.0,Midsize Cars,1998,-3250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14321,0,14,Infiniti,I30,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.871,0.0,35.471,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14322,0,14,Infiniti,I30,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,33.9,0.0,Midsize Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14323,0,13,Infiniti,Q45,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5979,0.0,29.8996,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14324,0,12,Jaguar,Vanden Plas,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9244,0.0,30.1493,0.0,Midsize Cars,1998,-4750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14325,0,12,Jaguar,XJ8L,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9244,0.0,30.1493,0.0,Midsize Cars,1998,-4750,,EMS 2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14326,0,15,Lexus,GS 300/GS 400,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8033,0.0,31.5191,0.0,Midsize Cars,1998,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14327,0,15,Lexus,GS 300/GS 400,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0735,0.0,29.6965,0.0,Midsize Cars,1998,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14328,0,14,Lexus,LS 400,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6326,0.0,31.896,0.0,Midsize Cars,1998,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14329,14,0,Lincoln,Mark VIII,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.038,0.0,33.2927,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1433,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1985,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14330,0,16,Mercury,Sable,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,34.3,0.0,Midsize Cars,1998,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14331,0,16,Mercury,Sable,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,36.2,0.0,Midsize Cars,1998,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14332,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.21,0.0,36.7078,0.0,Midsize Cars,1998,-500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14333,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4109,0.0,42.553,0.0,Midsize Cars,1998,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14334,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.9,0.0,Midsize Cars,1998,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14335,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,34.6,0.0,Midsize Cars,1998,-2250,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14336,0,15,Mercedes-Benz,E300 Turbodiesel,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.4,0.0,44.0,0.0,Midsize Cars,1998,500,,EMS 2MODE CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14337,0,15,Mercedes-Benz,E320 Sedan,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,33.4,0.0,Midsize Cars,1998,-3000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14338,0,15,Mercedes-Benz,E320 Sedan,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2,0.0,36.6,0.0,Midsize Cars,1998,-2250,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14339,0,14,Mitsubishi,Diamante,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.4,0.0,Midsize Cars,1998,-4750,,EMS CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1434,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Small Station Wagons,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14340,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2239,0.0,36.4958,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14341,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.1,0.0,Midsize Cars,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,16,102,14342,0,0,Oldsmobile,Aurora,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2488,0.0,32.7493,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14343,0,17,Oldsmobile,Cutlass,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5388,0.0,41.5061,0.0,Midsize Cars,1998,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14344,0,17,Oldsmobile,Cutlass,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7901,0.0,37.0911,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14345,0,17,Oldsmobile,Intrigue,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14346,0,16,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1327,0.0,41.7,0.0,Midsize Cars,1998,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14347,0,16,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.9,0.0,Midsize Cars,1998,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14348,0,16,Plymouth,Breeze,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0969,0.0,38.8536,0.0,Midsize Cars,1998,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14349,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7901,0.0,37.0911,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4152,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1435,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Small Station Wagons,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14350,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1998,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14351,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5457,0.0,35.2029,0.0,Midsize Cars,1998,-2500,,2MODE CLKUP,T,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14352,0,12,Rolls-Royce,Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3498,0.0,20.3499,0.0,Midsize Cars,1998,-13250,G,EMS CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,14353,0,0,Saab,900SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.3,0.0,Midsize Cars,1998,-2500,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,92,14354,0,0,Saab,900S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,32.2,0.0,Midsize Cars,1998,-2500,,2MODE,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B234I3,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,92,14355,0,0,Saab,900S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,35.7,0.0,Midsize Cars,1998,-500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,92,14356,0,0,Saab,900S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,33.9,0.0,Midsize Cars,1998,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 FFS,TURBO",-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,92,14357,0,0,Saab,900SE,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.1,0.0,Midsize Cars,1998,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,92,14358,0,0,Saab,900S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.6,0.0,Midsize Cars,1998,-1750,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14359,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6946,0.0,38.7075,0.0,Midsize Cars,1998,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1436,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0513,0.0,Small Station Wagons,1985,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14360,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0235,0.0,40.5701,0.0,Midsize Cars,1998,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14361,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2959,0.0,34.2188,0.0,Midsize Cars,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14362,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.1,0.0,Midsize Cars,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14363,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9787,0.0,39.5937,0.0,Midsize Cars,1998,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14364,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,40.7,0.0,Midsize Cars,1998,-500,,,T,,,,,, +12.306357,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1900,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,14365,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.6746,0.0,55.823,0.0,Midsize Cars,1998,2500,,CLKUP,T,,Diesel,,,, +10.318995000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1600,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,14366,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.8354,0.0,64.2498,0.0,Midsize Cars,1998,4000,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14367,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5587,0.0,36.9976,0.0,Midsize Cars,1998,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14368,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,37.0,0.0,Midsize Cars,1998,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14369,0,15,Volkswagen,Passat Syncro,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1123,0.0,33.6481,0.0,Midsize Cars,1998,-4750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1437,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14370,0,14,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1882,0.0,33.3333,0.0,Midsize Cars,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14371,0,14,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8241,0.0,32.1872,0.0,Midsize Cars,1998,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14372,0,14,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1047,0.0,35.7321,0.0,Midsize Cars,1998,-2250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14373,0,14,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.563,0.0,34.0651,0.0,Midsize Cars,1998,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14374,0,14,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.8733,0.0,37.1005,0.0,Midsize Cars,1998,-2250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14375,0,12,Bentley,Brooklands R Limo,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.3498,0.0,18.5,0.0,Large Cars,1998,-15500,G,EMS CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14376,0,13,BMW,740il,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.2,0.0,Large Cars,1998,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14377,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1498,0.0,25.4,0.0,Large Cars,1998,-6250,G,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14378,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Large Cars,1998,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14379,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7382,0.0,35.6238,0.0,Large Cars,1998,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1438,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1985,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14380,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.2,0.0,Large Cars,1998,-2500,,CLKUP,T,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14381,0,20,Cadillac,DeVille,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Large Cars,1998,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14382,0,0,Cadillac,Funeral Coach/Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6209,0.0,26.0895,0.0,Large Cars,1998,-6250,G,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14383,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6209,0.0,26.0895,0.0,Large Cars,1998,-6250,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14384,0,17,Chrysler,Concorde,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.998,0.0,38.6932,0.0,Large Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14385,0,17,Chrysler,Concorde,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,36.6,0.0,Large Cars,1998,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14386,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.998,0.0,38.6932,0.0,Large Cars,1998,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14387,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8499,0.0,36.6,0.0,Large Cars,1998,-1750,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14388,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8322,0.0,30.7274,0.0,Large Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14389,0,19,Lincoln,Continental,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7429,0.0,31.1689,0.0,Large Cars,1998,-4750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66035,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1439,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,36.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14390,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8322,0.0,30.7274,0.0,Large Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14391,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8322,0.0,30.7274,0.0,Large Cars,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14392,0,16,Mercedes-Benz,S320,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.0,0.0,Large Cars,1998,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14393,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.7,0.0,Large Cars,1998,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14394,0,16,Mercedes-Benz,S320,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.7,0.0,Large Cars,1998,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14395,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.0,0.0,Large Cars,1998,-4750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14396,0,16,Mercedes-Benz,S420,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,27.6,0.0,Large Cars,1998,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14397,0,16,Mercedes-Benz,S500,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,27.0,0.0,Large Cars,1998,-6750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14398,0,16,Mercedes-Benz,S600,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.9,0.0,24.0,0.0,Large Cars,1998,-11250,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14399,0,18,Oldsmobile,Eighty-Eight/Regency/LSS,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5035,0.0,37.6403,0.0,Large Cars,1998,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,29001,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,144,10,0,Isuzu,I-Mark,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +12.657024,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57015,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1440,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,39.0,0.0,Small Station Wagons,1985,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14400,0,18,Oldsmobile,Eighty-Eight/Regency/LSS,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.2,0.0,Large Cars,1998,-2500,,CLKUP,T,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14401,0,18,Pontiac,Bonneville,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7382,0.0,35.6238,0.0,Large Cars,1998,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14402,0,18,Pontiac,Bonneville,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4357,0.0,34.8843,0.0,Large Cars,1998,-2500,,2MODE CLKUP,T,S,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,L410MT2,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14403,0,12,Rolls-Royce,Silver Spur Park Ward,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.3498,0.0,18.5,0.0,Large Cars,1998,-15500,G,EMS CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234R4,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,99,14404,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5488,0.0,33.0,0.0,Large Cars,1998,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234R4,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,99,14405,0,0,Saab,9000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,34.3,0.0,Large Cars,1998,-2250,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14406,0,15,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4243,0.0,38.2473,0.0,Large Cars,1998,-500,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14407,0,31,Audi,A4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1794,0.0,37.4496,0.0,Small Station Wagons,1998,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14408,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4211,0.0,34.5499,0.0,Small Station Wagons,1998,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14409,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3655,0.0,34.2658,0.0,Small Station Wagons,1998,-3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57015,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,1441,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,49.0,0.0,Small Station Wagons,1985,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14410,0,34,Audi,A6 Wagon quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5642,0.0,30.3,0.0,Small Station Wagons,1998,-3750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14411,0,19,Daewoo,Nubira Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,43.6821,0.0,Small Station Wagons,1998,1000,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14412,0,19,Daewoo,Nubira Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,41.0256,0.0,Small Station Wagons,1998,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14413,0,19,Daewoo,Nubira Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Small Station Wagons,1998,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14414,0,19,Daewoo,Nubira Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Small Station Wagons,1998,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14415,0,26,Ford,Escort Wagon,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1428,0.0,43.4723,0.0,Small Station Wagons,1998,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14416,0,26,Ford,Escort Wagon,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.3083,0.0,48.2378,0.0,Small Station Wagons,1998,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,95,14417,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4963,0.0,38.1646,0.0,Small Station Wagons,1998,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,95,14418,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,39.6,0.0,Small Station Wagons,1998,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14419,0,26,Mercury,Tracer Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1428,0.0,43.4723,0.0,Small Station Wagons,1998,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57015,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1442,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14420,0,26,Mercury,Tracer Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.3083,0.0,48.2378,0.0,Small Station Wagons,1998,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14421,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1548,0.0,43.2237,0.0,Small Station Wagons,1998,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14422,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5,0.0,44.0,0.0,Small Station Wagons,1998,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14423,0,25,Saturn,SW,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6986,0.0,46.0497,0.0,Small Station Wagons,1998,1500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14424,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2338,0.0,47.9811,0.0,Small Station Wagons,1998,1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14425,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.823,0.0,37.8344,0.0,Small Station Wagons,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14426,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0748,0.0,37.8826,0.0,Small Station Wagons,1998,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14427,0,29,Suzuki,Esteem Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.1,0.0,Small Station Wagons,1998,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14428,0,29,Suzuki,Esteem Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.9,0.0,46.7,0.0,Small Station Wagons,1998,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,92,14429,0,0,Volvo,V90,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8597,0.0,31.7848,0.0,Small Station Wagons,1998,-4750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4461,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1443,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14430,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2552,0.0,33.8294,0.0,Midsize Station Wagons,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14431,0,38,Ford,Taurus Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6778,0.0,32.4,0.0,Midsize Station Wagons,1998,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,46,107,14432,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5935,0.0,33.5732,0.0,Midsize Station Wagons,1998,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,46,107,14433,0,0,Isuzu,Oasis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5935,0.0,33.5732,0.0,Midsize Station Wagons,1998,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14434,0,38,Mercury,Sable Wagon,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2552,0.0,33.8294,0.0,Midsize Station Wagons,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14435,0,38,Mercury,Sable Wagon,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6778,0.0,32.4,0.0,Midsize Station Wagons,1998,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14436,0,44,Mercedes-Benz,E320 Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7,0.0,32.8,0.0,Midsize Station Wagons,1998,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14437,0,44,Mercedes-Benz,E320 Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,34.3,0.0,Midsize Station Wagons,1998,-3000,,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14438,0,36,Subaru,Legacy Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,40.0998,0.0,Midsize Station Wagons,1998,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14439,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4005,0.0,37.9888,0.0,Midsize Station Wagons,1998,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4406,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1444,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14440,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0748,0.0,37.8826,0.0,Midsize Station Wagons,1998,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14441,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9259,0.0,33.0954,0.0,Midsize Station Wagons,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14442,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4373,0.0,34.3452,0.0,Midsize Station Wagons,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14443,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9787,0.0,39.5937,0.0,Midsize Station Wagons,1998,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14444,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,40.7,0.0,Midsize Station Wagons,1998,-500,,,T,,,,,, +12.306357,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1900,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,14445,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.6746,0.0,55.823,0.0,Midsize Station Wagons,1998,2500,,CLKUP,T,,Diesel,,,, +10.318995000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1600,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,14446,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.8354,0.0,64.2498,0.0,Midsize Station Wagons,1998,4000,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14447,0,39,Volkswagen,Passat Wagon Syncro,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1123,0.0,33.6481,0.0,Midsize Station Wagons,1998,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,34,99,14448,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1882,0.0,32.2058,0.0,Midsize Station Wagons,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,34,99,14449,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8241,0.0,32.1872,0.0,Midsize Station Wagons,1998,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4403,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1445,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,34,99,14450,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1047,0.0,35.7321,0.0,Midsize Station Wagons,1998,-2250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,34,99,14451,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.563,0.0,34.0651,0.0,Midsize Station Wagons,1998,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,34,99,14452,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.8733,0.0,37.1005,0.0,Midsize Station Wagons,1998,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,37,98,14453,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,32.1,0.0,Midsize Station Wagons,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,37,98,14454,0,0,Volvo,V70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2499,0.0,31.1341,0.0,Midsize Station Wagons,1998,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14455,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1998,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14456,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,36.1,0.0,Small Pickup Trucks 2WD,1998,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14457,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4132,0.0,27.8274,0.0,Small Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14458,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.423,0.0,29.7231,0.0,Small Pickup Trucks 2WD,1998,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14459,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1998,-2500,,CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1446,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14460,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,36.1,0.0,Small Pickup Trucks 2WD,1998,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14461,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3947,0.0,27.8086,0.0,Small Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14462,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.423,0.0,29.7231,0.0,Small Pickup Trucks 2WD,1998,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14463,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1998,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14464,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,36.1,0.0,Small Pickup Trucks 2WD,1998,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14465,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4519,0.0,27.8665,0.0,Small Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14466,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.416,0.0,29.716,0.0,Small Pickup Trucks 2WD,1998,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14467,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6598,0.0,31.129,0.0,Small Pickup Trucks 2WD,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14468,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3774,0.0,34.2946,0.0,Small Pickup Trucks 2WD,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14469,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8568,0.0,30.2426,0.0,Small Pickup Trucks 2WD,1998,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1447,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14470,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,30.0945,0.0,Small Pickup Trucks 2WD,1998,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14471,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4569,0.0,29.4201,0.0,Small Pickup Trucks 2WD,1998,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14472,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3868,0.0,29.9789,0.0,Small Pickup Trucks 2WD,1998,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14473,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5121,0.0,25.6846,0.0,Standard Pickup Trucks 2WD,1998,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14474,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2977,0.0,29.1827,0.0,Standard Pickup Trucks 2WD,1998,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14475,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7171,0.0,25.4669,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14476,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3727,0.0,25.4465,0.0,Standard Pickup Trucks 2WD,1998,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14477,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6326,0.0,23.7482,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14478,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0622,0.0,24.6472,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14479,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6786,0.0,25.3433,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1448,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14480,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.6932,0.0,24.1297,0.0,Standard Pickup Trucks 2WD,1998,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14481,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4954,0.0,23.643,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14482,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1486,0.0,24.7125,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14483,0,0,Chevrolet,Pickup 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4481,0.0,23.053,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14484,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5556,0.0,31.9392,0.0,Standard Pickup Trucks 2WD,1998,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14485,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9266,0.0,26.6042,0.0,Standard Pickup Trucks 2WD,1998,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14486,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,28.3,0.0,Standard Pickup Trucks 2WD,1998,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14487,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4994,0.0,23.6474,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14488,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,22.8956,0.0,Standard Pickup Trucks 2WD,1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14489,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,24.1,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2350,"(FFS,TRBO) CA model",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1449,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.7692,0.0,Midsize-Large Station Wagons,1985,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14490,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.3,0.0,Standard Pickup Trucks 2WD,1998,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14491,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,27.1,0.0,Standard Pickup Trucks 2WD,1998,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14492,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,27.1,0.0,Standard Pickup Trucks 2WD,1998,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14493,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.758,0.0,23.6577,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14494,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7677,0.0,22.5909,0.0,Standard Pickup Trucks 2WD,1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14495,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.9222,0.0,23.3224,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14496,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0852,0.0,26.5288,0.0,Standard Pickup Trucks 2WD,1998,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14497,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7768,0.0,25.4079,0.0,Standard Pickup Trucks 2WD,1998,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14498,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7195,0.0,25.4224,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14499,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5498,0.0,23.8474,0.0,Standard Pickup Trucks 2WD,1998,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29010,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,145,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1450,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14500,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4878,0.0,22.9591,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14501,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6558,0.0,24.709,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14502,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.1116,0.0,23.2519,0.0,Standard Pickup Trucks 2WD,1998,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14503,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3352,0.0,22.5112,0.0,Standard Pickup Trucks 2WD,1998,-9250,,CLKUP,,,,,,, +0.169012,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,639.0909090909091,11,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,2850,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,14504,0,0,Ford,F250 Pickup 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1998,-2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14505,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5049,0.0,31.8253,0.0,Standard Pickup Trucks 2WD,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14506,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3917,0.0,34.1366,0.0,Standard Pickup Trucks 2WD,1998,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14507,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5626,0.0,28.7879,0.0,Standard Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14508,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.815,0.0,28.854,0.0,Standard Pickup Trucks 2WD,1998,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14509,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2,0.0,27.192,0.0,Standard Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1451,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14510,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7504,0.0,27.521,0.0,Standard Pickup Trucks 2WD,1998,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14511,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5112,0.0,25.6801,0.0,Standard Pickup Trucks 2WD,1998,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14512,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3168,0.0,29.2781,0.0,Standard Pickup Trucks 2WD,1998,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14513,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7417,0.0,25.5462,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14514,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3725,0.0,25.4461,0.0,Standard Pickup Trucks 2WD,1998,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14515,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6148,0.0,23.7346,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14516,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0037,0.0,24.6028,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14517,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6571,0.0,25.2746,0.0,Standard Pickup Trucks 2WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14518,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.6846,0.0,24.1133,0.0,Standard Pickup Trucks 2WD,1998,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14519,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5071,0.0,23.652,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1452,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1985,500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14520,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1611,0.0,24.7219,0.0,Standard Pickup Trucks 2WD,1998,-7750,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,Rear-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14521,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.488,0.0,23.1808,0.0,Standard Pickup Trucks 2WD,1998,-7750,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14522,0,0,Mazda,B2500/B3000/B4000 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5049,0.0,31.8253,0.0,Standard Pickup Trucks 2WD,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14523,0,0,Mazda,B2500/B3000/B4000 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3917,0.0,34.1366,0.0,Standard Pickup Trucks 2WD,1998,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14524,0,0,Mazda,B2500/B3000/B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5626,0.0,28.7879,0.0,Standard Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14525,0,0,Mazda,B2500/B3000/B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.815,0.0,28.854,0.0,Standard Pickup Trucks 2WD,1998,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14526,0,0,Mazda,B2500/B3000/B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2,0.0,27.1124,0.0,Standard Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14527,0,0,Mazda,B2500/B3000/B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8896,0.0,27.5322,0.0,Standard Pickup Trucks 2WD,1998,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14528,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8214,0.0,30.4539,0.0,Standard Pickup Trucks 2WD,1998,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14529,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8989,0.0,33.9599,0.0,Standard Pickup Trucks 2WD,1998,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2149,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1453,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14530,0,0,Toyota,T100 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,29.6,0.0,Standard Pickup Trucks 2WD,1998,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14531,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.44,0.0,30.3165,0.0,Standard Pickup Trucks 2WD,1998,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14532,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2989,0.0,25.5979,0.0,Standard Pickup Trucks 2WD,1998,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14533,0,0,Toyota,T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8428,0.0,25.7725,0.0,Standard Pickup Trucks 2WD,1998,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14534,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.181,0.0,25.0618,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14535,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4317,0.0,26.0009,0.0,Standard Pickup Trucks 4WD,1998,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14536,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3101,0.0,22.8145,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14537,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.8218,0.0,23.4449,0.0,Standard Pickup Trucks 4WD,1998,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14538,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5905,0.0,21.4909,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14539,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.793,0.0,21.7932,0.0,Standard Pickup Trucks 4WD,1998,-9250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1454,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14540,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1374,0.0,24.0823,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14541,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8298,0.0,26.4303,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14542,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,28.2,0.0,Standard Pickup Trucks 4WD,1998,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14543,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4536,0.0,23.3297,0.0,Standard Pickup Trucks 4WD,1998,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14544,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1316,0.0,24.8469,0.0,Standard Pickup Trucks 4WD,1998,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14545,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8181,0.0,21.6703,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14546,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.6173,0.0,22.1685,0.0,Standard Pickup Trucks 4WD,1998,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14547,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8047,0.0,21.0925,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14548,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.1626,0.0,21.249,0.0,Standard Pickup Trucks 4WD,1998,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14549,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.5732,0.0,22.3612,0.0,Standard Pickup Trucks 4WD,1998,-7750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1455,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14550,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8821,0.0,23.7339,0.0,Standard Pickup Trucks 4WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14551,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5732,0.0,23.5327,0.0,Standard Pickup Trucks 4WD,1998,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14552,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1956,0.0,22.7667,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14553,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.9173,0.0,22.5015,0.0,Standard Pickup Trucks 4WD,1998,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14554,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7019,0.0,21.0316,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14555,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7595,0.0,22.5098,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14556,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.407,0.0,22.1959,0.0,Standard Pickup Trucks 4WD,1998,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14557,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.563,0.0,20.9426,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14558,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1897,0.0,25.8991,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14559,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.87,0.0,28.0399,0.0,Standard Pickup Trucks 4WD,1998,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1456,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14560,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6262,0.0,25.4802,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14561,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8148,0.0,25.7352,0.0,Standard Pickup Trucks 4WD,1998,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14562,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2268,0.0,25.4489,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14563,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3988,0.0,25.9725,0.0,Standard Pickup Trucks 4WD,1998,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14564,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3099,0.0,22.8142,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14565,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.819,0.0,23.4437,0.0,Standard Pickup Trucks 4WD,1998,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14566,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5905,0.0,21.4909,0.0,Standard Pickup Trucks 4WD,1998,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14567,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.7939,0.0,21.7947,0.0,Standard Pickup Trucks 4WD,1998,-9250,,SIL,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14568,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1374,0.0,24.0823,0.0,Standard Pickup Trucks 4WD,1998,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14569,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8298,0.0,26.4303,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1457,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14570,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,28.2,0.0,Standard Pickup Trucks 4WD,1998,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14571,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8298,0.0,26.4303,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14572,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,28.2,0.0,Standard Pickup Trucks 4WD,1998,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14573,0,0,Mazda,B2500/B3000/B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1474,0.0,25.8271,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14574,0,0,Mazda,B2500/B3000/B4000 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8439,0.0,27.9877,0.0,Standard Pickup Trucks 4WD,1998,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14575,0,0,Mazda,B2500/B3000/B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6262,0.0,25.4802,0.0,Standard Pickup Trucks 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14576,0,0,Mazda,B2500/B3000/B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8148,0.0,25.7352,0.0,Standard Pickup Trucks 4WD,1998,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14577,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5269,0.0,26.9298,0.0,Standard Pickup Trucks 4WD,1998,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14578,0,0,Toyota,T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6254,0.0,22.1534,0.0,Standard Pickup Trucks 4WD,1998,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14579,0,0,Toyota,T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1259,0.0,24.2461,0.0,Standard Pickup Trucks 4WD,1998,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1458,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14580,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1123,0.0,27.1947,0.0,Standard Pickup Trucks 4WD,1998,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14581,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3421,0.0,27.0124,0.0,Standard Pickup Trucks 4WD,1998,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14582,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,25.0,0.0,Standard Pickup Trucks 4WD,1998,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14583,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1259,0.0,24.2461,0.0,Standard Pickup Trucks 4WD,1998,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14584,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.2,0.0,"Vans, Cargo Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14585,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2626,0.0,25.7585,0.0,"Vans, Cargo Type",1998,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14586,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5971,0.0,24.198,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14587,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5814,0.0,25.0368,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14588,0,0,Chevrolet,Van 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4779,0.0,23.6271,0.0,"Vans, Cargo Type",1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14589,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.5295,0.0,21.5941,0.0,"Vans, Cargo Type",1998,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4461,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1459,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14590,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.088,0.0,23.7953,0.0,"Vans, Cargo Type",1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14591,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2252,0.0,23.2009,0.0,"Vans, Cargo Type",1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14592,0,0,Dodge,B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,23.6,0.0,"Vans, Cargo Type",1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14593,0,0,Dodge,B2500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,22.5,0.0,"Vans, Cargo Type",1998,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14594,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5675,0.0,24.9686,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14595,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.6,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14596,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3352,0.0,22.5112,0.0,"Vans, Cargo Type",1998,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14597,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8505,0.0,23.9755,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14598,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2909,0.0,21.9718,0.0,"Vans, Cargo Type",1998,-9250,,CLKUP,,,,,,, +0.169012,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,639.0909090909091,11,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,2850,0,CNG,Natural Gas,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14599,0,0,Ford,E250 Econoline 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,"Vans, Cargo Type",1998,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29010,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,77,146,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4462,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1460,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14600,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5968,0.0,24.1978,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14601,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5813,0.0,25.0365,0.0,"Vans, Cargo Type",1998,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14602,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4732,0.0,23.6216,0.0,"Vans, Cargo Type",1998,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14603,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.2,0.0,"Vans, Cargo Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14604,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2626,0.0,25.7585,0.0,"Vans, Cargo Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14605,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4094,0.0,25.1729,0.0,"Vans, Passenger Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14606,0,0,Chevrolet,Astro AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1712,0.0,24.9797,0.0,"Vans, Passenger Type",1998,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14607,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1932,0.0,23.9223,0.0,"Vans, Passenger Type",1998,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14608,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5444,0.0,22.4766,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14609,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0918,0.0,23.1742,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4403,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1461,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14610,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.5295,0.0,21.5941,0.0,"Vans, Passenger Type",1998,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14611,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,23.6,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14612,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,23.3,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14613,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,22.5,0.0,"Vans, Passenger Type",1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14614,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0807,0.0,22.9011,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14615,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4069,0.0,23.8416,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14616,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,22.1,0.0,"Vans, Passenger Type",1998,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14617,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1932,0.0,23.9223,0.0,"Vans, Passenger Type",1998,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14618,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5444,0.0,22.4766,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14619,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0918,0.0,23.1742,0.0,"Vans, Passenger Type",1998,-7750,,CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1462,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14620,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4094,0.0,25.1729,0.0,"Vans, Passenger Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14621,0,0,GMC,Safari AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1569,0.0,24.8615,0.0,"Vans, Passenger Type",1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14622,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.2,0.0,Special Purpose Vehicle 2WD,1998,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14623,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.4,0.0,29.7,0.0,Special Purpose Vehicle 2WD,1998,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14624,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0918,0.0,23.1742,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14625,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4847,0.0,23.6347,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14626,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.3,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14627,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.6,0.0,31.4,0.0,Special Purpose Vehicle 2WD,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14628,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1998,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14629,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2806,0.0,33.122,0.0,Special Purpose Vehicle 2WD,1998,-1000,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1463,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1985,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14630,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6073,0.0,33.3695,0.0,Special Purpose Vehicle 2WD,1998,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14631,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.5,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14632,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5349,0.0,30.8697,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14633,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5496,0.0,30.899,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14634,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8995,0.0,30.3499,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14635,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2,0.0,33.9,0.0,Special Purpose Vehicle 2WD,1998,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14636,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.6,0.0,30.7,0.0,Special Purpose Vehicle 2WD,1998,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14637,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.2,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14638,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.2,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14639,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.2,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1464,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1985,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14640,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8995,0.0,30.3499,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14641,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.6,0.0,Special Purpose Vehicle 2WD,1998,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14642,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3352,0.0,22.5112,0.0,Special Purpose Vehicle 2WD,1998,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14643,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0937,0.0,25.9573,0.0,Special Purpose Vehicle 2WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14644,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,25.2,0.0,Special Purpose Vehicle 2WD,1998,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14645,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6717,0.0,27.4938,0.0,Special Purpose Vehicle 2WD,1998,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14646,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,24.1,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0E-F,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14647,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.245,0.0,31.5721,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,3.8E-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14648,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3058,0.0,30.4246,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0E-F,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14649,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.245,0.0,31.5721,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2149,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1465,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,3.8E-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14650,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3058,0.0,30.4246,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14651,0,0,GMC,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0918,0.0,23.1742,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14652,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4837,0.0,23.6339,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14653,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.3,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14654,0,0,GMC,Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.2,0.0,Special Purpose Vehicle 2WD,1998,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14655,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.4,0.0,29.7,0.0,Special Purpose Vehicle 2WD,1998,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14656,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,32.3,0.0,Special Purpose Vehicle 2WD,1998,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14657,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.1192,0.0,Special Purpose Vehicle 2WD,1998,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14658,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6787,0.0,26.2787,0.0,Special Purpose Vehicle 2WD,1998,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14659,0,0,Isuzu,Amigo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8787,0.0,31.0068,0.0,Special Purpose Vehicle 2WD,1998,-1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2150,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1466,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14660,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8545,0.0,30.9177,0.0,Special Purpose Vehicle 2WD,1998,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14661,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1982,0.0,26.1202,0.0,Special Purpose Vehicle 2WD,1998,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14662,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6772,0.0,26.2766,0.0,Special Purpose Vehicle 2WD,1998,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14663,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.9,0.0,27.6,0.0,Special Purpose Vehicle 2WD,1998,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14664,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,32.1,0.0,Special Purpose Vehicle 2WD,1998,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14665,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2343,0.0,26.8986,0.0,Special Purpose Vehicle 2WD,1998,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14666,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,28.5986,0.0,Special Purpose Vehicle 2WD,1998,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14667,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3777,0.0,27.0342,0.0,Special Purpose Vehicle 2WD,1998,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14668,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4994,0.0,23.6474,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14669,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4499,0.0,29.2969,0.0,Special Purpose Vehicle 2WD,1998,-2500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2250,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1467,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0513,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14670,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1998,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14671,0,0,Lincoln,Navigator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2909,0.0,21.9718,0.0,Special Purpose Vehicle 2WD,1998,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14672,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1957,0.0,27.5224,0.0,Special Purpose Vehicle 2WD,1998,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14673,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,25.2,0.0,Special Purpose Vehicle 2WD,1998,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14674,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,24.1,0.0,Special Purpose Vehicle 2WD,1998,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0N-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14675,0,0,Mercury,Villager FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2536,0.0,29.991,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0N-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14676,0,0,Mercury,Villager FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2536,0.0,29.991,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14677,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6811,0.0,31.7941,0.0,Special Purpose Vehicle 2WD,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14678,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.202,0.0,27.8706,0.0,Special Purpose Vehicle 2WD,1998,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14679,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6809,0.0,31.7928,0.0,Special Purpose Vehicle 2WD,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2450,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1468,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14680,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.202,0.0,27.8706,0.0,Special Purpose Vehicle 2WD,1998,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14681,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.4,0.0,Special Purpose Vehicle 2WD,1998,-5250,,2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14682,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,24.7,0.0,Special Purpose Vehicle 2WD,1998,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14683,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2861,0.0,29.8354,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14684,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.5,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14685,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2,0.0,33.9,0.0,Special Purpose Vehicle 2WD,1998,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14686,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.6,0.0,30.7,0.0,Special Purpose Vehicle 2WD,1998,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14687,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.2,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14688,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.2,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14689,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.2,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4151,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1469,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14690,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.5,0.0,Special Purpose Vehicle 2WD,1998,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14691,0,0,Suzuki,Sidekick 2Door RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.6,0.0,31.4,0.0,Special Purpose Vehicle 2WD,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14692,0,0,Suzuki,Sidekick 2Door RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1998,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14693,0,0,Suzuki,Sidekick 4Door RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2806,0.0,33.122,0.0,Special Purpose Vehicle 2WD,1998,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14694,0,0,Suzuki,Sidekick 4Door RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6073,0.0,33.3695,0.0,Special Purpose Vehicle 2WD,1998,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14695,0,0,Suzuki,Sidekick Sport RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7714,0.0,31.1762,0.0,Special Purpose Vehicle 2WD,1998,-1750,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14696,0,0,Suzuki,Sidekick Sport RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,31.8,0.0,Special Purpose Vehicle 2WD,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14697,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.8,0.0,Special Purpose Vehicle 2WD,1998,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14698,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.44,0.0,30.3165,0.0,Special Purpose Vehicle 2WD,1998,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14699,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,26.5,0.0,Special Purpose Vehicle 2WD,1998,-4250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,147,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4311,CA model,-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1470,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,44.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14700,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3054,0.0,36.781,0.0,Special Purpose Vehicle 2WD,1998,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14701,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.848,0.0,37.229,0.0,Special Purpose Vehicle 2WD,1998,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14702,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3054,0.0,36.781,0.0,Special Purpose Vehicle 2WD,1998,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14703,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.848,0.0,37.229,0.0,Special Purpose Vehicle 2WD,1998,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14704,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4576,0.0,31.3277,0.0,Special Purpose Vehicle 2WD,1998,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14705,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5333,0.0,24.481,0.0,Special Purpose Vehicle 4WD,1998,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14706,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.345,0.0,25.8567,0.0,Special Purpose Vehicle 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14707,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,26.4,0.0,Special Purpose Vehicle 4WD,1998,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14708,0,0,Chevrolet,Blazer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2626,0.0,25.7585,0.0,Special Purpose Vehicle 4WD,1998,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14709,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2893,0.0,20.8544,0.0,Special Purpose Vehicle 4WD,1998,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60025,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1471,0,41,Volvo,240 DL/GL/turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,T,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14710,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1374,0.0,24.0823,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14711,0,0,Chevrolet,Tracker 4WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.6,0.0,31.4,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14712,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1998,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14713,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2785,0.0,33.12,0.0,Special Purpose Vehicle 4WD,1998,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14714,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6042,0.0,33.3655,0.0,Special Purpose Vehicle 4WD,1998,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14715,0,0,Chrysler,Town and Country AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,29.9,0.0,Special Purpose Vehicle 4WD,1998,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14716,0,0,Dodge,Caravan/Grand Caravan AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,29.9,0.0,Special Purpose Vehicle 4WD,1998,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14717,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4666,0.0,21.4045,0.0,Special Purpose Vehicle 4WD,1998,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14718,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,21.7,0.0,Special Purpose Vehicle 4WD,1998,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14719,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6978,0.0,22.4727,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4335,(GM-OLDS) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1472,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14720,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.563,0.0,20.9426,0.0,Special Purpose Vehicle 4WD,1998,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14721,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5205,0.0,24.7789,0.0,Special Purpose Vehicle 4WD,1998,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14722,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8405,0.0,24.5965,0.0,Special Purpose Vehicle 4WD,1998,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14723,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6249,0.0,25.3805,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14724,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2486,0.0,23.6815,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14725,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3644,0.0,25.8797,0.0,Special Purpose Vehicle 4WD,1998,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14726,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,26.4,0.0,Special Purpose Vehicle 4WD,1998,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14727,0,0,GMC,Jimmy AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2626,0.0,25.7585,0.0,Special Purpose Vehicle 4WD,1998,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14728,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2869,0.0,20.8493,0.0,Special Purpose Vehicle 4WD,1998,-9250,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14729,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1374,0.0,24.0823,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1473,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Midsize-Large Station Wagons,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14730,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9203,0.0,31.4414,0.0,Special Purpose Vehicle 4WD,1998,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14731,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.011,0.0,31.5508,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14732,0,0,Honda,Passport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.1196,0.0,Special Purpose Vehicle 4WD,1998,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14733,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6805,0.0,26.2806,0.0,Special Purpose Vehicle 4WD,1998,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14734,0,0,Infiniti,QX4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.9294,0.0,Special Purpose Vehicle 4WD,1998,-6250,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14735,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0022,0.0,29.6008,0.0,Special Purpose Vehicle 4WD,1998,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14736,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,26.3338,0.0,Special Purpose Vehicle 4WD,1998,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14737,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.1228,0.0,Special Purpose Vehicle 4WD,1998,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14738,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6745,0.0,26.2745,0.0,Special Purpose Vehicle 4WD,1998,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14739,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5328,0.0,24.4799,0.0,Special Purpose Vehicle 4WD,1998,-6250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4335,(GM-OLDS) (FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1474,0,50,Oldsmobile,Custom Cruiser Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14740,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3605,0.0,24.3474,0.0,Special Purpose Vehicle 4WD,1998,-6250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14741,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7499,0.0,25.1475,0.0,Special Purpose Vehicle 4WD,1998,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14742,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7558,0.0,26.9231,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14743,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5065,0.0,25.9478,0.0,Special Purpose Vehicle 4WD,1998,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14744,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7413,0.0,26.9231,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14745,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.8,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14746,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9484,0.0,22.0982,0.0,Special Purpose Vehicle 4WD,1998,-11250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14747,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.3327,0.0,23.9334,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14748,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7499,0.0,25.1475,0.0,Special Purpose Vehicle 4WD,1998,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14749,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.2486,0.0,22.2888,0.0,Special Purpose Vehicle 4WD,1998,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1475,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Midsize-Large Station Wagons,1985,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14750,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5065,0.0,25.9478,0.0,Special Purpose Vehicle 4WD,1998,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14751,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4499,0.0,29.2969,0.0,Special Purpose Vehicle 4WD,1998,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14752,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1998,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14753,0,0,Land Rover,Discovery,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,21.8,0.0,Special Purpose Vehicle 4WD,1998,-9500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14754,0,0,Land Rover,Discovery,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.3,0.0,21.3,0.0,Special Purpose Vehicle 4WD,1998,-11250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14755,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0993,0.0,21.2489,0.0,Special Purpose Vehicle 4WD,1998,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14756,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7993,0.0,20.5995,0.0,Special Purpose Vehicle 4WD,1998,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14757,0,0,Lexus,LX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,20.9,0.0,Special Purpose Vehicle 4WD,1998,-9250,,2MODE 2LKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14758,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3373,0.0,20.7922,0.0,Special Purpose Vehicle 4WD,1998,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14759,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.1,0.0,Special Purpose Vehicle 4WD,1998,-6250,,CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4820,CA model,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1476,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14760,41,0,Mercedes-Benz,ML320,Y,false,105,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.3,0.0,Special Purpose Vehicle 4WD,1998,-5750,,EMS CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14761,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8405,0.0,24.5965,0.0,Special Purpose Vehicle 4WD,1998,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14762,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2486,0.0,23.6815,0.0,Special Purpose Vehicle 4WD,1998,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14763,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3814,0.0,25.4421,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14764,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,23.2,0.0,Special Purpose Vehicle 4WD,1998,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14765,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.444,0.0,24.8678,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14766,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2052,0.0,26.4596,0.0,Special Purpose Vehicle 4WD,1998,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14767,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.959,0.0,25.6941,0.0,Special Purpose Vehicle 4WD,1998,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14768,0,0,Mitsubishi,Nativa 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3472,0.0,26.7049,0.0,Special Purpose Vehicle 4WD,1998,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14769,0,0,Mitsubishi,Nativa 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.959,0.0,25.6941,0.0,Special Purpose Vehicle 4WD,1998,-4250,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4820,CA model,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1477,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14770,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.7674,0.0,Special Purpose Vehicle 4WD,1998,-6250,,2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,14771,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,22.5,0.0,Special Purpose Vehicle 4WD,1998,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14772,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2626,0.0,25.7585,0.0,Special Purpose Vehicle 4WD,1998,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14773,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9259,0.0,33.0954,0.0,Special Purpose Vehicle 4WD,1998,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14774,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4373,0.0,34.3452,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14775,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.6,0.0,31.4,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14776,0,0,Suzuki,Sidekick 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1998,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14777,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2785,0.0,33.12,0.0,Special Purpose Vehicle 4WD,1998,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14778,0,0,Suzuki,Sidekick 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6042,0.0,33.3655,0.0,Special Purpose Vehicle 4WD,1998,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14779,0,0,Suzuki,Sidekick Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7684,0.0,31.1723,0.0,Special Purpose Vehicle 4WD,1998,-1750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1478,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14780,0,0,Suzuki,Sidekick Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,31.8,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14781,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6699,0.0,27.7348,0.0,Special Purpose Vehicle 4WD,1998,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14782,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0649,0.0,27.1321,0.0,Special Purpose Vehicle 4WD,1998,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14783,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1998,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,14784,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1259,0.0,24.2461,0.0,Special Purpose Vehicle 4WD,1998,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14785,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1998,-7750,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14786,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2698,0.0,33.7984,0.0,Special Purpose Vehicle 4WD,1998,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14787,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8459,0.0,33.2456,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14788,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,33.4,0.0,Special Purpose Vehicle 4WD,1998,-500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14789,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,33.4,0.0,Special Purpose Vehicle 4WD,1998,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4844,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1479,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.1111,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14790,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7874,0.0,30.3,0.0,Two Seaters,1999,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14791,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,30.1291,0.0,Two Seaters,1999,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14792,0,0,BMW,M Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3353,0.0,33.7663,0.0,Two Seaters,1999,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14793,0,0,BMW,M Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3353,0.0,33.7663,0.0,Two Seaters,1999,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14794,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.6,0.0,Two Seaters,1999,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14795,0,0,BMW,Z3 Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0458,0.0,32.9812,0.0,Two Seaters,1999,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14796,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.2,0.0,Two Seaters,1999,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14797,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.4,0.0,Two Seaters,1999,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14798,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Two Seaters,1999,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14799,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,31.5,0.0,Two Seaters,1999,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,148,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4841,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1480,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14800,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5112,0.0,36.0095,0.0,Two Seaters,1999,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14801,0,0,Ferrari,550 Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.0,0.0,18.0,0.0,Two Seaters,1999,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14802,0,0,Ferrari,F355/355 F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,10.9991,0.0,17.9728,0.0,Two Seaters,1999,-15500,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,14803,0,0,Ferrari,F355/355 F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.1,0.0,19.6,0.0,Two Seaters,1999,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,14804,0,0,Lamborghini,DB132/144 Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.9,0.0,17.3,0.0,Two Seaters,1999,-18250,G,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14805,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,36.3,0.0,Two Seaters,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14806,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0538,0.0,37.6,0.0,Two Seaters,1999,500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14807,0,0,Mercedes-Benz,SL500,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9305,0.0,29.2617,0.0,Two Seaters,1999,-5750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,14808,0,0,Mercedes-Benz,SL600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3679,0.0,24.0999,0.0,Two Seaters,1999,-9500,G,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14809,0,0,Mercedes-Benz,SLK230 Kompressor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.0384,0.0,38.0319,0.0,Two Seaters,1999,-1750,,EMS 2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38083,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1481,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14810,0,0,Mercedes-Benz,SLK230 Kompressor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5502,0.0,39.0054,0.0,Two Seaters,1999,-1750,,EMS,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14811,0,0,Plymouth,Prowler,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.5,0.0,Two Seaters,1999,-4750,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14812,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3899,0.0,30.623,0.0,Two Seaters,1999,-5750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14813,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,33.9499,0.0,Two Seaters,1999,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14814,9,0,BMW,323i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,34.6465,0.0,Minicompact Cars,1999,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14815,9,0,BMW,323i Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,39.3,0.0,Minicompact Cars,1999,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14816,9,0,BMW,328i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.7,0.0,Minicompact Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14817,9,0,BMW,328i Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,37.2,0.0,Minicompact Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14818,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,32.1,0.0,Minicompact Cars,1999,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14819,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3353,0.0,33.7663,0.0,Minicompact Cars,1999,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38083,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1482,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14820,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4316,0.0,30.708,0.0,Minicompact Cars,1999,-5750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14821,6,0,Mercedes-Benz,CLK320 Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6242,0.0,35.2966,0.0,Minicompact Cars,1999,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-TC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,5,74,14822,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,34.0,0.0,Minicompact Cars,1999,-3000,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-TC,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,5,74,14823,0,0,Mitsubishi,Eclipse Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,40.1,0.0,Minicompact Cars,1999,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,5,74,14824,0,0,Mitsubishi,Eclipse Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7982,0.0,36.0809,0.0,Minicompact Cars,1999,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,5,74,14825,0,0,Mitsubishi,Eclipse Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3428,0.0,37.9345,0.0,Minicompact Cars,1999,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14826,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2213,0.0,32.3493,0.0,Minicompact Cars,1999,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14827,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,32.1,0.0,Minicompact Cars,1999,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14828,7,0,Toyota,Celica Convertible,Y,false,67,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4895,0.0,38.1593,0.0,Minicompact Cars,1999,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14829,7,0,Toyota,Celica Convertible,N,false,67,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3276,0.0,35.9048,0.0,Minicompact Cars,1999,-500,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,38086,CA model,-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1483,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,40.0,0.0,Small Pickup Trucks,1985,500,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14830,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,41.099,0.0,Minicompact Cars,1999,1500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,14831,8,0,Toyota,Paseo,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.2725,0.0,52.2473,0.0,Minicompact Cars,1999,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14832,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,41.099,0.0,Minicompact Cars,1999,1500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,14833,7,0,Toyota,Paseo Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.2725,0.0,52.2473,0.0,Minicompact Cars,1999,3000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14834,12,0,Acura,2.3CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,38.0,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14835,12,0,Acura,2.3CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.3,0.0,Subcompact Cars,1999,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,VTEC,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14836,12,0,Acura,2.3CL/3.0CL,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7454,0.0,35.8907,0.0,Subcompact Cars,1999,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,14837,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1786,0.0,40.5673,0.0,Subcompact Cars,1999,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,77,14838,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,40.4,0.0,Subcompact Cars,1999,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC-VTEC,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,14839,0,12,Acura,Integra,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1634,0.0,39.1409,0.0,Subcompact Cars,1999,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3561,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1484,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,32.0513,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14840,7,0,Bentley,Azure,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Subcompact Cars,1999,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14841,7,0,Bentley,Continental SC,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Subcompact Cars,1999,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14842,12,0,Bentley,Continental T,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3988,0.0,20.2547,0.0,Subcompact Cars,1999,-13250,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14843,9,0,BMW,323is,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,34.6465,0.0,Subcompact Cars,1999,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14844,9,0,BMW,323is,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,39.3,0.0,Subcompact Cars,1999,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14845,9,0,BMW,328is,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.7,0.0,Subcompact Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14846,9,0,BMW,328is,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,37.2,0.0,Subcompact Cars,1999,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14847,9,10,BMW,M3,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3353,0.0,33.7663,0.0,Subcompact Cars,1999,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,82,14848,12,0,Chevrolet,Camaro,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0452,0.0,36.9304,0.0,Subcompact Cars,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,82,14849,12,0,Chevrolet,Camaro,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3817,0.0,38.8202,0.0,Subcompact Cars,1999,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3560,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1485,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.0,0.0,Small Pickup Trucks,1985,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,82,14850,12,0,Chevrolet,Camaro,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6808,0.0,31.4018,0.0,Subcompact Cars,1999,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,82,14851,12,0,Chevrolet,Camaro,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.556,0.0,36.0856,0.0,Subcompact Cars,1999,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14852,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.1,0.0,36.9,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14853,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7476,0.0,39.799,0.0,Subcompact Cars,1999,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14854,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,43.6,0.0,Subcompact Cars,1999,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14855,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Subcompact Cars,1999,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14856,12,13,Chevrolet,Cavalier,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,1999,500,,SIL,,,,,,, +8.89947,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1500,0,Regular,Regular Gasoline,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,8,77,14857,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.3,0.0,59.7,0.0,Subcompact Cars,1999,4500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,14858,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.4381,0.0,44.0944,0.0,Subcompact Cars,1999,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,77,14859,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.2429,0.0,54.9375,0.0,Subcompact Cars,1999,4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3685,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1486,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,14860,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,1999,-15500,G,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14861,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,1999,-15500,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14862,12,0,Ford,Escort ZX2,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.814,0.0,41.7259,0.0,Subcompact Cars,1999,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14863,12,0,Ford,Escort ZX2,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2217,0.0,42.4845,0.0,Subcompact Cars,1999,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,3.8N,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14864,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8347,0.0,34.8985,0.0,Subcompact Cars,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14865,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,37.1,0.0,Subcompact Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14866,11,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1969,0.0,29.9694,0.0,Subcompact Cars,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14867,11,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7035,0.0,31.0806,0.0,Subcompact Cars,1999,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,14868,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1163,0.0,45.0923,0.0,Subcompact Cars,1999,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,86,14869,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.7,0.0,44.3,0.0,Subcompact Cars,1999,1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3686,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1487,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,13,86,14870,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.231,0.0,47.5594,0.0,Subcompact Cars,1999,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,14871,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.3,0.0,45.0,0.0,Subcompact Cars,1999,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-VTEC,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,86,14872,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,40.1,0.0,Subcompact Cars,1999,0,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,14873,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.4625,0.0,48.7866,0.0,Subcompact Cars,1999,3000,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,14874,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.6058,0.0,54.742,0.0,Subcompact Cars,1999,3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14875,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2931,0.0,33.9482,0.0,Subcompact Cars,1999,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14876,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6271,0.0,34.104,0.0,Subcompact Cars,1999,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,88,14877,0,0,Hyundai,Accent,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0814,0.0,46.1538,0.0,Subcompact Cars,1999,1500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,9,88,14878,0,0,Hyundai,Accent,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2239,0.0,47.8394,0.0,Subcompact Cars,1999,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14879,13,0,Hyundai,Tiburon,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5879,0.0,37.7285,0.0,Subcompact Cars,1999,-500,,2MODE CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4820,CA model,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1488,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14880,13,0,Hyundai,Tiburon,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9114,0.0,39.8146,0.0,Subcompact Cars,1999,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14881,11,0,Jaguar,XK8,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7984,0.0,31.6499,0.0,Subcompact Cars,1999,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14882,0,9,Lexus,SC,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8499,0.0,30.5453,0.0,Subcompact Cars,1999,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14883,0,9,Lexus,SC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.398,0.0,31.8972,0.0,Subcompact Cars,1999,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14884,11,0,Mercedes-Benz,CLK320,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8411,0.0,36.7347,0.0,Subcompact Cars,1999,-2250,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14885,11,0,Mercedes-Benz,CLK430,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3499,0.0,31.5972,0.0,Subcompact Cars,1999,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,82,14886,0,0,Mitsubishi,3000GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,29.6499,0.0,Subcompact Cars,1999,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,DOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14887,0,0,Mitsubishi,3000GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.8,0.0,Subcompact Cars,1999,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14888,0,0,Mitsubishi,3000GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,31.1,0.0,Subcompact Cars,1999,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,DOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,14889,0,0,Mitsubishi,3000GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,31.7,0.0,Subcompact Cars,1999,-2500,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4820,CA model,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1489,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,14890,0,0,Mitsubishi,3000GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,31.2,0.0,Subcompact Cars,1999,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-TC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,79,14891,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.2,0.0,Subcompact Cars,1999,-3000,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-TC,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,79,14892,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.8,0.0,Subcompact Cars,1999,-3750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,79,14893,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,38.6,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,79,14894,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7996,0.0,42.3077,0.0,Subcompact Cars,1999,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC-TC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,79,14895,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.6,0.0,Subcompact Cars,1999,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-TC,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,14896,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,40.2,0.0,Subcompact Cars,1999,-1000,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14897,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.5509,0.0,45.5484,0.0,Subcompact Cars,1999,2250,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14898,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.5185,0.0,51.1662,0.0,Subcompact Cars,1999,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14899,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8605,0.0,42.1353,0.0,Subcompact Cars,1999,1000,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29040,,-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,149,0,11,Isuzu,750C/I-Mark,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,36.6667,0.0,44.8718,0.0,Subcompact Cars,1985,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1490,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14900,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5375,0.0,46.5584,0.0,Subcompact Cars,1999,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14901,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.7,0.0,46.0876,0.0,Subcompact Cars,1999,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,14902,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.5365,0.0,49.5091,0.0,Subcompact Cars,1999,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14903,10,11,Nissan,Sentra/200SX,N,false,84,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5499,0.0,37.9,0.0,Subcompact Cars,1999,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14904,10,11,Nissan,Sentra/200SX,Y,false,84,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2202,0.0,39.1205,0.0,Subcompact Cars,1999,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,14905,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1292,0.0,36.9865,0.0,Subcompact Cars,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,84,14906,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3901,0.0,38.8567,0.0,Subcompact Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,14907,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.8,0.0,Subcompact Cars,1999,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,14908,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8,0.0,36.5,0.0,Subcompact Cars,1999,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14909,11,13,Pontiac,Sunfire,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.1,0.0,36.9,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4844,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1491,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.1111,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14910,11,13,Pontiac,Sunfire,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7476,0.0,39.799,0.0,Subcompact Cars,1999,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14911,11,13,Pontiac,Sunfire,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,43.6,0.0,Subcompact Cars,1999,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14912,11,13,Pontiac,Sunfire,N,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Subcompact Cars,1999,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14913,11,13,Pontiac,Sunfire,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,1999,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B204L3,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,14914,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,31.7436,0.0,Subcompact Cars,1999,-2500,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B2O4L3,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14915,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,34.4896,0.0,Subcompact Cars,1999,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B2O4R3,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14916,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.5,0.0,Subcompact Cars,1999,-3000,,SIL,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14917,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5407,0.0,46.824,0.0,Subcompact Cars,1999,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14918,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9828,0.0,44.8799,0.0,Subcompact Cars,1999,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14919,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.8,0.0,48.2,0.0,Subcompact Cars,1999,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4841,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1492,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14920,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,51.1,0.0,Subcompact Cars,1999,2500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14921,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1002,0.0,37.3344,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14922,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8393,0.0,37.5238,0.0,Subcompact Cars,1999,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14923,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7567,0.0,35.8985,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14924,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2792,0.0,36.6349,0.0,Subcompact Cars,1999,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14925,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,43.4,0.0,Subcompact Cars,1999,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,14926,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,47.1,0.0,Subcompact Cars,1999,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14927,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.4,0.0,Subcompact Cars,1999,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,14928,0,0,Suzuki,SW,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.4381,0.0,44.0944,0.0,Subcompact Cars,1999,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,77,14929,0,0,Suzuki,SW,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.2429,0.0,54.9375,0.0,Subcompact Cars,1999,4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29085,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1493,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.2051,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,14930,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8471,0.0,35.7803,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,77,14931,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3276,0.0,35.9048,0.0,Subcompact Cars,1999,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14932,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.7,0.0,42.2,0.0,Subcompact Cars,1999,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14933,9,9,Toyota,Tercel,N,false,81,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,47.7,0.0,Subcompact Cars,1999,2500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14934,9,9,Toyota,Tercel,Y,false,81,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.8932,0.0,51.5664,0.0,Subcompact Cars,1999,3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14935,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9411,0.0,36.1524,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14936,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3178,0.0,39.8986,0.0,Subcompact Cars,1999,500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,12,87,14937,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8885,0.0,57.2229,0.0,Subcompact Cars,1999,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,12,87,14938,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4177,0.0,62.875,0.0,Subcompact Cars,1999,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,87,14939,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6475,0.0,35.6478,0.0,Subcompact Cars,1999,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29085,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1494,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,87,14940,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7404,0.0,39.2508,0.0,Subcompact Cars,1999,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14941,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5681,0.0,33.8032,0.0,Subcompact Cars,1999,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14942,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9669,0.0,34.3669,0.0,Subcompact Cars,1999,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14943,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1135,0.0,34.204,0.0,Subcompact Cars,1999,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14944,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9787,0.0,39.5937,0.0,Compact Cars,1999,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14945,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,40.7,0.0,Compact Cars,1999,-500,,,T,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14946,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.982,0.0,37.2494,0.0,Compact Cars,1999,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14947,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1999,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14948,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4074,0.0,34.8041,0.0,Compact Cars,1999,-3750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14949,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5426,0.0,36.9427,0.0,Compact Cars,1999,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29085,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1495,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14950,0,14,Audi,A4 quattro,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4283,0.0,34.9482,0.0,Compact Cars,1999,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14951,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3477,0.0,34.248,0.0,Compact Cars,1999,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,14952,12,0,Bentley,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3988,0.0,20.2547,0.0,Compact Cars,1999,-13250,G,EMS 2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,87,14953,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,40.0,0.0,Compact Cars,1999,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,87,14954,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,41.5,0.0,Compact Cars,1999,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14955,0,11,BMW,323i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,35.6,0.0,Compact Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14956,0,11,BMW,323i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.8,0.0,Compact Cars,1999,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14957,0,11,BMW,328i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1709,0.0,35.2,0.0,Compact Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14958,0,11,BMW,328i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7407,0.0,36.9877,0.0,Compact Cars,1999,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14959,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.168,0.0,33.0806,0.0,Compact Cars,1999,-2500,,,,,,,,, +13.631265,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29086,CA model,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1496,0,0,Isuzu,Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,43.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14960,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7407,0.0,36.9877,0.0,Compact Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14961,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9885,0.0,30.8908,0.0,Compact Cars,1999,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,14962,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,26.8967,0.0,Compact Cars,1999,-5250,G,3MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,14963,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1994,0.0,29.1499,0.0,Compact Cars,1999,-5250,G,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14964,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.9776,0.0,41.8686,0.0,Compact Cars,1999,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,14965,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.638,0.0,45.7891,0.0,Compact Cars,1999,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14966,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.2398,0.0,47.8579,0.0,Compact Cars,1999,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14967,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2961,0.0,37.942,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14968,12,0,Chrysler,Sebring,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0996,0.0,40.191,0.0,Compact Cars,1999,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14969,12,0,Chrysler,Sebring,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5198,0.0,35.2072,0.0,Compact Cars,1999,-1750,,CLKUP,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,49086,"(DSL,TRBO) CA model",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1497,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,38.0,0.0,Small Pickup Trucks,1985,250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14970,11,0,Chrysler,Sebring Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1593,0.0,38.9851,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14971,11,0,Chrysler,Sebring Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.925,0.0,34.6806,0.0,Compact Cars,1999,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14972,11,0,Chrysler,Sebring Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.864,0.0,34.8486,0.0,Compact Cars,1999,-1750,,VMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,14973,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,46.8,0.0,Compact Cars,1999,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,14974,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,45.8,0.0,Compact Cars,1999,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,91,14975,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,43.0,0.0,Compact Cars,1999,500,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,14976,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.7,0.0,46.3,0.0,Compact Cars,1999,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,14977,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Compact Cars,1999,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,14978,0,12,Daewoo,Nubira,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Compact Cars,1999,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,14979,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2961,0.0,37.942,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1498,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14980,12,0,Dodge,Avenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1722,0.0,40.63,0.0,Compact Cars,1999,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,14981,12,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5198,0.0,35.2072,0.0,Compact Cars,1999,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14982,11,11,Dodge,Neon,Y,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.1,0.0,40.5,0.0,Compact Cars,1999,500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,14983,11,11,Dodge,Neon,Y,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2,0.0,50.4,0.0,Compact Cars,1999,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14984,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1162,0.0,39.3359,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14985,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1622,0.0,43.2109,0.0,Compact Cars,1999,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14986,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3337,0.0,37.0215,0.0,Compact Cars,1999,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14987,0,14,Ford,Contour,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7867,0.0,36.4067,0.0,Compact Cars,1999,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,14988,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1401,0.0,43.3684,0.0,Compact Cars,1999,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,14989,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2086,0.0,47.4546,0.0,Compact Cars,1999,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1499,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Small Pickup Trucks,1985,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14990,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.224,0.0,39.1358,0.0,Compact Cars,1999,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,14991,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6472,0.0,42.5185,0.0,Compact Cars,1999,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,14992,0,14,Infiniti,G20,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0166,0.0,36.5166,0.0,Compact Cars,1999,-500,,SIL CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14993,0,14,Infiniti,G20,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,39.4,0.0,Compact Cars,1999,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,14994,0,12,Jaguar,XJ8,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,30.6493,0.0,Compact Cars,1999,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,14995,0,12,Jaguar,XJR,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0433,0.0,27.6802,0.0,Compact Cars,1999,-5750,G,2MODE,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,14996,0,10,Kia,Sephia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,40.1,0.0,Compact Cars,1999,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14997,0,10,Kia,Sephia,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2,0.0,39.3,0.0,Compact Cars,1999,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,14998,0,13,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,32.9,0.0,Compact Cars,1999,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,14999,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1162,0.0,39.3359,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Two Seaters,1985,1500,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29040,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,150,0,11,Isuzu,750C/I-Mark,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,55.0,0.0,Subcompact Cars,1985,4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1500,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15000,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1622,0.0,43.2109,0.0,Compact Cars,1999,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15001,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3337,0.0,37.0215,0.0,Compact Cars,1999,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15002,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3879,0.0,35.6299,0.0,Compact Cars,1999,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15003,0,14,Mercury,Mystique,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1162,0.0,39.3359,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15004,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1622,0.0,43.2109,0.0,Compact Cars,1999,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15005,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3337,0.0,37.0215,0.0,Compact Cars,1999,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15006,0,14,Mercury,Mystique,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3879,0.0,35.6299,0.0,Compact Cars,1999,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15007,0,13,Mercury,Tracer,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1401,0.0,43.3684,0.0,Compact Cars,1999,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15008,0,13,Mercury,Tracer,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2086,0.0,47.4546,0.0,Compact Cars,1999,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15009,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.3,0.0,Compact Cars,1999,-3000,,CLKUP,,S,,,,, +14.675904000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57088,"(DSL,TRBO) CA model",-1,2300,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1501,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,38.0,0.0,Small Pickup Trucks,1985,500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15010,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.0,0.0,Compact Cars,1999,-3000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15011,0,13,Mazda,Protege,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.1146,0.0,41.9292,0.0,Compact Cars,1999,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15012,0,13,Mazda,Protege,N,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.7598,0.0,43.777,0.0,Compact Cars,1999,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15013,0,13,Mazda,Protege,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2844,0.0,37.2,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15014,0,13,Mazda,Protege,Y,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Compact Cars,1999,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15015,0,13,Mercedes-Benz,C230 Kompressor,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8491,0.0,36.5956,0.0,Compact Cars,1999,-1750,,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15016,0,13,Mercedes-Benz,C280,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.273,0.0,34.6991,0.0,Compact Cars,1999,-2250,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15017,0,13,Mercedes-Benz,C43 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8983,0.0,28.8599,0.0,Compact Cars,1999,-4750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15018,14,0,Mercedes-Benz,CL500,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,28.2,0.0,Compact Cars,1999,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15019,14,0,Mercedes-Benz,CL600,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.7,0.0,Compact Cars,1999,-9500,G,EMS 2MODE CLKUP,,,,,,, +16.612308000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49086,"(DSL,TRBO) CA model",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1502,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,33.0,0.0,Small Pickup Trucks,1985,-1000,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15020,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6695,0.0,38.7302,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15021,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9,0.0,39.4,0.0,Compact Cars,1999,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15022,14,14,Oldsmobile,Alero,N,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15023,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.6,0.0,Compact Cars,1999,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15024,11,11,Plymouth,Neon,Y,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.1,0.0,40.5,0.0,Compact Cars,1999,500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,15025,11,11,Plymouth,Neon,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2,0.0,50.4,0.0,Compact Cars,1999,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15026,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Compact Cars,1999,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15027,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.6,0.0,Compact Cars,1999,-1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15028,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5407,0.0,46.824,0.0,Compact Cars,1999,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15029,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9828,0.0,44.8799,0.0,Compact Cars,1999,1500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3570,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1503,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,35.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15030,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.8,0.0,48.2,0.0,Compact Cars,1999,1750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,15031,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,51.1,0.0,Compact Cars,1999,2500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15032,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9539,0.0,36.9091,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15033,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8393,0.0,37.5238,0.0,Compact Cars,1999,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15034,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9881,0.0,33.6176,0.0,Compact Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15035,0,13,Subaru,Legacy AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7988,0.0,34.1213,0.0,Compact Cars,1999,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15036,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6104,0.0,38.6197,0.0,Compact Cars,1999,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15037,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.5465,0.0,Compact Cars,1999,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15038,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9449,0.0,35.4,0.0,Compact Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15039,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1312,0.0,36.5,0.0,Compact Cars,1999,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3672,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1504,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Small Pickup Trucks,1985,-5250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15040,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.9,0.0,42.0,0.0,Compact Cars,1999,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15041,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6305,0.0,46.1021,0.0,Compact Cars,1999,2250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15042,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.3709,0.0,48.4227,0.0,Compact Cars,1999,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,88,15043,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9411,0.0,36.1524,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,88,15044,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3178,0.0,39.8986,0.0,Compact Cars,1999,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,87,15045,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9411,0.0,36.1524,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,87,15046,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.215,0.0,40.4108,0.0,Compact Cars,1999,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,87,15047,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1456,0.0,33.0956,0.0,Compact Cars,1999,-2500,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1600,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,15048,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.1,0.0,62.8,0.0,Compact Cars,1999,4000,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15049,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9411,0.0,36.1524,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3670,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1505,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15050,0,15,Volkswagen,Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3178,0.0,39.8986,0.0,Compact Cars,1999,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15051,0,15,Volkswagen,Jetta,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,31.9,0.0,Compact Cars,1999,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15052,0,15,Volkswagen,Jetta,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1456,0.0,33.0956,0.0,Compact Cars,1999,-2500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,87,15053,0,0,Volkswagen,New Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8885,0.0,57.2229,0.0,Compact Cars,1999,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,18,87,15054,0,0,Volkswagen,New Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4177,0.0,62.875,0.0,Compact Cars,1999,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,15055,0,0,Volkswagen,New Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6475,0.0,35.6478,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,87,15056,0,0,Volkswagen,New Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7404,0.0,39.2508,0.0,Compact Cars,1999,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,85,15057,0,0,Volkswagen,New GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6475,0.0,35.6478,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,85,15058,0,0,Volkswagen,New GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7404,0.0,39.2508,0.0,Compact Cars,1999,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,85,15059,0,0,Volkswagen,New GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.5,0.0,Compact Cars,1999,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29095,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1506,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,15060,0,13,Volkswagen,New Jetta,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8885,0.0,57.2229,0.0,Compact Cars,1999,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,15061,0,13,Volkswagen,New Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4177,0.0,62.875,0.0,Compact Cars,1999,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15062,0,13,Volkswagen,New Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6475,0.0,35.6478,0.0,Compact Cars,1999,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15063,0,13,Volkswagen,New Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7404,0.0,39.2508,0.0,Compact Cars,1999,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15064,0,13,Volkswagen,New Jetta,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,32.8,0.0,Compact Cars,1999,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15065,0,13,Volkswagen,New Jetta,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,36.0,0.0,Compact Cars,1999,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15066,13,0,Volvo,C70,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9742,0.0,35.1875,0.0,Compact Cars,1999,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15067,13,0,Volvo,C70,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1467,0.0,35.3936,0.0,Compact Cars,1999,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15068,13,0,Volvo,C70,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0261,0.0,34.2598,0.0,Compact Cars,1999,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15069,0,14,Acura,3.2TL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8549,0.0,34.4618,0.0,Midsize Cars,1999,-3000,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1507,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.0,0.0,Small Pickup Trucks,1985,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15070,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.6,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15071,0,15,Audi,A6,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3582,0.0,35.1482,0.0,Midsize Cars,1999,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15072,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7677,0.0,32.9815,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.7,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15073,0,18,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8467,0.0,33.1493,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15074,0,18,Audi,A8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6466,0.0,31.8922,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,44RA8,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15075,0,12,Bentley,Arnage,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7745,0.0,20.1,0.0,Midsize Cars,1999,-11250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15076,0,12,Bentley,Turbo RT,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3988,0.0,20.2547,0.0,Midsize Cars,1999,-13250,G,EMS 2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15077,0,13,BMW,740i,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,30.0,0.0,Midsize Cars,1999,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15078,0,13,BMW,740i,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,26.8,0.0,Midsize Cars,1999,-5250,G,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15079,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.949,0.0,36.9989,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1508,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,24.359,0.0,Small Pickup Trucks,1985,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15080,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15081,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4678,0.0,34.977,0.0,Midsize Cars,1999,-3750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,100,15082,0,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1999,-3750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15083,0,14,Cadillac,Catera,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,31.3499,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15084,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15085,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15086,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,96,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.949,0.0,36.9989,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15087,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,96,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15088,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Midsize Cars,1999,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15089,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.949,0.0,36.9989,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1509,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0,0.0,Small Pickup Trucks,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15090,0,15,Chrysler,Cirrus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.925,0.0,34.6806,0.0,Midsize Cars,1999,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15091,0,15,Chrysler,Cirrus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.864,0.0,34.8486,0.0,Midsize Cars,1999,-1750,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15092,0,14,Daewoo,Leganza,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.7,0.0,Midsize Cars,1999,-1000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15093,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.5,0.0,Midsize Cars,1999,-1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15094,0,15,Dodge,Stratus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,47.2,0.0,Midsize Cars,1999,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15095,0,15,Dodge,Stratus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1593,0.0,38.9851,0.0,Midsize Cars,1999,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15096,0,15,Dodge,Stratus,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.925,0.0,34.6806,0.0,Midsize Cars,1999,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15097,0,15,Dodge,Stratus,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.864,0.0,34.8486,0.0,Midsize Cars,1999,-1750,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15098,0,16,Ford,Taurus,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,36.0,0.0,Midsize Cars,1999,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15099,0,16,Ford,Taurus,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,33.3,0.0,Midsize Cars,1999,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,151,12,0,Jaguar,XJS,N,false,73,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1985,-9250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1510,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FFV,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15100,0,16,Ford,Taurus,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,34.3,0.0,Midsize Cars,1999,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Front-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15101,0,16,Ford,Taurus SHO,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1874,0.0,32.6137,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15102,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5928,0.0,37.6031,0.0,Midsize Cars,1999,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15103,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4478,0.0,38.537,0.0,Midsize Cars,1999,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15104,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2238,0.0,39.5907,0.0,Midsize Cars,1999,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15105,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.9,0.0,Midsize Cars,1999,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15106,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.707,0.0,35.8079,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15107,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0319,0.0,36.0585,0.0,Midsize Cars,1999,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15108,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7356,0.0,38.3059,0.0,Midsize Cars,1999,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15109,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.6,0.0,Midsize Cars,1999,-1000,,2MODE CLKUP,,,,,,, +16.612308000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49086,"(DSL,TRBO) CA model",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1511,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,33.0,0.0,Small Pickup Trucks,1985,-1000,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15110,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.6,0.0,Midsize Cars,1999,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15111,0,14,Infiniti,I30,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8683,0.0,35.3108,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15112,0,14,Infiniti,I30,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,33.8,0.0,Midsize Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15113,0,13,Infiniti,Q45,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3624,0.0,30.179,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15114,0,12,Jaguar,Vanden Plas,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5234,0.0,30.4915,0.0,Midsize Cars,1999,-5750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15115,0,12,Jaguar,Vanden Plas S.C.,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7499,0.0,28.0492,0.0,Midsize Cars,1999,-6750,G,2MODE,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15116,0,12,Jaguar,XJ8L,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,30.6493,0.0,Midsize Cars,1999,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15117,0,15,Lexus,GS 300/GS 400,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0546,0.0,32.2296,0.0,Midsize Cars,1999,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15118,0,15,Lexus,GS 300/GS 400,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3693,0.0,30.8507,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15119,0,14,Lexus,LS 400,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.398,0.0,31.8972,0.0,Midsize Cars,1999,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1512,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15120,0,16,Mercury,Sable,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,36.0,0.0,Midsize Cars,1999,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15121,0,16,Mercury,Sable,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,33.3,0.0,Midsize Cars,1999,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15122,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2006,0.0,36.6876,0.0,Midsize Cars,1999,-500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15123,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4018,0.0,42.5281,0.0,Midsize Cars,1999,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15124,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.9,0.0,Midsize Cars,1999,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15125,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,34.6,0.0,Midsize Cars,1999,-2250,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15126,0,15,Mercedes-Benz,E300 Turbodiesel,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.2398,0.0,45.5856,0.0,Midsize Cars,1999,500,,EMS 2MODE CLKUP,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15127,0,15,Mercedes-Benz,E320 Sedan,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9297,0.0,37.8552,0.0,Midsize Cars,1999,-2250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15128,0,15,Mercedes-Benz,E320 Sedan 4Matic,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4674,0.0,35.2836,0.0,Midsize Cars,1999,-2250,,EMS CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15129,0,15,Mercedes-Benz,E430,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5618,0.0,32.9664,0.0,Midsize Cars,1999,-3750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1513,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15130,0,14,Mitsubishi,Diamante,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6918,0.0,30.7692,0.0,Midsize Cars,1999,-4750,,EMS CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,96,15131,0,0,Mitsubishi,Galant,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4547,0.0,35.572,0.0,Midsize Cars,1999,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,96,15132,0,0,Mitsubishi,Galant,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5427,0.0,39.6563,0.0,Midsize Cars,1999,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,96,15133,0,0,Mitsubishi,Galant,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7282,0.0,35.207,0.0,Midsize Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15134,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9782,0.0,35.7783,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15135,0,15,Nissan,Maxima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,34.2,0.0,Midsize Cars,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15136,0,16,Oldsmobile,Aurora,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2488,0.0,32.7493,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15137,0,16,Oldsmobile,Cutlass,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Midsize Cars,1999,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15138,0,16,Oldsmobile,Cutlass,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.949,0.0,36.9989,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15139,0,17,Oldsmobile,Intrigue,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,34.5,0.0,Midsize Cars,1999,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1514,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15140,0,17,Oldsmobile,Intrigue,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15141,0,15,Plymouth,Breeze,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,39.3,0.0,Midsize Cars,1999,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15142,0,15,Plymouth,Breeze,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,47.2,0.0,Midsize Cars,1999,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15143,0,15,Plymouth,Breeze,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1593,0.0,38.9851,0.0,Midsize Cars,1999,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15144,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.949,0.0,36.9989,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15145,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1999,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15146,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5676,0.0,35.2664,0.0,Midsize Cars,1999,-3750,,CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,54RA12,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15147,0,12,Rolls-Royce,Silver Seraph,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7971,0.0,20.7,0.0,Midsize Cars,1999,-11250,G,EMS CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15148,0,12,Rolls-Royce,Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3498,0.0,20.3499,0.0,Midsize Cars,1999,-13250,G,EMS CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B204L3,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,90,15149,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,31.7436,0.0,Midsize Cars,1999,-2500,,2MODE,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4865,(GM-CHEV) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1515,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B2O4L3,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,90,15150,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,34.4896,0.0,Midsize Cars,1999,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B2O4R3,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,90,15151,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.5,0.0,Midsize Cars,1999,-3000,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E5,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15152,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.0,0.0,Midsize Cars,1999,-2500,,2MODE,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E5,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15153,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3969,0.0,38.5999,0.0,Midsize Cars,1999,-500,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E5,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15154,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0536,0.0,33.2294,0.0,Midsize Cars,1999,-2500,,2MODE,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15155,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6104,0.0,38.6197,0.0,Midsize Cars,1999,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15156,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.5465,0.0,Midsize Cars,1999,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15157,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9449,0.0,35.4,0.0,Midsize Cars,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15158,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1312,0.0,36.5,0.0,Midsize Cars,1999,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15159,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9787,0.0,39.5937,0.0,Midsize Cars,1999,-1750,,CLKUP,T,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4886,CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1516,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15160,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,40.7,0.0,Midsize Cars,1999,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15161,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5587,0.0,36.9976,0.0,Midsize Cars,1999,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15162,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.127,0.0,36.9274,0.0,Midsize Cars,1999,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15163,0,15,Volkswagen,Passat Syncro,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0553,0.0,33.5849,0.0,Midsize Cars,1999,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15164,0,15,Volvo,S70,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9742,0.0,35.1875,0.0,Midsize Cars,1999,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15165,0,15,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1467,0.0,35.3936,0.0,Midsize Cars,1999,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15166,0,15,Volvo,S70,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0261,0.0,34.2598,0.0,Midsize Cars,1999,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15167,0,15,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5331,0.0,36.0528,0.0,Midsize Cars,1999,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15168,0,15,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.545,0.0,36.5917,0.0,Midsize Cars,1999,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15169,0,15,Volvo,S70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2041,0.0,31.5968,0.0,Midsize Cars,1999,-3750,,CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1517,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15170,0,15,Volvo,S70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5195,0.0,31.4852,0.0,Midsize Cars,1999,-3750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15171,0,15,Volvo,S80,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5148,0.0,34.99,0.0,Midsize Cars,1999,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15172,0,15,Volvo,S80,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3991,0.0,34.5128,0.0,Midsize Cars,1999,-3000,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15173,0,12,Bentley,Brooklands R Limo,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.6,0.0,Large Cars,1999,-15500,G,EMS CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15174,0,13,BMW,740il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,30.0,0.0,Large Cars,1999,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15175,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7,0.0,25.4,0.0,Large Cars,1999,-7750,G,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15176,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Large Cars,1999,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15177,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1999,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15178,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9085,0.0,35.5062,0.0,Large Cars,1999,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15179,0,20,Cadillac,DeVille,Y,false,0,117,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Large Cars,1999,-4750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1518,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15180,0,0,Cadillac,Funeral Coach/Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Large Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15181,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,33.3,0.0,Large Cars,1999,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15182,0,17,Chrysler,300 M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1897,0.0,34.0868,0.0,Large Cars,1999,-2500,,VMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15183,0,16,Chrysler,Concorde,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,38.5,0.0,Large Cars,1999,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15184,0,16,Chrysler,Concorde,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,36.6,0.0,Large Cars,1999,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15185,0,19,Chrysler,LHS,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,34.0,0.0,Large Cars,1999,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15186,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,38.5,0.0,Large Cars,1999,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15187,0,17,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,35.4,0.0,Large Cars,1999,-2500,,VMODE CLKUP,,,,,,, +0.124,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,468.6666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,NGV,-1,2100,0,CNG,Natural Gas,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15188,0,21,Ford,Crown Victoria CNG,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,26.1,0.0,Large Cars,1999,1500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15189,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7236,0.0,30.3385,0.0,Large Cars,1999,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4166,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1519,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15190,0,19,Lincoln,Continental,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0961,0.0,32.0324,0.0,Large Cars,1999,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15191,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7236,0.0,30.3385,0.0,Large Cars,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15192,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7236,0.0,30.3385,0.0,Large Cars,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15193,0,16,Mercedes-Benz,S320,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.7,0.0,Large Cars,1999,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15194,0,16,Mercedes-Benz,S320,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.7,0.0,Large Cars,1999,-4750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15195,0,16,Mercedes-Benz,S420,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,27.6,0.0,Large Cars,1999,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15196,0,16,Mercedes-Benz,S500,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,27.0,0.0,Large Cars,1999,-6750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15197,0,16,Mercedes-Benz,S600,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.9,0.0,24.0,0.0,Large Cars,1999,-11250,G,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15198,0,18,Oldsmobile,Eighty-Eight/Regency,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1999,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15199,0,18,Oldsmobile,Eighty-Eight/Regency,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3977,0.0,37.1835,0.0,Large Cars,1999,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,30540,(GUZZLER),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,152,0,10,Jaguar,XJ,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Subcompact Cars,1985,-6250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4166,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1520,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15200,0,18,Pontiac,Bonneville,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9085,0.0,35.5062,0.0,Large Cars,1999,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15201,0,18,Pontiac,Bonneville,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4678,0.0,34.977,0.0,Large Cars,1999,-3750,,CLKUP,,S,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,L410MT2,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15202,0,12,Rolls-Royce,Silver Spur Park Ward,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.6,0.0,Large Cars,1999,-15500,G,EMS CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15203,0,15,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2766,0.0,37.4883,0.0,Large Cars,1999,-500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15204,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4074,0.0,34.8041,0.0,Small Station Wagons,1999,-3750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15205,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5426,0.0,36.9427,0.0,Small Station Wagons,1999,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15206,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4211,0.0,34.5499,0.0,Small Station Wagons,1999,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15207,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3477,0.0,34.248,0.0,Small Station Wagons,1999,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15208,0,33,BMW,528i Touring,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.168,0.0,33.0806,0.0,Small Station Wagons,1999,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15209,0,33,BMW,528i Touring,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,33.4,0.0,Small Station Wagons,1999,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4893,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1521,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15210,0,33,BMW,540i Touring,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,26.8967,0.0,Small Station Wagons,1999,-5250,G,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15211,0,19,Daewoo,Nubira Station Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Small Station Wagons,1999,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15212,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Small Station Wagons,1999,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15213,0,26,Ford,Escort Wagon,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1401,0.0,43.3684,0.0,Small Station Wagons,1999,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15214,0,26,Ford,Escort Wagon,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2086,0.0,47.4546,0.0,Small Station Wagons,1999,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,95,15215,0,0,Hyundai,Elantra Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5818,0.0,38.0428,0.0,Small Station Wagons,1999,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,95,15216,0,0,Hyundai,Elantra Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1,0.0,41.2643,0.0,Small Station Wagons,1999,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15217,0,26,Mercury,Tracer Wagon,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1401,0.0,43.3684,0.0,Small Station Wagons,1999,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15218,0,26,Mercury,Tracer Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2086,0.0,47.4546,0.0,Small Station Wagons,1999,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15219,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.2986,0.0,44.3964,0.0,Small Station Wagons,1999,1500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2885,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1522,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15220,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9828,0.0,44.8799,0.0,Small Station Wagons,1999,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15221,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.8,0.0,48.2,0.0,Small Station Wagons,1999,1750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15222,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6882,0.0,48.52,0.0,Small Station Wagons,1999,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15223,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1002,0.0,37.3344,0.0,Small Station Wagons,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15224,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8393,0.0,37.5238,0.0,Small Station Wagons,1999,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15225,0,24,Suzuki,Esteem Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.1,0.0,Small Station Wagons,1999,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15226,0,24,Suzuki,Esteem Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.9,0.0,46.7,0.0,Small Station Wagons,1999,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15227,0,36,Audi,A6 Avant quattro,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7677,0.0,32.9815,0.0,Midsize Station Wagons,1999,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15228,0,38,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8423,0.0,33.0861,0.0,Midsize Station Wagons,1999,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15229,0,38,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5179,0.0,34.4083,0.0,Midsize Station Wagons,1999,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2885,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1523,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-6250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,46,107,15230,0,0,Isuzu,Oasis,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,33.0,0.0,Midsize Station Wagons,1999,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,31,101,15231,0,0,Lexus,RX 300,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,30.3,0.0,Midsize Station Wagons,1999,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,31,101,15232,0,0,Lexus,RX 300 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,28.1,0.0,Midsize Station Wagons,1999,-3250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15233,0,38,Mercury,Sable Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8423,0.0,33.0861,0.0,Midsize Station Wagons,1999,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15234,0,38,Mercury,Sable Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9928,0.0,35.0519,0.0,Midsize Station Wagons,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,44,98,15235,0,0,Mercedes-Benz,E320 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4437,0.0,35.2898,0.0,Midsize Station Wagons,1999,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,44,98,15236,0,0,Mercedes-Benz,E320 Wagon 4Matic,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7666,0.0,33.4603,0.0,Midsize Station Wagons,1999,-3000,,EMS CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15237,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8015,0.0,37.1795,0.0,Midsize Station Wagons,1999,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15238,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7407,0.0,37.6368,0.0,Midsize Station Wagons,1999,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15239,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9881,0.0,33.6176,0.0,Midsize Station Wagons,1999,-1000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2855,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1524,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,DOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15240,0,36,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7988,0.0,34.1213,0.0,Midsize Station Wagons,1999,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15241,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9787,0.0,39.5937,0.0,Midsize Station Wagons,1999,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15242,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,40.7,0.0,Midsize Station Wagons,1999,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15243,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5587,0.0,36.9976,0.0,Midsize Station Wagons,1999,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15244,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.127,0.0,36.9274,0.0,Midsize Station Wagons,1999,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15245,0,36,Volkswagen,Passat Wagon Syncro,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0553,0.0,33.5849,0.0,Midsize Station Wagons,1999,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,37,98,15246,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9742,0.0,35.1875,0.0,Midsize Station Wagons,1999,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,37,98,15247,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1467,0.0,35.3936,0.0,Midsize Station Wagons,1999,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,37,98,15248,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0261,0.0,34.2598,0.0,Midsize Station Wagons,1999,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,37,98,15249,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5331,0.0,36.0528,0.0,Midsize Station Wagons,1999,-2250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1525,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,37,98,15250,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.545,0.0,36.5917,0.0,Midsize Station Wagons,1999,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,37,98,15251,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2041,0.0,31.5968,0.0,Midsize Station Wagons,1999,-3750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,37,98,15252,0,0,Volvo,V70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5195,0.0,31.4852,0.0,Midsize Station Wagons,1999,-3750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15253,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1999,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15254,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,1999,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15255,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3351,0.0,27.7077,0.0,Small Pickup Trucks 2WD,1999,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15256,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9849,0.0,29.6,0.0,Small Pickup Trucks 2WD,1999,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15257,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1999,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15258,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,1999,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15259,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3365,0.0,27.7102,0.0,Small Pickup Trucks 2WD,1999,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3761,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1526,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15260,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9765,0.0,29.6,0.0,Small Pickup Trucks 2WD,1999,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15261,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.0,0.0,Small Pickup Trucks 2WD,1999,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15262,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,1999,0,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15263,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9111,0.0,26.9107,0.0,Small Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15264,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,29.6,0.0,Small Pickup Trucks 2WD,1999,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15265,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1202,0.0,23.7965,0.0,Standard Pickup Trucks 2WD,1999,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15266,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,23.7,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15267,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9007,0.0,25.5897,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15268,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7377,0.0,28.9588,0.0,Standard Pickup Trucks 2WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15269,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8757,0.0,26.4699,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3763,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1527,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15270,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.227,0.0,26.1427,0.0,Standard Pickup Trucks 2WD,1999,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15271,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2844,0.0,25.6645,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15272,0,0,Chevrolet,Silverado 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.8,0.0,Standard Pickup Trucks 2WD,1999,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15273,0,0,Chevrolet,Silverado 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3366,0.0,20.3299,0.0,Standard Pickup Trucks 2WD,1999,-11000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15274,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9372,0.0,31.0881,0.0,Standard Pickup Trucks 2WD,1999,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15275,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,26.7,0.0,Standard Pickup Trucks 2WD,1999,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15276,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,27.9,0.0,Standard Pickup Trucks 2WD,1999,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15277,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.8,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15278,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.7,0.0,22.6,0.0,Standard Pickup Trucks 2WD,1999,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15279,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8511,0.0,21.3154,0.0,Standard Pickup Trucks 2WD,1999,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3960,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1528,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,15.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15280,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,25.1419,0.0,Standard Pickup Trucks 2WD,1999,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15281,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,27.1,0.0,Standard Pickup Trucks 2WD,1999,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15282,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9357,0.0,24.2828,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15283,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.873,0.0,23.5188,0.0,Standard Pickup Trucks 2WD,1999,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15284,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9304,0.0,22.005,0.0,Standard Pickup Trucks 2WD,1999,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15285,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3743,0.0,25.184,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15286,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1778,0.0,27.1032,0.0,Standard Pickup Trucks 2WD,1999,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15287,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1905,0.0,24.6207,0.0,Standard Pickup Trucks 2WD,1999,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15288,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.588,0.0,23.9759,0.0,Standard Pickup Trucks 2WD,1999,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15289,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9658,0.0,22.3595,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3762,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1529,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15290,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0113,0.0,23.2551,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15291,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.5619,0.0,23.9236,0.0,Standard Pickup Trucks 2WD,1999,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15292,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9487,0.0,22.329,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +0.155,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,NGV,-1,2600,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15293,0,0,Ford,F250 Pickup 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.5,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1999,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FFV,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15294,0,0,Ford,Ranger2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,28.003,0.0,Standard Pickup Trucks 2WD,1999,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FFV,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15295,0,0,Ford,Ranger 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5924,0.0,29.4337,0.0,Standard Pickup Trucks 2WD,1999,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15296,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2316,0.0,31.491,0.0,Standard Pickup Trucks 2WD,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15297,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8915,0.0,34.1048,0.0,Standard Pickup Trucks 2WD,1999,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15298,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7899,0.0,26.9894,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15299,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.274,0.0,28.4188,0.0,Standard Pickup Trucks 2WD,1999,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,83,153,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,32.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3761,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1530,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15300,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.901,0.0,25.6162,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15301,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8105,0.0,29.2441,0.0,Standard Pickup Trucks 2WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15302,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8794,0.0,26.4745,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15303,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2335,0.0,26.1556,0.0,Standard Pickup Trucks 2WD,1999,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15304,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1129,0.0,23.7782,0.0,Standard Pickup Trucks 2WD,1999,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15305,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2878,0.0,25.6721,0.0,Standard Pickup Trucks 2WD,1999,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15306,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,23.7,0.0,Standard Pickup Trucks 2WD,1999,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15307,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.8,0.0,Standard Pickup Trucks 2WD,1999,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15308,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3165,0.0,20.3089,0.0,Standard Pickup Trucks 2WD,1999,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15309,0,0,Mazda,B2500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2316,0.0,31.491,0.0,Standard Pickup Trucks 2WD,1999,-1750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3860,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1531,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15310,0,0,Mazda,B2500,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8915,0.0,34.1048,0.0,Standard Pickup Trucks 2WD,1999,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FFV,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15311,0,0,Mazda,B3000 FFV 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4678,0.0,27.9343,0.0,Standard Pickup Trucks 2WD,1999,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FFV,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15312,0,0,Mazda,B3000 FFV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5924,0.0,29.4337,0.0,Standard Pickup Trucks 2WD,1999,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15313,0,0,Mazda,B4000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2791,0.0,27.6011,0.0,Standard Pickup Trucks 2WD,1999,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15314,0,0,Mazda,B4000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2744,0.0,28.4194,0.0,Standard Pickup Trucks 2WD,1999,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15315,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7564,0.0,30.2633,0.0,Standard Pickup Trucks 2WD,1999,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15316,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7723,0.0,33.484,0.0,Standard Pickup Trucks 2WD,1999,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15317,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.735,0.0,30.6778,0.0,Standard Pickup Trucks 2WD,1999,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15318,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3755,0.0,34.2564,0.0,Standard Pickup Trucks 2WD,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15319,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,27.5,0.0,Standard Pickup Trucks 2WD,1999,-3250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3880,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1532,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15320,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7169,0.0,29.7317,0.0,Standard Pickup Trucks 2WD,1999,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15321,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3958,0.0,30.7317,0.0,Standard Pickup Trucks 2WD,1999,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15322,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.8,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15323,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.8,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15324,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15325,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,22.5,0.0,Standard Pickup Trucks 4WD,1999,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15326,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8089,0.0,23.1632,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15327,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.2,0.0,Standard Pickup Trucks 4WD,1999,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15328,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3553,0.0,22.6555,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15329,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.7,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3961,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,1533,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,15.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15330,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3964,0.0,27.4924,0.0,Standard Pickup Trucks 4WD,1999,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15331,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9891,0.0,23.2771,0.0,Standard Pickup Trucks 4WD,1999,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15332,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8924,0.0,24.592,0.0,Standard Pickup Trucks 4WD,1999,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15333,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5576,0.0,21.0437,0.0,Standard Pickup Trucks 4WD,1999,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15334,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.9,0.0,22.5,0.0,Standard Pickup Trucks 4WD,1999,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15335,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7885,0.0,21.1193,0.0,Standard Pickup Trucks 4WD,1999,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15336,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.275,0.0,21.6904,0.0,Standard Pickup Trucks 4WD,1999,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15337,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0466,0.0,20.5152,0.0,Standard Pickup Trucks 4WD,1999,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15338,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3889,0.0,22.7436,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15339,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,23.0,0.0,Standard Pickup Trucks 4WD,1999,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4166,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1534,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15340,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0301,0.0,21.4275,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15341,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1999,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15342,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0389,0.0,20.4207,0.0,Standard Pickup Trucks 4WD,1999,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15343,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8137,0.0,20.9709,0.0,Standard Pickup Trucks 4WD,1999,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15344,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.5609,0.0,21.4769,0.0,Standard Pickup Trucks 4WD,1999,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15345,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4227,0.0,19.5996,0.0,Standard Pickup Trucks 4WD,1999,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FFV,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15346,0,0,Ford,Ranger 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6719,0.0,24.639,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FFV,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15347,0,0,Ford,Ranger 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5,0.0,27.4,0.0,Standard Pickup Trucks 4WD,1999,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15348,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7567,0.0,25.4353,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15349,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3762,0.0,26.1816,0.0,Standard Pickup Trucks 4WD,1999,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4166,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1535,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15350,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15351,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,22.5,0.0,Standard Pickup Trucks 4WD,1999,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15352,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7738,0.0,23.1106,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15353,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.2,0.0,Standard Pickup Trucks 4WD,1999,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15354,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.8,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15355,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3377,0.0,22.6378,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15356,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.8,0.0,Standard Pickup Trucks 4WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15357,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.7,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15358,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3964,0.0,27.4924,0.0,Standard Pickup Trucks 4WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15359,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.7,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4893,(GM-CHEV) (FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1536,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15360,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3964,0.0,27.4924,0.0,Standard Pickup Trucks 4WD,1999,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FFV,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15361,0,0,Mazda,B3000 FFV 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6719,0.0,24.639,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FFV,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15362,0,0,Mazda,B3000 FFV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5,0.0,27.4,0.0,Standard Pickup Trucks 4WD,1999,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15363,0,0,Mazda,B4000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7567,0.0,25.4353,0.0,Standard Pickup Trucks 4WD,1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15364,0,0,Mazda,B4000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3759,0.0,26.1814,0.0,Standard Pickup Trucks 4WD,1999,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15365,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7941,0.0,26.7823,0.0,Standard Pickup Trucks 4WD,1999,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15366,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0738,0.0,23.9739,0.0,Standard Pickup Trucks 4WD,1999,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15367,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.074,0.0,23.8609,0.0,Standard Pickup Trucks 4WD,1999,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15368,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0218,0.0,26.682,0.0,Standard Pickup Trucks 4WD,1999,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15369,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3231,0.0,26.9865,0.0,Standard Pickup Trucks 4WD,1999,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1537,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15370,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0635,0.0,25.1512,0.0,Standard Pickup Trucks 4WD,1999,-4250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15371,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,24.9359,0.0,Standard Pickup Trucks 4WD,1999,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15372,0,0,Chevrolet,Astro 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9111,0.0,26.9107,0.0,"Vans, Cargo Type",1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15373,0,0,Chevrolet,Astro AWD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,"Vans, Cargo Type",1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15374,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5996,0.0,24.2001,0.0,"Vans, Cargo Type",1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15375,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9966,0.0,23.4911,0.0,"Vans, Cargo Type",1999,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15376,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1033,0.0,22.6657,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15377,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.9,0.0,21.6,0.0,"Vans, Cargo Type",1999,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15378,0,0,Dodge,B1500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9178,0.0,24.3727,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15379,0,0,Dodge,B1500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.1,0.0,"Vans, Cargo Type",1999,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1538,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15380,0,0,Dodge,B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,24.4,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15381,0,0,Dodge,B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.1,0.0,"Vans, Cargo Type",1999,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15382,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5837,0.0,23.3377,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15383,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.831,0.0,23.0418,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15384,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9487,0.0,22.329,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15385,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2278,0.0,22.8475,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15386,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9714,0.0,22.6481,0.0,"Vans, Cargo Type",1999,-9250,,CLKUP,,,,,,, +0.155,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,NGV,-1,2600,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15387,0,0,Ford,E250 Econoline 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6,0.0,19.1,0.0,"Vans, Cargo Type",1999,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15388,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5707,0.0,24.2096,0.0,"Vans, Cargo Type",1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15389,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.993,0.0,23.4813,0.0,"Vans, Cargo Type",1999,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1539,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15390,0,0,GMC,Savana 1500/2500 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1031,0.0,22.6835,0.0,"Vans, Cargo Type",1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15391,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9111,0.0,26.9107,0.0,"Vans, Cargo Type",1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15392,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,"Vans, Cargo Type",1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15393,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,25.5,0.0,"Vans, Passenger Type",1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15394,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.4,0.0,"Vans, Passenger Type",1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15395,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.3,0.0,"Vans, Passenger Type",1999,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15396,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15397,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0971,0.0,23.1883,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15398,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.1498,0.0,20.8,0.0,"Vans, Passenger Type",1999,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15399,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,24.4,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3301,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,83,154,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4865,(GM-CHEV) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1540,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15400,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,23.6,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15401,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,22.2,0.0,"Vans, Passenger Type",1999,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15402,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1351,0.0,22.7195,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15403,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8,0.0,22.4,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15404,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,21.4,0.0,"Vans, Passenger Type",1999,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15405,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.3,0.0,"Vans, Passenger Type",1999,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15406,0,0,GMC,Savana 1500/2500 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15407,0,0,GMC,Savana 1500/2500 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0971,0.0,23.1883,0.0,"Vans, Passenger Type",1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15408,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,25.5,0.0,"Vans, Passenger Type",1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15409,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.4,0.0,"Vans, Passenger Type",1999,-6250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4886,CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1541,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15410,0,0,Volkswagen,Eurovan Camper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.1,0.0,Minivan - 2WD,1999,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15411,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1438,0.0,32.8585,0.0,Sport Utility Vehicle - 4WD,1999,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15412,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7384,0.0,35.0421,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15413,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.9,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15414,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.599,0.0,30.9971,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FFV,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15415,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.0,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15416,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8553,0.0,30.1489,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15417,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.2,0.0,Minivan - 2WD,1999,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15418,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,33.0,0.0,Minivan - 2WD,1999,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15419,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5949,0.0,30.9857,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1542,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FFV,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15420,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.0,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15421,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8602,0.0,30.1711,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15422,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,30.0,0.0,Minivan - 2WD,1999,-4250,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15423,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6488,0.0,29.7987,0.0,Minivan - 2WD,1999,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15424,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,29.0,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15425,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6488,0.0,29.7987,0.0,Minivan - 2WD,1999,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15426,0,0,Ford,Windstar FWD Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.72,0.0,29.1617,0.0,Minivan - 2WD,1999,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VTEC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15427,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8635,0.0,32.7144,0.0,Minivan - 2WD,1999,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15428,0,0,Mercury,Villager FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.873,0.0,30.8408,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15429,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0278,0.0,31.2816,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1543,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15430,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.9,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15431,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.2,0.0,Minivan - 2WD,1999,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15432,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,33.0,0.0,Minivan - 2WD,1999,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15433,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5948,0.0,30.9855,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FFV,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15434,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.0,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15435,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8995,0.0,30.3499,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15436,0,0,Pontiac,Trans Sport/Montana 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.9,0.0,Minivan - 2WD,1999,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15437,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2792,0.0,31.1504,0.0,Minivan - 2WD,1999,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15438,0,0,Volkswagen,Eurovan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5462,0.0,25.1276,0.0,Minivan - 2WD,1999,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15439,0,0,Chrysler,Town and Country AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7487,0.0,29.597,0.0,Minivan - 4WD,1999,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4956,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1544,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15440,0,0,Dodge,Caravan/Grand Caravan AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,29.2,0.0,Minivan - 4WD,1999,-5250,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15441,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7487,0.0,29.597,0.0,Minivan - 4WD,1999,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15442,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9111,0.0,26.9107,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15443,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,29.6,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15444,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0971,0.0,23.1883,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15445,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1033,0.0,22.6654,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15446,0,0,Chevrolet,Tracker 2WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0389,0.0,35.7429,0.0,Sport Utility Vehicle - 2WD,1999,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15447,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8822,0.0,32.6451,0.0,Sport Utility Vehicle - 2WD,1999,-500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15448,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3389,0.0,32.5686,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15449,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1777,0.0,33.2548,0.0,Sport Utility Vehicle - 2WD,1999,-500,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4956,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1545,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15450,0,0,Chevrolet,Tracker 2WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2775,0.0,32.631,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15451,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,25.1419,0.0,Sport Utility Vehicle - 2WD,1999,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15452,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15453,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,21.5288,0.0,Sport Utility Vehicle - 2WD,1999,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15454,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.831,0.0,23.0418,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15455,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9714,0.0,22.6481,0.0,Sport Utility Vehicle - 2WD,1999,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15456,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5654,0.0,26.7068,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15457,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.2,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15458,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15459,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,1999,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1546,0,0,Chevrolet,K10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15460,0,0,GMC,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0971,0.0,23.1883,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15461,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1033,0.0,22.6654,0.0,Sport Utility Vehicle - 2WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15462,0,0,GMC,Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9111,0.0,26.9107,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15463,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,29.6,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15464,0,0,Honda,Passport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2018,0.0,26.1263,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15465,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6936,0.0,26.2936,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15466,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.927,0.0,31.1824,0.0,Sport Utility Vehicle - 2WD,1999,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15467,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5802,0.0,26.4,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15468,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8268,0.0,30.8543,0.0,Sport Utility Vehicle - 2WD,1999,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15469,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1982,0.0,26.1101,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4946,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1547,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15470,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6843,0.0,26.285,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15471,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.4928,0.0,27.6986,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15472,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0567,0.0,32.1755,0.0,Sport Utility Vehicle - 2WD,1999,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15473,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7247,0.0,28.1103,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15474,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,30.8,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15475,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7994,0.0,26.6966,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15476,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4499,0.0,29.2969,0.0,Sport Utility Vehicle - 2WD,1999,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15477,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,1999,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,2V,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15478,0,0,Lincoln,Navigator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9714,0.0,22.6481,0.0,Sport Utility Vehicle - 2WD,1999,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,4V,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15479,0,0,Lincoln,Navigator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,22.1,0.0,Sport Utility Vehicle - 2WD,1999,-11250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4948,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1548,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15480,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15481,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,1999,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15482,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1229,0.0,30.801,0.0,Sport Utility Vehicle - 2WD,1999,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15483,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3058,0.0,27.2419,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15484,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5842,0.0,26.1855,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15485,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,1999,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15486,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1228,0.0,30.8047,0.0,Sport Utility Vehicle - 2WD,1999,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15487,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3058,0.0,27.2419,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15488,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.4,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15489,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4942,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1549,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15490,0,0,Suzuki,Grand Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.947,0.0,26.7477,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15491,0,0,Suzuki,Grand Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15492,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,1999,0,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15493,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0151,0.0,35.8388,0.0,Sport Utility Vehicle - 2WD,1999,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15494,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15495,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15496,0,0,Suzuki,Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15497,0,0,Suzuki,Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15498,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,30.9,0.0,Sport Utility Vehicle - 2WD,1999,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15499,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,1999,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,83,155,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.2051,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38091,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1550,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15500,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,1999,-4250,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15501,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,1999,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15502,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,1999,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15503,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,1999,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15504,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,1999,0,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15505,0,0,Acura,SLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5303,0.0,24.5203,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15506,0,0,Cadillac,Escalade 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,20.8,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15507,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15508,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,22.5,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15509,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7205,0.0,20.7702,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3770,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1551,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15510,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1123,0.0,23.8999,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,CLKUP,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15511,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8217,0.0,34.8636,0.0,Sport Utility Vehicle - 4WD,1999,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15512,0,0,Chevrolet,Tracker 4WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3224,0.0,31.7548,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15513,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9544,0.0,31.6693,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15514,0,0,Chevrolet,Tracker 4WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2006,0.0,31.8931,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15515,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.9694,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15516,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9641,0.0,23.2271,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15517,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.3,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15518,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.1,0.0,21.1,0.0,Sport Utility Vehicle - 4WD,1999,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15519,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,20.6813,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3771,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1552,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15520,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.4,0.0,Sport Utility Vehicle - 4WD,1999,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15521,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6005,0.0,24.7257,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15522,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8933,0.0,24.824,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15523,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9494,0.0,25.8541,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15524,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3974,0.0,23.7849,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15525,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15526,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,22.5,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15527,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7141,0.0,20.7963,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,CLKUP,,,,,,, +25.479000000000003,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.5,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15528,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1123,0.0,23.8999,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15529,0,0,Honda,Passport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.1289,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3772,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1553,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15530,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6818,0.0,26.2818,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15531,0,0,Infiniti,QX4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.9443,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15532,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.5972,0.0,Sport Utility Vehicle - 4WD,1999,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15533,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5694,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15534,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,26.3299,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15535,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.1318,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15536,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6687,0.0,26.2687,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15537,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5282,0.0,24.5119,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15538,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15539,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,25.3,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3890,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1554,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15540,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4265,0.0,26.6378,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15541,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15542,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4351,0.0,26.6392,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15543,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,23.8962,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15544,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7746,0.0,23.1,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15545,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,25.3,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15546,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6,0.0,22.8,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15547,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.5972,0.0,24.7574,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15548,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4499,0.0,29.2969,0.0,Sport Utility Vehicle - 4WD,1999,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15549,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,29.0,0.0,Sport Utility Vehicle - 4WD,1999,-2500,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3970,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1555,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.1026,0.0,Standard Pickup Trucks,1985,-15500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15550,0,0,Land Rover,Discovery,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,21.8,0.0,Sport Utility Vehicle - 4WD,1999,-9500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15551,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4104,0.0,20.7014,0.0,Sport Utility Vehicle - 4WD,1999,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15552,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4104,0.0,20.7014,0.0,Sport Utility Vehicle - 4WD,1999,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15553,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9999,0.0,20.5746,0.0,Sport Utility Vehicle - 4WD,1999,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15554,0,0,Lexus,LX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,20.9,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,2V,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15555,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.4,0.0,Sport Utility Vehicle - 4WD,1999,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,4V,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15556,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4846,0.0,21.0537,0.0,Sport Utility Vehicle - 4WD,1999,-11250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15557,0,0,Mercedes-Benz,ML320,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5526,0.0,26.3166,0.0,Sport Utility Vehicle - 4WD,1999,-5750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15558,0,0,Mercedes-Benz,ML430,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,1999,-8000,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15559,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8823,0.0,24.824,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3770,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1556,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15560,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3974,0.0,23.7849,0.0,Sport Utility Vehicle - 4WD,1999,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15561,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1855,0.0,25.3455,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15562,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15563,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3798,0.0,24.6885,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15564,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7589,0.0,26.6844,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15565,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2438,0.0,26.3015,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15566,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0784,0.0,25.2348,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15567,0,0,Mitsubishi,Nativa 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8022,0.0,26.9633,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15568,0,0,Mitsubishi,Nativa 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2438,0.0,26.3015,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15569,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.7475,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3772,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1557,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,15570,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,22.5,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15571,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15572,0,0,Suzuki,Grand Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15573,0,0,Suzuki,Grand Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,1999,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15574,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,34.1,0.0,Sport Utility Vehicle - 4WD,1999,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15575,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8669,0.0,34.9999,0.0,Sport Utility Vehicle - 4WD,1999,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15576,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15577,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15578,0,0,Suzuki,Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15579,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3890,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1558,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15580,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9863,0.0,26.411,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15581,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9472,0.0,26.948,0.0,Sport Utility Vehicle - 4WD,1999,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15582,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6968,0.0,25.0143,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15583,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,24.9359,0.0,Sport Utility Vehicle - 4WD,1999,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15584,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,20.9,0.0,Sport Utility Vehicle - 4WD,1999,-9250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15585,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2899,0.0,33.9325,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15586,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1536,0.0,32.1723,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15587,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.973,0.0,33.8132,0.0,Sport Utility Vehicle - 4WD,1999,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15588,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15589,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2343,0.0,30.1499,0.0,Two Seaters,2000,-4750,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4956,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1559,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15590,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,30.4,0.0,Two Seaters,2000,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15591,0,0,BMW,M Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,32.7,0.0,Two Seaters,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15592,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.6,0.0,Two Seaters,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15593,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.022,0.0,32.887,0.0,Two Seaters,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15594,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.2,0.0,Two Seaters,2000,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15595,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.4,0.0,Two Seaters,2000,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15596,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Two Seaters,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15597,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.022,0.0,32.887,0.0,Two Seaters,2000,-3750,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15598,0,0,BMW,Z8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9535,0.0,26.3337,0.0,Two Seaters,2000,-8000,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15599,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,32.2,0.0,Two Seaters,2000,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3410,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,156,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1985,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4956,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1560,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15600,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,34.9,0.0,Two Seaters,2000,-3750,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15601,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.3853,0.0,26.7962,0.0,Two Seaters,2000,-9500,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15602,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.3853,0.0,26.7962,0.0,Two Seaters,2000,-9500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15603,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2000,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15604,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.498,0.0,Two Seaters,2000,-15500,T,3MODE,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,6700,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,15605,0,0,Ferrari,550 Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,9.3989,0.0,16.7,0.0,Two Seaters,2000,-21500,T,,,,,,,, +6.218642,0.0,0.0,0.0,49,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,167.67924528301887,53,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1050,0,Regular,Regular Gasoline,-1,-1,61,0.0,0,0.0,0.0,0.0,0.0,0,0,15606,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,68.1881,0.0,89.2029,0.0,Two Seaters,2000,6750,,SIL,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15607,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4996,0.0,32.6972,0.0,Two Seaters,2000,-3000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15608,0,0,Lotus,Esprit.v8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,28.8,0.0,Two Seaters,2000,-6750,T,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15609,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,35.5389,0.0,Two Seaters,2000,-500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1561,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15610,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,0.0,37.6,0.0,Two Seaters,2000,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15611,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.4,0.0,36.7,0.0,Two Seaters,2000,0,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15612,8,0,Mercedes-Benz,SL500,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8498,0.0,29.1,0.0,Two Seaters,2000,-5750,T,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15613,8,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4,0.0,24.4,0.0,Two Seaters,2000,-9500,T,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15614,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.6152,0.0,37.9108,0.0,Two Seaters,2000,-1750,,EMS 2MODE CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15615,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4997,0.0,39.1869,0.0,Two Seaters,2000,-1750,,EMS,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15616,0,0,Plymouth,Prowler,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.7,0.0,Two Seaters,2000,-4750,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15617,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4354,0.0,31.543,0.0,Two Seaters,2000,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15618,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,35.1,0.0,Two Seaters,2000,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15619,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4222,0.0,30.8691,0.0,Two Seaters,2000,-5750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4946,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1562,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15620,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,32.7,0.0,Two Seaters,2000,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15621,2,0,Toyota,MR2,Y,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,38.3,0.0,Two Seaters,2000,500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15622,6,0,Aston Martin,DB-7 Vantage Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,23.9,0.0,Minicompact Cars,2000,-13250,T,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15623,6,0,Aston Martin,DB-7 Vantage Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.2654,0.0,23.4237,0.0,Minicompact Cars,2000,-13250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15624,6,0,Aston Martin,DB-7 Vantage Volante,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.2,0.0,23.0,0.0,Minicompact Cars,2000,-13250,T,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15625,6,0,Aston Martin,DB-7 Vantage Volante,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.1,0.0,22.8,0.0,Minicompact Cars,2000,-13250,T,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,65,15626,0,0,Audi,TT Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,40.0469,0.0,Minicompact Cars,2000,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,15627,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,36.6,0.0,Minicompact Cars,2000,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15628,0,9,BMW,323i Convertible,Y,false,0,74,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.7,0.0,Minicompact Cars,2000,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15629,0,9,BMW,323i Convertible,Y,false,0,74,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.2,0.0,Minicompact Cars,2000,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4948,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1563,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15630,0,9,BMW,M Roadster,Y,false,0,74,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,32.7,0.0,Minicompact Cars,2000,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15631,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.7987,0.0,Minicompact Cars,2000,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15632,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8741,0.0,28.3131,0.0,Minicompact Cars,2000,-5750,T,2MODE,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15633,6,0,Mercedes-Benz,CLK320 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6242,0.0,35.2966,0.0,Minicompact Cars,2000,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15634,6,0,Mercedes-Benz,CLK430 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.5997,0.0,Minicompact Cars,2000,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15635,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2213,0.0,32.3493,0.0,Minicompact Cars,2000,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15636,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2428,0.0,30.7628,0.0,Minicompact Cars,2000,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15637,5,0,Porsche,911 Carrera,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,32.1,0.0,Minicompact Cars,2000,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15638,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5898,0.0,30.1442,0.0,Minicompact Cars,2000,-5750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6M,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15639,6,0,Qvale,Detomaso Mangusta,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,39.7436,0.0,Minicompact Cars,2000,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4942,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1564,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,15640,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1883,0.0,38.9626,0.0,Subcompact Cars,2000,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,15641,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0294,0.0,39.7852,0.0,Subcompact Cars,2000,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC-VTEC,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,15642,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.846,0.0,38.8605,0.0,Subcompact Cars,2000,-500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15643,7,0,Bentley,Azure,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3823,0.0,20.0411,0.0,Subcompact Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15644,7,0,Bentley,Continental SC,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3823,0.0,20.0411,0.0,Subcompact Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15645,12,0,Bentley,Continental T,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.4896,0.0,20.4167,0.0,Subcompact Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15646,9,0,BMW,323ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,34.7,0.0,Subcompact Cars,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15647,9,0,BMW,323ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.8,0.0,Subcompact Cars,2000,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15648,9,0,BMW,328ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2,0.0,34.2,0.0,Subcompact Cars,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15649,9,0,BMW,328ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7895,0.0,37.0222,0.0,Subcompact Cars,2000,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1565,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15650,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0237,0.0,36.9159,0.0,Subcompact Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15651,12,0,Chevrolet,Camaro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3912,0.0,38.8618,0.0,Subcompact Cars,2000,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15652,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,32.2,0.0,Subcompact Cars,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15653,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.362,0.0,34.8622,0.0,Subcompact Cars,2000,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15654,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.1,0.0,36.9,0.0,Subcompact Cars,2000,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15655,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7476,0.0,40.0,0.0,Subcompact Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15656,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,43.4,0.0,Subcompact Cars,2000,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15657,12,13,Chevrolet,Cavalier,Y,false,85,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Subcompact Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15658,12,13,Chevrolet,Cavalier,N,false,85,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,2000,500,,SIL,,,,,,, +9.141184,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1550,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,8,77,15659,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.9,0.0,59.0,0.0,Subcompact Cars,2000,4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1566,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,15660,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.5415,0.0,44.0995,0.0,Subcompact Cars,2000,2250,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,8,77,15661,0,10,Chevrolet,Metro,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.283,0.0,54.2,0.0,Subcompact Cars,2000,4000,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,15662,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,2000,-15500,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15663,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,2000,-15500,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15664,0,12,Ford,Escort ZX2,Y,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.2,0.0,42.0,0.0,Subcompact Cars,2000,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15665,0,12,Ford,Escort ZX2,Y,false,0,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1308,0.0,41.8706,0.0,Subcompact Cars,2000,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,3.8N,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15666,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1156,0.0,35.1066,0.0,Subcompact Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,3.8N,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15667,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7684,0.0,36.8187,0.0,Subcompact Cars,2000,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15668,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3656,0.0,30.3974,0.0,Subcompact Cars,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15669,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.6,0.0,Subcompact Cars,2000,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1567,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Vans,1985,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4V,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15670,11,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5041,0.0,31.3066,0.0,Subcompact Cars,2000,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,15671,11,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.3,0.0,23.3,0.0,Subcompact Cars,2000,-9500,T,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,15672,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6,0.0,44.4,0.0,Subcompact Cars,2000,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,15673,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,44.6,0.0,Subcompact Cars,2000,1750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,86,15674,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.06,0.0,46.9023,0.0,Subcompact Cars,2000,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-VTEC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,86,15675,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,44.6,0.0,Subcompact Cars,2000,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-VTEC,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,86,15676,12,9,Honda,Civic,Y,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,40.1,0.0,Subcompact Cars,2000,0,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,15677,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.4895,0.0,48.9549,0.0,Subcompact Cars,2000,3000,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,VTEC-E,-1,1650,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,15678,12,0,Honda,Civic HX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.6946,0.0,55.0218,0.0,Subcompact Cars,2000,3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15679,9,0,Honda,Prelude,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2931,0.0,33.9482,0.0,Subcompact Cars,2000,-2250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1568,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15680,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,34.3,0.0,Subcompact Cars,2000,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15681,13,0,Hyundai,Tiburon,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9608,0.0,38.6472,0.0,Subcompact Cars,2000,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15682,13,0,Hyundai,Tiburon,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.105,0.0,40.6658,0.0,Subcompact Cars,2000,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15683,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,31.4987,0.0,Subcompact Cars,2000,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15684,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2454,0.0,28.9862,0.0,Subcompact Cars,2000,-5750,T,2MODE,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15685,0,9,Lexus,SC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7499,0.0,30.1225,0.0,Subcompact Cars,2000,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15686,0,9,Lexus,SC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4467,0.0,31.7186,0.0,Subcompact Cars,2000,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15687,11,0,Mercedes-Benz,CLK320,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8411,0.0,36.7347,0.0,Subcompact Cars,2000,-2250,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15688,11,0,Mercedes-Benz,CLK430,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3499,0.0,31.5972,0.0,Subcompact Cars,2000,-3750,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,15689,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1869,0.0,35.4732,0.0,Subcompact Cars,2000,-1000,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1569,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,15690,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7277,0.0,35.2404,0.0,Subcompact Cars,2000,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,79,15691,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3493,0.0,39.1209,0.0,Subcompact Cars,2000,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,15692,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3715,0.0,34.6154,0.0,Subcompact Cars,2000,-3000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,15693,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,36.1,0.0,Subcompact Cars,2000,-2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15694,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6232,0.0,45.6697,0.0,Subcompact Cars,2000,2250,,CMODE CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,15695,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.331,0.0,50.7772,0.0,Subcompact Cars,2000,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15696,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4734,0.0,41.6734,0.0,Subcompact Cars,2000,1000,,CMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15697,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9093,0.0,46.1139,0.0,Subcompact Cars,2000,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15698,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0139,0.0,36.9093,0.0,Subcompact Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15699,12,0,Pontiac,Firebird/Trans Am,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3894,0.0,38.8537,0.0,Subcompact Cars,2000,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,157,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1570,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15700,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,32.2,0.0,Subcompact Cars,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15701,12,0,Pontiac,Firebird/Trans Am,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.1,0.0,34.6,0.0,Subcompact Cars,2000,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15702,11,13,Pontiac,Sunfire,N,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.1,0.0,36.9,0.0,Subcompact Cars,2000,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15703,11,13,Pontiac,Sunfire,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7476,0.0,40.0,0.0,Subcompact Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15704,11,13,Pontiac,Sunfire,N,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,43.4,0.0,Subcompact Cars,2000,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15705,11,13,Pontiac,Sunfire,N,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Subcompact Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15706,11,13,Pontiac,Sunfire,N,false,85,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,42.5,0.0,Subcompact Cars,2000,500,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15707,7,0,Rolls-Royce,Corniche,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6,0.0,20.4,0.0,Subcompact Cars,2000,-13250,T,EMS CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15708,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.0,0.0,Subcompact Cars,2000,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15709,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.6,0.0,Subcompact Cars,2000,-1750,,2MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1571,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Vans,1985,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15710,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,37.5,0.0,Subcompact Cars,2000,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15711,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,37.4,0.0,Subcompact Cars,2000,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15712,13,0,Saab,9-3 Viggen Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.4,0.0,Subcompact Cars,2000,-2250,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15713,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.6014,0.0,46.6121,0.0,Subcompact Cars,2000,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15714,11,0,Saturn,SC,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8917,0.0,45.8399,0.0,Subcompact Cars,2000,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,15715,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5068,0.0,51.302,0.0,Subcompact Cars,2000,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15716,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Subcompact Cars,2000,1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15717,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2,0.0,36.2,0.0,Subcompact Cars,2000,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15718,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,35.5,0.0,Subcompact Cars,2000,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15719,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,43.4,0.0,Subcompact Cars,2000,1500,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1572,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,15720,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,47.1,0.0,Subcompact Cars,2000,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15721,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Subcompact Cars,2000,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15722,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.4,0.0,Subcompact Cars,2000,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,15723,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.5415,0.0,44.0995,0.0,Subcompact Cars,2000,2250,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,8,77,15724,0,0,Suzuki,Swift,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.283,0.0,54.2,0.0,Subcompact Cars,2000,4000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15725,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2733,0.0,39.0956,0.0,Subcompact Cars,2000,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15726,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.4673,0.0,Subcompact Cars,2000,-2500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,78,15727,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.8,0.0,44.2,0.0,Subcompact Cars,2000,1500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,78,15728,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6335,0.0,38.099,0.0,Subcompact Cars,2000,-1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,78,15729,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6,0.0,43.2,0.0,Subcompact Cars,2000,1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1573,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,78,15730,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,40.5,0.0,Subcompact Cars,2000,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15731,8,0,Volkswagen,Cabrio,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4999,0.0,35.6731,0.0,Subcompact Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15732,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7103,0.0,39.2215,0.0,Subcompact Cars,2000,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,15733,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.1,0.0,Subcompact Cars,2000,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,15734,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,39.2,0.0,Subcompact Cars,2000,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,12,85,15735,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8549,0.0,57.4406,0.0,Subcompact Cars,2000,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,12,85,15736,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4977,0.0,62.9432,0.0,Subcompact Cars,2000,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,15737,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4999,0.0,35.6731,0.0,Subcompact Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,15738,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7103,0.0,39.2215,0.0,Subcompact Cars,2000,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15739,8,0,Volvo,C70 Convertible,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6627,0.0,31.8843,0.0,Subcompact Cars,2000,-3750,,CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4865,(GM-CHEV) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1574,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1985,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15740,8,0,Volvo,C70 Convertible,Y,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0837,0.0,33.3974,0.0,Subcompact Cars,2000,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15741,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0033,0.0,33.3517,0.0,Subcompact Cars,2000,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15742,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8472,0.0,38.5499,0.0,Compact Cars,2000,-2250,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15743,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.9,0.0,Compact Cars,2000,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15744,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9413,0.0,33.4928,0.0,Compact Cars,2000,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15745,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.8,0.0,Compact Cars,2000,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15746,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5834,0.0,36.0494,0.0,Compact Cars,2000,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15747,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1789,0.0,36.8279,0.0,Compact Cars,2000,-1750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15748,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4701,0.0,32.3437,0.0,Compact Cars,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15749,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4603,0.0,31.7186,0.0,Compact Cars,2000,-3750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2885,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1575,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.2308,0.0,Vans,1985,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15750,0,14,Audi,S4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1201,0.0,30.3657,0.0,Compact Cars,2000,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15751,0,14,Audi,S4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1499,0.0,30.5937,0.0,Compact Cars,2000,-4750,,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15752,12,0,Bentley,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.4896,0.0,20.4167,0.0,Compact Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15753,0,11,BMW,323i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,35.6,0.0,Compact Cars,2000,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15754,0,11,BMW,323i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,34.7,0.0,Compact Cars,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15755,0,11,BMW,323i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.8,0.0,Compact Cars,2000,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15756,0,11,BMW,328i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1709,0.0,35.2,0.0,Compact Cars,2000,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15757,0,11,BMW,328i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2,0.0,34.2,0.0,Compact Cars,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15758,0,11,BMW,328i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7895,0.0,37.0222,0.0,Compact Cars,2000,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15759,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1348,0.0,32.9573,0.0,Compact Cars,2000,-3750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2885,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1576,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0769,0.0,Vans,1985,-7750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15760,0,11,BMW,528i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7193,0.0,33.5691,0.0,Compact Cars,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15761,0,11,BMW,528i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7895,0.0,37.0222,0.0,Compact Cars,2000,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15762,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9447,0.0,30.8559,0.0,Compact Cars,2000,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15763,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,26.8967,0.0,Compact Cars,2000,-6750,T,3MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15764,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1994,0.0,29.1499,0.0,Compact Cars,2000,-6750,T,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15765,0,11,BMW,M5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9535,0.0,26.3337,0.0,Compact Cars,2000,-8000,T,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15766,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.9,0.0,41.4,0.0,Compact Cars,2000,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15767,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.9192,0.0,47.5551,0.0,Compact Cars,2000,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15768,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4,0.0,48.6,0.0,Compact Cars,2000,2750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15769,12,0,Chrysler,Sebring,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4275,0.0,35.1143,0.0,Compact Cars,2000,-1750,,CMODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2855,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1577,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15770,11,0,Chrysler,Sebring Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.9,0.0,Compact Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15771,11,0,Chrysler,Sebring Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1183,0.0,33.0023,0.0,Compact Cars,2000,-2500,,VMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,15772,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,46.8,0.0,Compact Cars,2000,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,15773,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,45.8,0.0,Compact Cars,2000,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,91,15774,11,11,Daewoo,Lanos,Y,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,43.0,0.0,Compact Cars,2000,500,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,15775,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.7,0.0,46.3,0.0,Compact Cars,2000,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,15776,0,12,Daewoo,Nubira,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Compact Cars,2000,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,15777,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Compact Cars,2000,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15778,12,0,Dodge,Avenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4275,0.0,35.1143,0.0,Compact Cars,2000,-1750,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15779,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.5,0.0,39.7,0.0,Compact Cars,2000,500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2855,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1578,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1985,-9250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15780,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.3,0.0,Compact Cars,2000,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15781,0,13,Ford,Contour,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3991,0.0,39.8356,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15782,0,13,Ford,Contour,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9697,0.0,43.1192,0.0,Compact Cars,2000,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15783,0,13,Ford,Contour,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,36.3,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15784,0,13,Ford,Contour,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5287,0.0,37.2291,0.0,Compact Cars,2000,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0L CVH,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15785,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,43.5,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0L CVH,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15786,0,13,Ford,Escort,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.5,0.0,45.0,0.0,Compact Cars,2000,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0L CVH,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,95,15787,0,8,Ford,Focus,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.1772,0.0,42.2234,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,95,15788,0,8,Ford,Focus,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3983,0.0,39.4817,0.0,Compact Cars,2000,500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0L CVH,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,95,15789,0,8,Ford,Focus,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.5,0.0,45.0,0.0,Compact Cars,2000,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3764,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1579,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1985,-7750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,95,15790,0,8,Ford,Focus,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7877,0.0,42.9239,0.0,Compact Cars,2000,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,89,15791,0,0,Hyundai,Accent/Brio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.853,0.0,44.2257,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,89,15792,0,0,Hyundai,Accent/Brio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2626,0.0,46.1027,0.0,Compact Cars,2000,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15793,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0609,0.0,39.5619,0.0,Compact Cars,2000,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15794,0,12,Hyundai,Elantra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7342,0.0,42.5883,0.0,Compact Cars,2000,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15795,0,14,Infiniti,G20,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5499,0.0,39.0,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15796,0,14,Infiniti,G20,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.1,0.0,Compact Cars,2000,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15797,0,13,Jaguar,XJ8,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7493,0.0,30.7976,0.0,Compact Cars,2000,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15798,13,0,Jaguar,XJR,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6496,0.0,27.549,0.0,Compact Cars,2000,-6750,T,2MODE,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,93,15799,0,10,Kia,Sephia/Spectra,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,40.4,0.0,Compact Cars,2000,0,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36002,(GUZZLER) (TURBO),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,158,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,25.0,0.0,Subcompact Cars,1985,-9500,T,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1580,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Vans,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,93,15800,0,10,Kia,Sephia/Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,36.9,0.0,Compact Cars,2000,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15801,13,0,Lexus,ES 300,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1709,0.0,33.7,0.0,Compact Cars,2000,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15802,14,0,Mercury,Cougar,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9697,0.0,43.1192,0.0,Compact Cars,2000,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15803,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,36.3,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15804,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1932,0.0,36.8932,0.0,Compact Cars,2000,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15805,0,13,Mercury,Mystique,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3991,0.0,39.8356,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15806,0,13,Mercury,Mystique,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9697,0.0,43.1192,0.0,Compact Cars,2000,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15807,0,13,Mercury,Mystique,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,36.3,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,2.5M,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15808,0,13,Mercury,Mystique,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1932,0.0,36.8932,0.0,Compact Cars,2000,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15809,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.3,0.0,Compact Cars,2000,-3000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3765,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1581,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,23.0,0.0,Vans,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15810,0,13,Mazda,Millenia,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.0,0.0,Compact Cars,2000,-3000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15811,0,13,Mazda,Protege,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.1449,0.0,41.9898,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15812,0,13,Mazda,Protege,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0857,0.0,43.9236,0.0,Compact Cars,2000,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15813,0,13,Mazda,Protege,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2549,0.0,37.2449,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15814,0,13,Mazda,Protege,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7549,0.0,Compact Cars,2000,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15815,0,13,Mercedes-Benz,C230 Kompressor,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8499,0.0,36.7932,0.0,Compact Cars,2000,-1750,,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15816,0,13,Mercedes-Benz,C280,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.273,0.0,34.6991,0.0,Compact Cars,2000,-2250,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15817,0,13,Mercedes-Benz,C43 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8957,0.0,28.8589,0.0,Compact Cars,2000,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15818,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0861,0.0,28.8702,0.0,Compact Cars,2000,-5750,T,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15819,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2241,0.0,35.7483,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3763,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1582,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Vans,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15820,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1,0.0,39.7,0.0,Compact Cars,2000,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15821,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0701,0.0,42.6051,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15822,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6351,0.0,44.6294,0.0,Compact Cars,2000,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15823,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5499,0.0,38.2,0.0,Compact Cars,2000,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15824,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,39.3,0.0,Compact Cars,2000,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15825,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15826,14,14,Oldsmobile,Alero,N,false,93,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,39.8,0.0,Compact Cars,2000,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15827,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.749,0.0,40.7,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15828,0,13,Plymouth,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.5,0.0,39.7,0.0,Compact Cars,2000,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,15829,0,13,Plymouth,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.3,0.0,Compact Cars,2000,1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3860,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1583,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Vans,1985,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15830,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15831,14,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,39.8,0.0,Compact Cars,2000,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15832,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.749,0.0,40.7,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15833,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.8,0.0,48.4,0.0,Compact Cars,2000,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,15834,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8917,0.0,45.8399,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,15835,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,51.5,0.0,Compact Cars,2000,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15836,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Compact Cars,2000,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15837,0,12,Subaru,Legacy AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1004,0.0,34.4568,0.0,Compact Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15838,0,12,Subaru,Legacy AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7673,0.0,35.5043,0.0,Compact Cars,2000,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15839,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2733,0.0,39.0956,0.0,Compact Cars,2000,0,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3960,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1584,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.0,0.0,Vans,1985,-15500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15840,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.5859,0.0,Compact Cars,2000,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15841,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6364,0.0,34.6852,0.0,Compact Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15842,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2387,0.0,35.5683,0.0,Compact Cars,2000,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15843,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.9,0.0,41.4,0.0,Compact Cars,2000,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15844,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8493,0.0,47.3444,0.0,Compact Cars,2000,2250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15845,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4,0.0,48.6,0.0,Compact Cars,2000,2750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15846,14,14,Toyota,Echo,Y,false,88,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.1,0.0,48.7438,0.0,Compact Cars,2000,2750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,15847,14,14,Toyota,Echo,Y,false,88,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.6,0.0,52.6,0.0,Compact Cars,2000,3500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,88,15848,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4197,0.0,35.7,0.0,Compact Cars,2000,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,15849,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8818,0.0,39.3,0.0,Compact Cars,2000,-500,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3760,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1585,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Vans,1985,-9250,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,15850,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8549,0.0,57.4406,0.0,Compact Cars,2000,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,18,88,15851,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4977,0.0,62.9432,0.0,Compact Cars,2000,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,88,15852,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4999,0.0,35.6731,0.0,Compact Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,15853,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7103,0.0,39.2215,0.0,Compact Cars,2000,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,86,15854,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4197,0.0,35.7,0.0,Compact Cars,2000,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,86,15855,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8818,0.0,39.3,0.0,Compact Cars,2000,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,86,15856,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4999,0.0,35.6731,0.0,Compact Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,86,15857,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7103,0.0,39.2215,0.0,Compact Cars,2000,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,86,15858,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.5,0.0,Compact Cars,2000,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15859,0,13,Volkswagen,Jetta,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4197,0.0,35.7,0.0,Compact Cars,2000,-1750,,CLKUP,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3962,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1586,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,14.0,0.0,Vans,1985,-15500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15860,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8818,0.0,39.3,0.0,Compact Cars,2000,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,15861,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.8549,0.0,57.4406,0.0,Compact Cars,2000,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,15862,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4977,0.0,62.9432,0.0,Compact Cars,2000,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15863,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4999,0.0,35.6731,0.0,Compact Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15864,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7103,0.0,39.2215,0.0,Compact Cars,2000,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15865,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,32.8,0.0,Compact Cars,2000,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15866,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,36.0,0.0,Compact Cars,2000,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15867,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1508,0.0,34.9479,0.0,Compact Cars,2000,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15868,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4558,0.0,35.1601,0.0,Compact Cars,2000,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15869,13,0,Volvo,C70 Coupe,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5475,0.0,34.0585,0.0,Compact Cars,2000,-3000,,CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1587,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Vans,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15870,0,13,Volvo,S40 FWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5962,0.0,36.1997,0.0,Compact Cars,2000,-2250,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15871,0,14,Acura,3.2TL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3581,0.0,37.2241,0.0,Midsize Cars,2000,-3000,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15872,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,30.2,0.0,Midsize Cars,2000,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15873,0,15,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.377,0.0,32.854,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15874,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1201,0.0,30.3657,0.0,Midsize Cars,2000,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15875,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1499,0.0,30.5937,0.0,Midsize Cars,2000,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15876,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9958,0.0,30.5555,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15877,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,30.2,0.0,Midsize Cars,2000,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15878,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8237,0.0,30.3997,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15879,0,18,Audi,A8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8237,0.0,30.3997,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1588,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15880,0,12,Bentley,Arnage,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.9483,0.0,20.0499,0.0,Midsize Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,15881,0,12,Bentley,Arnage,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3823,0.0,20.0411,0.0,Midsize Cars,2000,-13250,T,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15882,0,13,BMW,740i/740i Sport,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,30.0,0.0,Midsize Cars,2000,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,15883,0,13,BMW,740i/740i Sport,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,26.8,0.0,Midsize Cars,2000,-6750,T,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15884,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3856,0.0,38.1033,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15885,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,37.6,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15886,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4998,0.0,35.0695,0.0,Midsize Cars,2000,-3750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15887,0,14,Cadillac,Catera,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,31.3499,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15888,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,35.3,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15889,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,35.3,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1589,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15890,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3856,0.0,38.1033,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15891,16,16,Chevrolet,Lumina/Monte Carlo,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.749,0.0,40.7,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15892,16,16,Chevrolet,Lumina/Monte Carlo,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,37.6,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15893,0,16,Chevrolet,Malibu,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Midsize Cars,2000,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15894,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3856,0.0,38.1033,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15895,0,16,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.5955,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15896,0,16,Chrysler,Cirrus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.9,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15897,0,16,Chrysler,Cirrus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1183,0.0,33.0023,0.0,Midsize Cars,2000,-2500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15898,0,14,Daewoo,Leganza,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.7,0.0,Midsize Cars,2000,-1000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15899,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.5,0.0,Midsize Cars,2000,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,86,159,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.7436,0.0,Subcompact Cars,1985,1500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4865,(GM-CHEV) (FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1590,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1985,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15900,0,16,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.2,0.0,Midsize Cars,2000,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15901,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.5955,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15902,0,16,Dodge,Stratus,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.9,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15903,0,16,Dodge,Stratus,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1183,0.0,33.0023,0.0,Midsize Cars,2000,-2500,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15904,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.19,0.0,38.8049,0.0,Midsize Cars,2000,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15905,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,36.8,0.0,Midsize Cars,2000,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15906,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5266,0.0,40.3081,0.0,Midsize Cars,2000,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15907,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.2,0.0,Midsize Cars,2000,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15908,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6868,0.0,35.269,0.0,Midsize Cars,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15909,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7942,0.0,35.9413,0.0,Midsize Cars,2000,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1591,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Vans,1985,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15910,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8472,0.0,37.5278,0.0,Midsize Cars,2000,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15911,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.2,0.0,Midsize Cars,2000,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15912,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.5,0.0,Midsize Cars,2000,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15913,0,15,Infiniti,I30,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Midsize Cars,2000,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15914,0,13,Infiniti,Q45,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4866,0.0,29.7065,0.0,Midsize Cars,2000,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15915,0,13,Jaguar,Vanden Plas,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7493,0.0,30.7976,0.0,Midsize Cars,2000,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,15916,0,13,Jaguar,Vanden Plas S/C,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5132,0.0,27.5383,0.0,Midsize Cars,2000,-6750,T,2MODE,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15917,0,12,Jaguar,S-type (X200) V6,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7397,0.0,32.8988,0.0,Midsize Cars,2000,-3750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15918,0,12,Jaguar,S-type (X200) V8,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8116,0.0,29.0809,0.0,Midsize Cars,2000,-5750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15919,0,13,Jaguar,XJ8L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7493,0.0,30.7976,0.0,Midsize Cars,2000,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1592,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15920,0,15,Lexus,GS 300/GS 400,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1072,0.0,31.3079,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15921,0,15,Lexus,GS 300/GS 400,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3693,0.0,30.8508,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15922,0,14,Lexus,LS 400,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4467,0.0,31.7186,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15923,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4959,0.0,31.7563,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SELECT SFT,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15924,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.964,0.0,30.9578,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,3,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15925,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,31.5,0.0,Midsize Cars,2000,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,SELECT SFT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15926,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3466,0.0,30.3987,0.0,Midsize Cars,2000,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,3.9L4V-N,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15927,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5799,0.0,30.0659,0.0,Midsize Cars,2000,-5750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15928,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6995,0.0,35.8,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0L 2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15929,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5359,0.0,36.0783,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1593,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15930,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1759,0.0,35.4,0.0,Midsize Cars,2000,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15931,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0759,0.0,41.276,0.0,Midsize Cars,2000,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15932,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3759,0.0,33.9,0.0,Midsize Cars,2000,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15933,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5273,0.0,34.4,0.0,Midsize Cars,2000,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15934,0,15,Mercedes-Benz,E320,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9297,0.0,37.8552,0.0,Midsize Cars,2000,-2250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15935,0,15,Mercedes-Benz,E320 4Matic,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4674,0.0,35.2836,0.0,Midsize Cars,2000,-2250,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15936,0,15,Mercedes-Benz,E430,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,31.1,0.0,Midsize Cars,2000,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15937,0,15,Mercedes-Benz,E430 4Matic,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,29.2,0.0,Midsize Cars,2000,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,15938,0,15,Mercedes-Benz,E55 AMG,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,29.3,0.0,Midsize Cars,2000,-5750,T,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15939,0,14,Mitsubishi,Diamante,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3386,0.0,31.5393,0.0,Midsize Cars,2000,-4750,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1594,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15940,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4596,0.0,35.5967,0.0,Midsize Cars,2000,-1000,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15941,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9369,0.0,34.1966,0.0,Midsize Cars,2000,-3000,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15942,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.5538,0.0,Midsize Cars,2000,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15943,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,35.0,0.0,Midsize Cars,2000,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15944,0,17,Oldsmobile,Intrigue,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,35.6,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15945,0,16,Plymouth,Breeze,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.2,0.0,Midsize Cars,2000,-500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,15946,0,16,Plymouth,Breeze,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,47.4,0.0,Midsize Cars,2000,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15947,0,16,Plymouth,Breeze,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.5955,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15948,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3856,0.0,38.1033,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15949,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,37.6,0.0,Midsize Cars,2000,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1595,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Vans,1985,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15950,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5932,0.0,35.341,0.0,Midsize Cars,2000,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,90,15951,0,0,Saab,9-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.0,0.0,Midsize Cars,2000,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,90,15952,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.6,0.0,Midsize Cars,2000,-1750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,22,90,15953,0,0,Saab,9-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,37.5,0.0,Midsize Cars,2000,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,22,90,15954,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,37.4,0.0,Midsize Cars,2000,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,22,90,15955,0,0,Saab,9-3 Viggen,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.4,0.0,Midsize Cars,2000,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15956,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3007,0.0,34.6386,0.0,Midsize Cars,2000,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15957,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,30.9,0.0,Midsize Cars,2000,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15958,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8137,0.0,37.2853,0.0,Midsize Cars,2000,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15959,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.4,0.0,Midsize Cars,2000,-3000,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1596,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Vans,1985,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15960,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,33.4,0.0,Midsize Cars,2000,-3750,,2MODE,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15961,0,18,Saturn,LS,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2964,0.0,40.8499,0.0,Midsize Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,15962,0,18,Saturn,LS,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,41.5,0.0,Midsize Cars,2000,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15963,0,18,Saturn,LS,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.6,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,15964,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2733,0.0,39.0956,0.0,Midsize Cars,2000,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15965,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.5859,0.0,Midsize Cars,2000,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15966,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6364,0.0,34.6852,0.0,Midsize Cars,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15967,0,14,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2387,0.0,35.5683,0.0,Midsize Cars,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15968,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.335,0.0,37.7468,0.0,Midsize Cars,2000,-2250,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15969,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5698,0.0,40.0699,0.0,Midsize Cars,2000,-500,,,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1597,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15970,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9413,0.0,33.4928,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15971,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.8,0.0,Midsize Cars,2000,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15972,0,15,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0576,0.0,30.3493,0.0,Midsize Cars,2000,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15973,0,15,Volvo,S70,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1508,0.0,34.9479,0.0,Midsize Cars,2000,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15974,0,15,Volvo,S70,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4558,0.0,35.1601,0.0,Midsize Cars,2000,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15975,0,15,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5475,0.0,34.0585,0.0,Midsize Cars,2000,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15976,0,15,Volvo,S70,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6801,0.0,36.3548,0.0,Midsize Cars,2000,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,15977,0,15,Volvo,S70,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.556,0.0,36.6926,0.0,Midsize Cars,2000,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15978,0,15,Volvo,S70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4398,0.0,31.5233,0.0,Midsize Cars,2000,-3750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15979,0,15,Volvo,S80,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3894,0.0,32.0149,0.0,Midsize Cars,2000,-4750,,2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1598,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Vans,1985,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15980,0,15,Volvo,S80,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.325,0.0,32.9689,0.0,Midsize Cars,2000,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15981,0,18,Audi,A8 L,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7488,0.0,30.8499,0.0,Large Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,15982,0,13,BMW,740il/740il Protection,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8881,0.0,29.9759,0.0,Large Cars,2000,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,15983,0,13,BMW,750il/750il Protection,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7,0.0,25.4,0.0,Large Cars,2000,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15984,0,18,Buick,LeSabre,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15985,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15986,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,2000,-3750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15987,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,35.3,0.0,Large Cars,2000,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,15988,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.749,0.0,40.7,0.0,Large Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15989,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,37.6,0.0,Large Cars,2000,-1000,,CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1599,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15990,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,37.6,0.0,Large Cars,2000,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15991,0,17,Chrysler,300 M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.8,0.0,Large Cars,2000,-2500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15992,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,37.1,0.0,Large Cars,2000,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15993,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,35.0,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15994,0,19,Chrysler,LHS,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0469,0.0,33.3493,0.0,Large Cars,2000,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15995,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,37.1,0.0,Large Cars,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,15996,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,37.2,0.0,Large Cars,2000,-1000,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,15997,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,35.4,0.0,Large Cars,2000,-1750,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,15998,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.8,0.0,Large Cars,2000,-2500,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,15999,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5931,0.0,32.2229,0.0,Large Cars,2000,-3250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,48.7179,0.0,Two Seaters,1985,2750,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,160,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,40.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1600,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.7949,0.0,Vans,1985,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16000,0,16,Ford,Taurus,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6995,0.0,35.8,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0L 2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16001,0,16,Ford,Taurus,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5359,0.0,36.0783,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,4.6W,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16002,0,0,Lincoln,Continental,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.145,0.0,32.1581,0.0,Large Cars,2000,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16003,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5931,0.0,32.2229,0.0,Large Cars,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6N,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16004,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2617,0.0,31.352,0.0,Large Cars,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16005,0,15,Mercedes-Benz,S430,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0325,0.0,30.8933,0.0,Large Cars,2000,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16006,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0877,0.0,28.8728,0.0,Large Cars,2000,-5750,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16007,0,18,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16008,0,18,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,2000,-3750,,CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16009,15,16,Toyota,Avalon,Y,false,106,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,37.4,0.0,Large Cars,2000,-500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1601,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Vans,1985,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16010,0,31,Audi,A4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9413,0.0,33.4928,0.0,Small Station Wagons,2000,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16011,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5834,0.0,36.0494,0.0,Small Station Wagons,2000,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16012,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1789,0.0,36.8279,0.0,Small Station Wagons,2000,-1750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16013,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9958,0.0,30.5555,0.0,Small Station Wagons,2000,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16014,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4603,0.0,31.7186,0.0,Small Station Wagons,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16015,0,26,BMW,323i Touring,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,34.7,0.0,Small Station Wagons,2000,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16016,0,26,BMW,323i Touring,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.8,0.0,Small Station Wagons,2000,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16017,0,33,BMW,528i Sport Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1348,0.0,32.9573,0.0,Small Station Wagons,2000,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16018,0,33,BMW,528i Sport Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7193,0.0,33.5691,0.0,Small Station Wagons,2000,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16019,0,33,BMW,528i Sport Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,33.4,0.0,Small Station Wagons,2000,-3750,,,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1602,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1985,-4500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16020,0,33,BMW,540i Sport Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2,0.0,26.8967,0.0,Small Station Wagons,2000,-6750,T,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16021,0,19,Daewoo,Nubira Station Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,38.4615,0.0,Small Station Wagons,2000,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16022,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.7436,0.0,Small Station Wagons,2000,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,95,16023,0,0,Hyundai,Elantra Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,38.1204,0.0,Small Station Wagons,2000,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,95,16024,0,0,Hyundai,Elantra Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1,0.0,41.2943,0.0,Small Station Wagons,2000,500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16025,0,25,Saturn,SW,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.6,0.0,46.6,0.0,Small Station Wagons,2000,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16026,0,25,Saturn,SW,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8917,0.0,45.8399,0.0,Small Station Wagons,2000,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16027,0,25,Saturn,SW,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Small Station Wagons,2000,1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16028,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.1,0.0,Small Station Wagons,2000,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16029,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.9,0.0,46.7,0.0,Small Station Wagons,2000,2250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1603,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1985,-13000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16030,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Small Station Wagons,2000,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16031,0,24,Suzuki,Esteem Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1,0.0,43.9,0.0,Small Station Wagons,2000,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,33,89,16032,0,0,Volvo,V40,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5962,0.0,36.1997,0.0,Small Station Wagons,2000,-2250,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16033,0,36,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9958,0.0,30.5555,0.0,Midsize Station Wagons,2000,-4750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0L CVH,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16034,36,36,Ford,Focus Station Wagon,Y,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.1935,0.0,42.1981,0.0,Midsize Station Wagons,2000,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16035,36,36,Ford,Focus Station Wagon,Y,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1123,0.0,40.4192,0.0,Midsize Station Wagons,2000,1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0L 2V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16036,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8022,0.0,34.1057,0.0,Midsize Station Wagons,2000,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0M,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16037,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1023,0.0,34.3534,0.0,Midsize Station Wagons,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,32,101,16038,0,0,Lexus,RX 300,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8499,0.0,30.1493,0.0,Midsize Station Wagons,2000,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,32,101,16039,0,0,Lexus,RX 300 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2995,0.0,28.6997,0.0,Midsize Station Wagons,2000,-3250,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2885,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1604,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0M,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16040,0,39,Mercury,Sable Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1023,0.0,34.3534,0.0,Midsize Station Wagons,2000,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0L 2V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16041,0,39,Mercury,Sable Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8022,0.0,34.1057,0.0,Midsize Station Wagons,2000,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16042,0,44,Mercedes-Benz,E320 (Wagon),Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3945,0.0,34.3736,0.0,Midsize Station Wagons,2000,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16043,0,44,Mercedes-Benz,E320 4Matic (Wagon),Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7666,0.0,33.4602,0.0,Midsize Station Wagons,2000,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16044,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.2,0.0,Midsize Station Wagons,2000,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16045,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.0518,0.0,Midsize Station Wagons,2000,-2500,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16046,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1012,0.0,35.9542,0.0,Midsize Station Wagons,2000,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16047,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.8,0.0,Midsize Station Wagons,2000,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16048,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,32.7,0.0,Midsize Station Wagons,2000,-3750,,2MODE,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16049,0,0,Saturn,LW,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.1,0.0,Midsize Station Wagons,2000,0,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2855,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1605,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16050,0,0,Saturn,LW,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.6,0.0,Midsize Station Wagons,2000,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16051,0,34,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0842,0.0,34.4189,0.0,Midsize Station Wagons,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16052,0,34,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7673,0.0,35.5043,0.0,Midsize Station Wagons,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16053,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.335,0.0,37.7468,0.0,Midsize Station Wagons,2000,-2250,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16054,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5698,0.0,40.0699,0.0,Midsize Station Wagons,2000,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16055,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9413,0.0,33.4928,0.0,Midsize Station Wagons,2000,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16056,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.8,0.0,Midsize Station Wagons,2000,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16057,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0576,0.0,30.3493,0.0,Midsize Station Wagons,2000,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,37,98,16058,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1508,0.0,34.9479,0.0,Midsize Station Wagons,2000,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,37,98,16059,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4558,0.0,35.1601,0.0,Midsize Station Wagons,2000,-2250,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3760,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1606,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Vans,1985,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,37,98,16060,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5475,0.0,34.0585,0.0,Midsize Station Wagons,2000,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,37,98,16061,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6801,0.0,36.3548,0.0,Midsize Station Wagons,2000,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,37,98,16062,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.556,0.0,36.6926,0.0,Midsize Station Wagons,2000,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,37,98,16063,0,0,Volvo,V70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4398,0.0,31.5233,0.0,Midsize Station Wagons,2000,-3750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,37,98,16064,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9767,0.0,30.0299,0.0,Midsize Station Wagons,2000,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,Gasoline only,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16065,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1616,0.0,32.9424,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,Flex Fuel (E85),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16066,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6096,0.0,32.325,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,Gasoline only,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16067,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,2000,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,Flex Fuel (E85),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16068,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2000,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16069,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8262,0.0,28.4145,0.0,Small Pickup Trucks 2WD,2000,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3763,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1607,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.7949,0.0,Vans,1985,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16070,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3398,0.0,29.6,0.0,Small Pickup Trucks 2WD,2000,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16071,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1616,0.0,32.9424,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16072,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6096,0.0,32.325,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16073,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,2000,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16074,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2000,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16075,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8231,0.0,28.4109,0.0,Small Pickup Trucks 2WD,2000,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16076,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3195,0.0,29.6,0.0,Small Pickup Trucks 2WD,2000,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16077,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1616,0.0,32.9424,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16078,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6096,0.0,32.325,0.0,Small Pickup Trucks 2WD,2000,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16079,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.7,0.0,Small Pickup Trucks 2WD,2000,0,,SIL,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3960,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1608,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.0,0.0,Vans,1985,-15500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16080,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2000,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16081,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8528,0.0,28.4454,0.0,Small Pickup Trucks 2WD,2000,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16082,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16083,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0112,0.0,28.8838,0.0,Standard Pickup Trucks 2WD,2000,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16084,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8721,0.0,26.4653,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16085,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2439,0.0,26.192,0.0,Standard Pickup Trucks 2WD,2000,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16086,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4811,0.0,25.7571,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16087,0,0,Chevrolet,Silverado 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.9,0.0,Standard Pickup Trucks 2WD,2000,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16088,0,0,Chevrolet,Silverado 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4438,0.0,20.3873,0.0,Standard Pickup Trucks 2WD,2000,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16089,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3588,0.0,31.3838,0.0,Standard Pickup Trucks 2WD,2000,-1750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1609,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16090,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0098,0.0,27.1211,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16091,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5204,0.0,29.5051,0.0,Standard Pickup Trucks 2WD,2000,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16092,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4512,0.0,25.0508,0.0,Standard Pickup Trucks 2WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16093,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.8083,0.0,25.4779,0.0,Standard Pickup Trucks 2WD,2000,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16094,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8873,0.0,21.936,0.0,Standard Pickup Trucks 2WD,2000,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16095,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16096,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3945,0.0,26.6,0.0,Standard Pickup Trucks 2WD,2000,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16097,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4922,0.0,23.6739,0.0,Standard Pickup Trucks 2WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16098,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1147,0.0,24.4807,0.0,Standard Pickup Trucks 2WD,2000,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16099,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4387,0.0,23.0999,0.0,Standard Pickup Trucks 2WD,2000,-9250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,56020,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,86,161,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1610,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.7949,0.0,Vans,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,4.2E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16100,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.701,0.0,26.1,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,4.2E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16101,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9825,0.0,26.6954,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16102,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1499,0.0,26.0195,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16103,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3069,0.0,26.0958,0.0,Standard Pickup Trucks 2WD,2000,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16104,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.5,0.0,Standard Pickup Trucks 2WD,2000,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4S/C,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16105,0,0,Ford,Lightning Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,21.2958,0.0,Standard Pickup Trucks 2WD,2000,-11250,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,2.5E-R,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16106,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0393,0.0,31.5309,0.0,Standard Pickup Trucks 2WD,2000,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,2.5E-R,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16107,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,34.1,0.0,Standard Pickup Trucks 2WD,2000,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16108,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5388,0.0,26.8615,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16109,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6781,0.0,28.5132,0.0,Standard Pickup Trucks 2WD,2000,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1611,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Vans,1985,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16110,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16111,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,29.6,0.0,Standard Pickup Trucks 2WD,2000,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16112,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8798,0.0,26.4749,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16113,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2699,0.0,26.2397,0.0,Standard Pickup Trucks 2WD,2000,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16114,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4832,0.0,25.7618,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16115,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.9,0.0,Standard Pickup Trucks 2WD,2000,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16116,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4328,0.0,20.3652,0.0,Standard Pickup Trucks 2WD,2000,-11000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,2.5E-R,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16117,0,0,Mazda,2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0393,0.0,31.5309,0.0,Standard Pickup Trucks 2WD,2000,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,2.5E-R,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16118,0,0,Mazda,2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,34.1,0.0,Standard Pickup Trucks 2WD,2000,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16119,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5372,0.0,26.8608,0.0,Standard Pickup Trucks 2WD,2000,-5250,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1612,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1985,-4500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16120,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6898,0.0,28.7711,0.0,Standard Pickup Trucks 2WD,2000,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16121,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.81,0.0,30.4159,0.0,Standard Pickup Trucks 2WD,2000,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16122,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9178,0.0,33.5307,0.0,Standard Pickup Trucks 2WD,2000,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16123,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,24.4,0.0,Standard Pickup Trucks 2WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16124,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,24.0,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16125,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5837,0.0,30.4526,0.0,Standard Pickup Trucks 2WD,2000,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16126,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9215,0.0,33.1716,0.0,Standard Pickup Trucks 2WD,2000,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16127,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2521,0.0,27.051,0.0,Standard Pickup Trucks 2WD,2000,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16128,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6633,0.0,27.2426,0.0,Standard Pickup Trucks 2WD,2000,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16129,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.1,0.0,Standard Pickup Trucks 2WD,2000,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1613,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1985,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16130,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0943,0.0,24.7079,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16131,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2609,0.0,24.9463,0.0,Standard Pickup Trucks 2WD,2000,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16132,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7908,0.0,23.4705,0.0,Standard Pickup Trucks 2WD,2000,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16133,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,Standard Pickup Trucks 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16134,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5,0.0,22.7,0.0,Standard Pickup Trucks 4WD,2000,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16135,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.1,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16136,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2000,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16137,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1599,0.0,22.4399,0.0,Standard Pickup Trucks 4WD,2000,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16138,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.3,0.0,Standard Pickup Trucks 4WD,2000,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16139,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.6,0.0,Standard Pickup Trucks 4WD,2000,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1614,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Vans,1985,-1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16140,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0664,0.0,22.9156,0.0,Standard Pickup Trucks 4WD,2000,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16141,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6772,0.0,24.0367,0.0,Standard Pickup Trucks 4WD,2000,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16142,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6884,0.0,24.0188,0.0,Standard Pickup Trucks 4WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16143,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.444,0.0,23.3365,0.0,Standard Pickup Trucks 4WD,2000,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16144,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2000,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16145,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3868,0.0,20.8885,0.0,Standard Pickup Trucks 4WD,2000,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16146,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.3986,0.0,21.6971,0.0,Standard Pickup Trucks 4WD,2000,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16147,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2294,0.0,21.8912,0.0,Standard Pickup Trucks 4WD,2000,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,0.00042,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16148,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.1,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,0.00042,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16149,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,23.0,0.0,Standard Pickup Trucks 4WD,2000,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1615,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Vans,1985,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,0.00046,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16150,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,0.00046,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16151,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2000,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,0.00054,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16152,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3426,0.0,22.6295,0.0,Standard Pickup Trucks 4WD,2000,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16153,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1142,0.0,24.0088,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16154,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1541,0.0,25.7492,0.0,Standard Pickup Trucks 4WD,2000,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16155,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,Standard Pickup Trucks 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16156,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5,0.0,22.7,0.0,Standard Pickup Trucks 4WD,2000,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16157,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.1,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16158,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2000,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16159,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1599,0.0,22.4399,0.0,Standard Pickup Trucks 4WD,2000,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4856,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1616,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16160,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.3,0.0,Standard Pickup Trucks 4WD,2000,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16161,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.6,0.0,Standard Pickup Trucks 4WD,2000,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16162,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.3,0.0,Standard Pickup Trucks 4WD,2000,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16163,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.6,0.0,Standard Pickup Trucks 4WD,2000,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16164,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1142,0.0,24.0088,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16165,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1541,0.0,25.7492,0.0,Standard Pickup Trucks 4WD,2000,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16166,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5441,0.0,26.8701,0.0,Standard Pickup Trucks 4WD,2000,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16167,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.822,0.0,23.7425,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16168,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9888,0.0,23.1927,0.0,Standard Pickup Trucks 4WD,2000,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16169,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5755,0.0,27.2884,0.0,Standard Pickup Trucks 4WD,2000,-3250,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4855,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1617,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Vans,1985,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16170,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7052,0.0,26.0589,0.0,Standard Pickup Trucks 4WD,2000,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16171,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9577,0.0,25.0847,0.0,Standard Pickup Trucks 4WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16172,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,25.016,0.0,Standard Pickup Trucks 4WD,2000,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16173,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,22.7,0.0,Standard Pickup Trucks 4WD,2000,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16174,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,22.6,0.0,Standard Pickup Trucks 4WD,2000,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16175,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,21.7498,0.0,Standard Pickup Trucks 4WD,2000,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16176,0,0,Chevrolet,Astro 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,27.8,0.0,"Vans, Cargo Type",2000,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16177,0,0,Chevrolet,Astro AWD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,"Vans, Cargo Type",2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16178,0,0,Chevrolet,Van 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2834,0.0,23.1648,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16179,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9998,0.0,23.4994,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,59016,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1618,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16180,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0646,0.0,22.8393,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16181,0,0,Dodge,B1500 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.5462,0.0,21.4926,0.0,"Vans, Cargo Type",2000,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16182,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8489,0.0,23.9948,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16183,0,0,Dodge,B1500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8234,0.0,22.1703,0.0,"Vans, Cargo Type",2000,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16184,0,0,Dodge,B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,23.8,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16185,0,0,Dodge,B2500 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,23.3,0.0,"Vans, Cargo Type",2000,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,4.2E-R,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16186,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.0,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16187,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,25.5,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16188,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.5,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,4.2E-R,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16189,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1452,0.0,22.473,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,59016,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1619,0,0,Volkswagen,Vanagon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.359,0.0,Vans,1985,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4E-R,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16190,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,22.8,0.0,"Vans, Cargo Type",2000,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16191,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3454,0.0,23.2367,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16192,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9788,0.0,23.4436,0.0,"Vans, Cargo Type",2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16193,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.094,0.0,22.7235,0.0,"Vans, Cargo Type",2000,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16194,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,27.8,0.0,"Vans, Cargo Type",2000,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16195,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,"Vans, Cargo Type",2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16196,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.7,0.0,"Vans, Passenger Type",2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16197,0,0,Chevrolet,Astro AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.3,0.0,"Vans, Passenger Type",2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16198,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16199,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,20010,,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,162,0,12,Mercedes-Benz,190,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,42.0,0.0,Subcompact Cars,1985,1000,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1620,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1985,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16200,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.1,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16201,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.8,0.0,20.8,0.0,"Vans, Passenger Type",2000,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16202,0,0,Dodge,B1500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,23.8,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,16203,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2,0.0,19.7,0.0,"Vans, Passenger Type",2000,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16204,0,0,Dodge,B2500 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2,0.0,22.8,0.0,"Vans, Passenger Type",2000,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,4.2E-R,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16205,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.3,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16206,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,24.1,0.0,"Vans, Passenger Type",2000,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4E-R,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16207,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,22.1,0.0,"Vans, Passenger Type",2000,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16208,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16209,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1621,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-4500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16210,0,0,GMC,Savana 1500/2500 2WD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.1,0.0,"Vans, Passenger Type",2000,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16211,0,0,GMC,Safari 2WD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.7,0.0,"Vans, Passenger Type",2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16212,0,0,GMC,Safari AWD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.3,0.0,"Vans, Passenger Type",2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,EX2US40E5G,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16213,0,0,Ford,Postal Vehicle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,23.2,0.0,Minivan - 2WD,2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16214,0,0,Volkswagen,Eurovan Camper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.1,0.0,Minivan - 2WD,2000,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16215,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.0,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16216,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,30.5,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16217,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.5,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16218,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.2,0.0,Minivan - 2WD,2000,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16219,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9645,0.0,31.8296,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1622,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16220,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2739,0.0,32.0534,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16221,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.5,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16222,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,30.2,0.0,Minivan - 2WD,2000,-3250,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0W-F,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16223,0,0,Ford,Windstar FWD Cargo Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6488,0.0,29.7987,0.0,Minivan - 2WD,2000,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,3.8E-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16224,0,0,Ford,Windstar FWD Cargo Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,29.0,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,3.0W-F,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16225,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6488,0.0,29.7987,0.0,Minivan - 2WD,2000,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,3.8E-F,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16226,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8499,0.0,29.4969,0.0,Minivan - 2WD,2000,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC-VTEC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16227,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.794,0.0,32.5516,0.0,Minivan - 2WD,2000,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16228,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.749,0.0,29.1662,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,3.3N-F,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16229,0,0,Mercury,Villager FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9057,0.0,30.4084,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1623,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16230,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9795,0.0,30.9709,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16231,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.0,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16232,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.2,0.0,Minivan - 2WD,2000,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16233,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9645,0.0,31.8296,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16234,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,32.1,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16235,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.5,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16236,0,0,Pontiac,Montana FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.0,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16237,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2633,0.0,31.1429,0.0,Minivan - 2WD,2000,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16238,0,0,Volkswagen,Eurovan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5462,0.0,25.1276,0.0,Minivan - 2WD,2000,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16239,0,0,Chrysler,Town and Country/Voyager/Grand Voy. AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.1,0.0,Minivan - 4WD,2000,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4844,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1624,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16240,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.1,0.0,Minivan - 4WD,2000,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16241,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,28.9,0.0,Minivan - 4WD,2000,-4250,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16242,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16243,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,29.6,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16244,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.1,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16245,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,POLICE,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16246,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,23.7,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16247,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.7,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16248,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0188,0.0,35.8239,0.0,Sport Utility Vehicle - 2WD,2000,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16249,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.943,0.0,32.4655,0.0,Sport Utility Vehicle - 2WD,2000,-500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4841,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1625,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16250,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3187,0.0,32.2712,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16251,0,0,Chevrolet,Tracker 2WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.445,0.0,33.1746,0.0,Sport Utility Vehicle - 2WD,2000,-500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16252,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2374,0.0,32.3545,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16253,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,25.0,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16254,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16255,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8646,0.0,22.0697,0.0,Sport Utility Vehicle - 2WD,2000,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16256,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4E-R,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16257,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2000,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16258,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.8,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16259,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2855,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1626,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0E-R,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16260,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,5.0E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16261,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7738,0.0,25.163,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16262,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,POLICE,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16263,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,23.7,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16264,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.7,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16265,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.1,0.0,Sport Utility Vehicle - 2WD,2000,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16266,0,0,GMC,Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16267,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,29.6,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16268,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16269,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1627,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16270,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.0,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16271,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2353,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16272,0,0,Isuzu,Amigo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16273,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16274,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16275,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.0,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16276,0,0,Isuzu,Trooper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,23.8,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16277,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.4,0.0,29.6,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16278,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2000,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16279,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2817,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1628,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1985,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16280,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,30.397,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16281,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16282,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16283,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16284,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,5.4V-R,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16285,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,21.8,0.0,Sport Utility Vehicle - 2WD,2000,-11250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16286,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,5.0E-R,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16287,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7738,0.0,25.163,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16288,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2838,0.0,26.179,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16289,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4032,0.0,25.6599,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2845,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1629,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16290,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16291,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,30.3,0.0,Sport Utility Vehicle - 2WD,2000,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16292,0,0,Mitsubishi,Nativa 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2838,0.0,26.179,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16293,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3968,0.0,24.3486,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16294,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,23.8,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16295,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7995,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16296,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8352,0.0,24.5158,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16297,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2000,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16298,0,0,Suzuki,Grand Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.8,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16299,0,0,Suzuki,Grand Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,20010,,-1,2000,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,163,0,12,Mercedes-Benz,190,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Subcompact Cars,1985,2000,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1630,0,0,GMC,C15 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1985,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16300,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2000,0,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16301,0,0,Suzuki,Vitara 2Door 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0077,0.0,35.8689,0.0,Sport Utility Vehicle - 2WD,2000,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16302,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16303,0,0,Suzuki,Vitara 2Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16304,0,0,Suzuki,Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16305,0,0,Suzuki,Vitara 4Door 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 2WD,2000,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16306,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8617,0.0,30.175,0.0,Sport Utility Vehicle - 2WD,2000,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16307,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2000,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16308,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2000,-4250,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16309,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2000,0,,2MODE CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4888,CA model,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1631,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-4500,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16310,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,2000,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16311,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2000,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16312,0,0,Toyota,RAV4 Soft Top 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,2000,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16313,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2000,-9500,,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16314,0,0,Cadillac,Escalade 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,20.8,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16315,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16316,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16317,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,20.7,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16318,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16319,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,21.8,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4819,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1632,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16320,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.606,0.0,20.8094,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16321,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8811,0.0,34.9854,0.0,Sport Utility Vehicle - 4WD,2000,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16322,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4653,0.0,31.6745,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16323,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8743,0.0,31.5295,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16324,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4055,0.0,31.793,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16325,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.8294,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16326,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16327,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,20.6,0.0,Sport Utility Vehicle - 4WD,2000,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,0.00046,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16328,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,0.00054,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16329,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5964,0.0,21.0996,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1633,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,4.0S-4 SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16330,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5955,0.0,25.9454,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16331,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7477,0.0,25.1407,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,0.0004,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16332,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.041,0.0,26.1539,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,0.0005,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16333,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.425,0.0,25.0474,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16334,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16335,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16336,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16337,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,21.8,0.0,Sport Utility Vehicle - 4WD,2000,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16338,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6021,0.0,20.8033,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16339,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,20.7,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4844,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1634,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16340,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16341,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,31.5,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16342,0,0,Honda,Passport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,25.6,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16343,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16344,0,0,Infiniti,QX4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4267,0.0,23.5537,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16345,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16346,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16347,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,25.6,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16348,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16349,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4841,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1635,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16350,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16351,0,0,Isuzu,Vehicross,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16352,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16353,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4534,0.0,26.2268,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16354,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1493,0.0,27.9599,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16355,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,26.3,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16356,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1498,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16357,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0671,0.0,23.97,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16358,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16359,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.7,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1816,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1636,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16360,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4,0.0,24.7336,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16361,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,27.6492,0.0,Sport Utility Vehicle - 4WD,2000,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16362,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2000,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16363,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7256,0.0,21.8354,0.0,Sport Utility Vehicle - 4WD,2000,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16364,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7256,0.0,21.8354,0.0,Sport Utility Vehicle - 4WD,2000,-11250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,16365,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2801,0.0,19.2393,0.0,Sport Utility Vehicle - 4WD,2000,-13250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16366,0,0,Lexus,LX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,20.9,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,5.4V-4,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16367,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,21.3,0.0,Sport Utility Vehicle - 4WD,2000,-11250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16368,0,0,Mercedes-Benz,ML320,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2000,-6750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16369,0,0,Mercedes-Benz,ML430,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,24.1,0.0,Sport Utility Vehicle - 4WD,2000,-8000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1816,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1637,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16370,0,0,Mercedes-Benz,ML55,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,22.1,0.0,Sport Utility Vehicle - 4WD,2000,-9500,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,4.0S-4,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16371,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,0.0005,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16372,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.425,0.0,25.0474,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16373,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1837,0.0,25.3446,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16374,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16375,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3829,0.0,24.6972,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16376,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0538,0.0,25.9118,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16377,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.168,0.0,23.0052,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16378,0,0,Mitsubishi,Nativa 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0538,0.0,25.9118,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16379,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.7486,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1816,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1638,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16380,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6128,0.0,22.6529,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16381,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8153,0.0,23.7304,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16382,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9863,0.0,23.1863,0.0,Sport Utility Vehicle - 4WD,2000,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16383,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2451,0.0,25.4014,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16384,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1004,0.0,34.4568,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16385,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7673,0.0,35.5043,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16386,0,0,Suzuki,Grand Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16387,0,0,Suzuki,Grand Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2000,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16388,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,34.1,0.0,Sport Utility Vehicle - 4WD,2000,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16389,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8923,0.0,35.0531,0.0,Sport Utility Vehicle - 4WD,2000,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1827,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1639,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16390,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16391,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16392,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16393,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16394,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6957,0.0,27.4592,0.0,Sport Utility Vehicle - 4WD,2000,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16395,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9469,0.0,26.9478,0.0,Sport Utility Vehicle - 4WD,2000,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16396,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6312,0.0,24.964,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16397,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,25.016,0.0,Sport Utility Vehicle - 4WD,2000,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16398,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,20.9,0.0,Sport Utility Vehicle - 4WD,2000,-9250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16399,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2698,0.0,33.7984,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,164,0,12,Mercedes-Benz,190,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,28.2051,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1827,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1640,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16400,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9001,0.0,31.7464,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16401,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9106,0.0,34.0217,0.0,Sport Utility Vehicle - 4WD,2000,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16402,0,0,Toyota,RAV4 Soft Top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2000,-1000,,,,,,,,, +14.964294,0.093,0.0,0.0,20,0.0,18,0.0,0.0,0.0,0.0,-1,-1,351.5,403.95454545454544,22,0.0,20,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,NONE,-1,2500,1550,Gasoline or natural gas,Regular Gasoline,-1,-1,25,0.0,25,0.0,0.0,0.0,0.0,0,0,16403,0,7,Chevrolet,Cavalier (Bi-fuel CNG),Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.5984,22.5446,35.3,34.6154,Subcompact Cars,2000,-500,,,,,Bifuel (CNG),Natural Gas,360,, +0.06882,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,260.3703703703704,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,CNG,-1,1150,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,86,16404,12,9,Honda,Civic CNG,Y,false,85,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,43.7,0.0,Subcompact Cars,2000,6250,,CLKUP,,,CNG,,,, +0.084444,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,319.54545454545456,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1450,0,CNG,Natural Gas,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16405,0,9,Toyota,Camry CNG,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,38.9,0.0,Compact Cars,2000,4750,,CLKUP,,,CNG,,,, +0.116188,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,439.375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,NG,-1,1950,0,CNG,Natural Gas,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16406,0,21,Ford,Crown Victoria CNG,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,29.3,0.0,Large Cars,2000,2250,,CLKUP,,,CNG,,,, +0.14297200000000002,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,NGV,-1,2400,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16407,0,0,Ford,F150 Pickup 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2000,0,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,NGV,-1,2600,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,16408,0,0,Ford,E250 Econoline 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.6,0.0,"Vans, Cargo Type",2000,-1000,,CLKUP,,,CNG,,,, +16.4805,4.994,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,16409,0,16,Ford,Taurus,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,15.6,36.7,26.9,Large Cars,2000,-1750,,CLKUP,,,FFV,E85,290,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2845,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1641,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1985,-4250,,,,,,,,, +16.4805,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,16410,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,15.1,34.7,25.4,Midsize Station Wagons,2000,-1750,,CLKUP,,,FFV,E85,290,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,16411,0,0,Ford,Ranger 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4714,13.3899,28.3722,20.3779,Standard Pickup Trucks 2WD,2000,-4250,,CLKUP,,,FFV,E85,230/270/270,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,16412,0,0,Ford,Ranger 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5097,14.5524,29.2301,21.6378,Standard Pickup Trucks 2WD,2000,-3250,,,,,FFV,E85,240/290/290,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,16413,0,0,Mazda,B3000 FFV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4495,13.3943,28.3744,20.3512,Standard Pickup Trucks 2WD,2000,-4250,,CLKUP,,,FFV,E85,230/270,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,16414,0,0,Mazda,B3000 FFV 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5097,14.5524,29.2301,21.6378,Standard Pickup Trucks 2WD,2000,-3250,,,,,FFV,E85,240/280,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,16415,0,0,Mazda,B3000 FFV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8767,12.4971,24.3738,17.9833,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,FFV,E85,220/260,, +19.381068,5.758082,0.0,0.0,15,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,16416,0,0,Mazda,B3000 FFV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0469,14.474,27.0992,20.0744,Standard Pickup Trucks 4WD,2000,-4250,,,,,FFV,E85,240/280,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,16417,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,12.6,23.2,17.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,FFV,E85,,, +21.974,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,16418,0,0,Ford,Ranger 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8767,0.0,24.3738,0.0,Standard Pickup Trucks 4WD,2000,-6250,,CLKUP,,,FFV,E85,220/270/260,, +19.381068,5.758082,0.0,0.0,15,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,16419,0,0,Ford,Ranger 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0466,0.0,27.0989,0.0,Standard Pickup Trucks 4WD,2000,-4250,,,,,FFV,E85,240/290/280,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1642,0,0,American Motors Corporation,Eagle 4DR Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +17.337486000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,16420,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,32.1,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,FFV,E85,300,, +17.337486000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,16421,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2701,0.0,32.0465,0.0,Minivan - 2WD,2000,-2500,,CLKUP,,,FFV,E85,300,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,17,0.0,0.0,0.0,0.0,0,0,16422,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,30.5,0.0,Minivan - 2WD,2000,-3250,,CLKUP,,,FFV,E85,300,, +0.24000000000000002,0.0,0.0,0.0,81,0.0,0,0.0,0.0,41.0,0.0,0,-1,0.0,0.0,85,0.0,0,0.0,40.0,0.0,0.0,,,,0,,-1,700,0,Electricity,Electricity,-1,-1,91,0.0,0,0.0,0.0,37.0,0.0,0,0,16423,0,0,Nissan,Altra EV,N,false,0,0,90,0.0,0.0,0.0,0.0,,116.2069,0.0,129.6154,0.0,Midsize Station Wagons,2000,8500,,,,,EV,,,62 KW AC Induction, +0.28200000000000003,0.0,0.0,0.0,81,0.0,0,0.0,0.0,41.0,0.0,0,-1,0.0,0.0,72,0.0,0,0.0,47.0,0.0,0.0,,,2-Wheel Drive,0,,-1,850,0,Electricity,Electricity,-1,-1,64,0.0,0,0.0,0.0,53.0,0.0,0,0,16424,0,0,Toyota,RAV4 EV,N,false,0,0,88,0.0,0.0,0.0,0.0,,116.2069,0.0,91.0811,0.0,Sport Utility Vehicle - 2WD,2000,7750,,,,,EV,,,50 KW DC, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16425,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1342,0.0,30.2,0.0,Two Seaters,2001,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16426,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.4,0.0,Two Seaters,2001,-4750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16427,0,0,Audi,TT Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1781,0.0,38.4049,0.0,Two Seaters,2001,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16428,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1821,0.0,35.9077,0.0,Two Seaters,2001,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16429,0,0,BMW,M Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,31.5,0.0,Two Seaters,2001,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1643,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16430,0,0,BMW,M Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,31.5,0.0,Two Seaters,2001,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16431,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.4523,0.0,Two Seaters,2001,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16432,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3268,0.0,34.6842,0.0,Two Seaters,2001,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16433,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3701,0.0,33.544,0.0,Two Seaters,2001,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16434,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,34.9,0.0,Two Seaters,2001,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16435,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.4523,0.0,Two Seaters,2001,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16436,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7065,0.0,32.537,0.0,Two Seaters,2001,-3750,,3MODE,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16437,0,0,BMW,Z8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Two Seaters,2001,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16438,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,32.9,0.0,Two Seaters,2001,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16439,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,35.9,0.0,Two Seaters,2001,-3000,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,CA model,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1644,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-6500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16440,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,26.4,0.0,Two Seaters,2001,-11250,T,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16441,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,26.4,0.0,Two Seaters,2001,-11250,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16442,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2001,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16443,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.498,0.0,Two Seaters,2001,-15500,T,3MODE,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,6700,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,16444,0,0,Ferrari,550 Maranello/Barchetta,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,9.3989,0.0,16.7,0.0,Two Seaters,2001,-21500,T,,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,16445,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2001,6250,,,,,Hybrid,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,16446,0,0,Honda,Insight,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2001,6250,,,,,Hybrid,,,, +6.218642,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,167.67924528301887,53,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1050,0,Regular,Regular Gasoline,-1,-1,60,0.0,0,0.0,0.0,0.0,0.0,0,0,16447,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.3878,0.0,87.3962,0.0,Two Seaters,2001,6750,,SIL,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16448,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3,0.0,32.9,0.0,Two Seaters,2001,-3000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,16449,0,0,Lamborghini,DB132/144 Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.4,0.0,17.0,0.0,Two Seaters,2001,-15500,T,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1645,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1985,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,GUZZLER,-1,3150,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16450,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,37.1795,0.0,Two Seaters,2001,-3750,T,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16451,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,35.5,0.0,Two Seaters,2001,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16452,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,36.4,0.0,Two Seaters,2001,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16453,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,35.8,0.0,Two Seaters,2001,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16454,8,0,Mercedes-Benz,SL500,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9343,0.0,29.2677,0.0,Two Seaters,2001,-5750,T,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16455,8,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3696,0.0,24.1254,0.0,Two Seaters,2001,-9500,T,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16456,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.1255,0.0,37.8226,0.0,Two Seaters,2001,-1000,,EMS 2MODE,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16457,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3714,0.0,37.6644,0.0,Two Seaters,2001,-2250,,EMS,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16458,10,0,Mercedes-Benz,SLK320,Y,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,35.0,0.0,Two Seaters,2001,-2250,,EMS 2MODE,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16459,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0617,0.0,34.579,0.0,Two Seaters,2001,-3750,,EMS,,S,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,CA model,-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1646,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1985,-6500,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16460,0,0,Plymouth,Prowler,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,29.0,0.0,Two Seaters,2001,-5750,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16461,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,35.1,0.0,Two Seaters,2001,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16462,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4354,0.0,31.543,0.0,Two Seaters,2001,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16463,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6379,0.0,31.7197,0.0,Two Seaters,2001,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16464,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,32.7,0.0,Two Seaters,2001,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16465,2,0,Toyota,MR2,Y,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,38.3,0.0,Two Seaters,2001,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,65,16466,0,0,Audi,TT Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6573,0.0,40.0388,0.0,Minicompact Cars,2001,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,16467,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5185,0.0,36.664,0.0,Minicompact Cars,2001,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,16468,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1821,0.0,35.9077,0.0,Minicompact Cars,2001,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16469,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6881,0.0,33.1986,0.0,Minicompact Cars,2001,-3750,,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4946,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1647,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16470,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8722,0.0,34.0846,0.0,Minicompact Cars,2001,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16471,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,35.8,0.0,Minicompact Cars,2001,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16472,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0164,0.0,32.7719,0.0,Minicompact Cars,2001,-3750,,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16473,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,29.5431,0.0,Minicompact Cars,2001,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16474,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1354,0.0,31.0075,0.0,Minicompact Cars,2001,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16475,10,0,Jaguar,XKR Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1432,0.0,28.7881,0.0,Minicompact Cars,2001,-5750,T,2MODE,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16476,6,0,Mercedes-Benz,CLK320 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1799,0.0,35.3396,0.0,Minicompact Cars,2001,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16477,6,0,Mercedes-Benz,CLK430 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.2,0.0,Minicompact Cars,2001,-4750,,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16478,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.927,0.0,38.227,0.0,Minicompact Cars,2001,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16479,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.5334,0.0,34.8786,0.0,Minicompact Cars,2001,-1000,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4944,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1648,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16480,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,34.5,0.0,Minicompact Cars,2001,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16481,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.947,0.0,33.3988,0.0,Minicompact Cars,2001,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16482,5,0,Porsche,911 Carrera 2/4,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,32.1,0.0,Minicompact Cars,2001,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16483,5,0,Porsche,911 Carrera 2/4,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5898,0.0,30.1442,0.0,Minicompact Cars,2001,-5750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16484,5,0,Porsche,911 Carrera 2/4,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2213,0.0,32.3493,0.0,Minicompact Cars,2001,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16485,5,0,Porsche,911 Carrera 2/4,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2428,0.0,30.7628,0.0,Minicompact Cars,2001,-5750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16486,4,0,Porsche,911 Turbo,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Minicompact Cars,2001,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16487,4,0,Porsche,911 Turbo,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.3976,0.0,28.5492,0.0,Minicompact Cars,2001,-6750,T,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,16488,0,12,Acura,Integra,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2141,0.0,39.04,0.0,Subcompact Cars,2001,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,16489,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.8,0.0,Subcompact Cars,2001,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4942,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1649,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,DOHC-VTEC,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,77,16490,0,12,Acura,Integra,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8673,0.0,38.8614,0.0,Subcompact Cars,2001,-500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16491,0,7,Bentley,Azure,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6,0.0,20.4,0.0,Subcompact Cars,2001,-13250,T,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16492,0,7,Bentley,Continental SC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3908,0.0,20.0453,0.0,Subcompact Cars,2001,-13250,T,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16493,0,12,Bentley,Continental T,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3908,0.0,20.0453,0.0,Subcompact Cars,2001,-13250,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16494,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2965,0.0,34.2857,0.0,Subcompact Cars,2001,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16495,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6015,0.0,37.5841,0.0,Subcompact Cars,2001,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16496,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0217,0.0,37.9588,0.0,Subcompact Cars,2001,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16497,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3268,0.0,34.6842,0.0,Subcompact Cars,2001,-3000,,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16498,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.9,0.0,Subcompact Cars,2001,-5750,T,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16499,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,39.2466,0.0,Subcompact Cars,2001,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,165,0,12,Mercedes-Benz,190,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3672,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1650,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.9231,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16500,12,0,Chevrolet,Camaro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2052,0.0,39.9786,0.0,Subcompact Cars,2001,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16501,12,0,Chevrolet,Camaro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,32.8804,0.0,Subcompact Cars,2001,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16502,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2633,0.0,35.869,0.0,Subcompact Cars,2001,-3000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,16503,0,10,Chevrolet,Metro,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.2064,0.0,44.2,0.0,Subcompact Cars,2001,2250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,16504,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,2001,-15500,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16505,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,2001,-15500,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16506,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,41.9,0.0,Subcompact Cars,2001,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16507,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,42.9,0.0,Subcompact Cars,2001,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16508,9,0,Ford,Mustang,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1777,0.0,34.3435,0.0,Subcompact Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16509,9,0,Ford,Mustang,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,37.0,0.0,Subcompact Cars,2001,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3671,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1651,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16510,9,0,Ford,Mustang,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0257,0.0,31.4713,0.0,Subcompact Cars,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16511,9,0,Ford,Mustang,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5,0.0,31.8,0.0,Subcompact Cars,2001,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4 valve,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16512,9,0,Ford,Mustang,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6655,0.0,31.4955,0.0,Subcompact Cars,2001,-4750,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,16513,13,0,Honda,Civic HX,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.2153,0.0,50.9399,0.0,Subcompact Cars,2001,3500,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,16514,13,0,Honda,Civic HX,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.1,0.0,56.0,0.0,Subcompact Cars,2001,4000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16515,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,34.3,0.0,Subcompact Cars,2001,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16516,9,0,Honda,Prelude,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.2931,0.0,33.9482,0.0,Subcompact Cars,2001,-2250,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16517,13,0,Hyundai,Tiburon,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,38.7,0.0,Subcompact Cars,2001,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16518,13,0,Hyundai,Tiburon,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.3,0.0,Subcompact Cars,2001,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16519,11,0,Jaguar,XK8,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1354,0.0,31.0075,0.0,Subcompact Cars,2001,-4750,,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3770,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,1652,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicles,1985,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16520,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1432,0.0,28.7881,0.0,Subcompact Cars,2001,-5750,T,2MODE,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16521,0,11,Lexus,IS 300,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5398,0.0,29.5344,0.0,Subcompact Cars,2001,-4750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16522,11,0,Mercedes-Benz,CLK320,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.0,0.0,36.9784,0.0,Subcompact Cars,2001,-2250,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16523,11,0,Mercedes-Benz,CLK430,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2489,0.0,31.8499,0.0,Subcompact Cars,2001,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16524,11,0,Mercedes-Benz,CLK55 AMG,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.7,0.0,Subcompact Cars,2001,-4750,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,16525,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,35.1,0.0,Subcompact Cars,2001,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,79,16526,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,38.2,0.0,Subcompact Cars,2001,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,16527,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.4472,0.0,34.7465,0.0,Subcompact Cars,2001,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,16528,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,36.2,0.0,Subcompact Cars,2001,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,16529,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.8995,0.0,35.8,0.0,Subcompact Cars,2001,-3000,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3771,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1653,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1985,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16530,12,0,Pontiac,Firebird/Trans Am,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,39.1902,0.0,Subcompact Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16531,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2154,0.0,39.9361,0.0,Subcompact Cars,2001,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16532,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,32.7,0.0,Subcompact Cars,2001,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16533,12,0,Pontiac,Firebird/Trans Am,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,35.3,0.0,Subcompact Cars,2001,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16534,0,7,Rolls-Royce,Corniche,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6,0.0,20.4,0.0,Subcompact Cars,2001,-13250,T,EMS CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16535,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,29.3,0.0,Subcompact Cars,2001,-4750,,EMS CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16536,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,31.6,0.0,Subcompact Cars,2001,-4750,,EMS,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16537,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2,0.0,35.4,0.0,Subcompact Cars,2001,-1000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16538,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,36.3,0.0,Subcompact Cars,2001,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16539,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,38.7,0.0,Subcompact Cars,2001,-1750,,SIL,T,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3772,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1654,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.2308,0.0,Special Purpose Vehicles,1985,-9250,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16540,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,36.6,0.0,Subcompact Cars,2001,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16541,13,0,Saab,9-3 Viggen Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,39.4,0.0,Subcompact Cars,2001,-1750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16542,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.7,0.0,45.6,0.0,Subcompact Cars,2001,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16543,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9786,0.0,45.2908,0.0,Subcompact Cars,2001,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,16544,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6049,0.0,51.302,0.0,Subcompact Cars,2001,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16545,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Subcompact Cars,2001,1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16546,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4605,0.0,37.4616,0.0,Subcompact Cars,2001,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16547,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0743,0.0,37.1555,0.0,Subcompact Cars,2001,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16548,0,11,Subaru,Impreza AWD,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2,0.0,36.2,0.0,Subcompact Cars,2001,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16549,0,11,Subaru,Impreza AWD,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,35.5,0.0,Subcompact Cars,2001,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3890,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1655,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1985,-9250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16550,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,43.4,0.0,Subcompact Cars,2001,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16551,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,47.1,0.0,Subcompact Cars,2001,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16552,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Subcompact Cars,2001,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16553,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.4,0.0,Subcompact Cars,2001,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,8,77,16554,0,0,Suzuki,Swift,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.2064,0.0,44.2,0.0,Subcompact Cars,2001,2250,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,8,77,16555,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.4,0.0,54.2,0.0,Subcompact Cars,2001,4000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16556,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,36.9,0.0,Subcompact Cars,2001,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16557,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.1,0.0,Subcompact Cars,2001,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,78,16558,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,45.8,0.0,Subcompact Cars,2001,2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,16559,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8997,0.0,42.4,0.0,Subcompact Cars,2001,1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,1656,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1985,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,78,16560,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,40.5,0.0,Subcompact Cars,2001,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,78,16561,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.6335,0.0,38.099,0.0,Subcompact Cars,2001,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16562,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9745,0.0,36.6918,0.0,Subcompact Cars,2001,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16563,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.797,0.0,39.5533,0.0,Subcompact Cars,2001,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,16564,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2245,0.0,36.6153,0.0,Subcompact Cars,2001,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,16565,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3699,0.0,39.2601,0.0,Subcompact Cars,2001,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,12,85,16566,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.9945,0.0,56.5504,0.0,Subcompact Cars,2001,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,12,85,16567,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4592,0.0,62.9103,0.0,Subcompact Cars,2001,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,16568,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9745,0.0,36.6918,0.0,Subcompact Cars,2001,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,16569,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.797,0.0,39.5533,0.0,Subcompact Cars,2001,500,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,CA model,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1657,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16570,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,33.3,0.0,Subcompact Cars,2001,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16571,8,0,Volvo,C70 Convertible,Y,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,35.7,0.0,Subcompact Cars,2001,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16572,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1002,0.0,34.7002,0.0,Subcompact Cars,2001,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC-VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16573,14,0,Acura,3.2CL,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3967,0.0,37.4409,0.0,Compact Cars,2001,-3000,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16574,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,40.6,0.0,Compact Cars,2001,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16575,0,14,Audi,A4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3007,0.0,36.5466,0.0,Compact Cars,2001,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16576,0,14,Audi,A4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8837,0.0,33.3481,0.0,Compact Cars,2001,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16577,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1045,0.0,38.2739,0.0,Compact Cars,2001,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16578,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0037,0.0,34.9442,0.0,Compact Cars,2001,-3000,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16579,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3335,0.0,31.1484,0.0,Compact Cars,2001,-3750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1658,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16580,0,14,Audi,A4 quattro,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4701,0.0,32.3437,0.0,Compact Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16581,0,14,Audi,S4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1581,0.0,30.36,0.0,Compact Cars,2001,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16582,0,14,Audi,S4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2591,0.0,30.9445,0.0,Compact Cars,2001,-4750,,CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16583,0,12,Bentley,Continental R,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3908,0.0,20.0453,0.0,Compact Cars,2001,-13250,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16584,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2965,0.0,34.2857,0.0,Compact Cars,2001,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16585,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6015,0.0,37.5841,0.0,Compact Cars,2001,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16586,0,11,BMW,325xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8153,0.0,32.6951,0.0,Compact Cars,2001,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16587,0,11,BMW,325xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.7,0.0,Compact Cars,2001,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16588,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0217,0.0,37.9588,0.0,Compact Cars,2001,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16589,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3268,0.0,34.6842,0.0,Compact Cars,2001,-3000,,3MODE,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,CA model,-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1659,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1985,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16590,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.9,0.0,Compact Cars,2001,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16591,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3747,0.0,31.6921,0.0,Compact Cars,2001,-4750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16592,0,11,BMW,525i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2965,0.0,34.2857,0.0,Compact Cars,2001,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16593,0,11,BMW,525i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6015,0.0,37.5841,0.0,Compact Cars,2001,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16594,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0217,0.0,37.9588,0.0,Compact Cars,2001,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16595,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0164,0.0,32.7719,0.0,Compact Cars,2001,-3750,,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16596,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.9,0.0,Compact Cars,2001,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16597,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1994,0.0,29.1499,0.0,Compact Cars,2001,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16598,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),17.2,0.0,26.7717,0.0,Compact Cars,2001,-6750,T,3MODE,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16599,0,11,BMW,M5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Compact Cars,2001,-8000,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,78,166,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4946,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1660,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16600,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.8001,0.0,37.7003,0.0,Compact Cars,2001,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16601,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1,0.0,41.0,0.0,Compact Cars,2001,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16602,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.502,0.0,42.0214,0.0,Compact Cars,2001,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16603,13,13,Chevrolet,Cavalier,N,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.3,0.0,Compact Cars,2001,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16604,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,40.5,0.0,Compact Cars,2001,0,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16605,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.8,0.0,42.8,0.0,Compact Cars,2001,1750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,16606,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.6,0.0,51.6,0.0,Compact Cars,2001,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,16607,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.6184,0.0,52.2789,0.0,Compact Cars,2001,3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16608,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,35.1,0.0,Compact Cars,2001,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16609,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,38.2,0.0,Compact Cars,2001,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4944,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1661,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16610,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,34.4,0.0,Compact Cars,2001,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16611,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6465,0.0,35.9,0.0,Compact Cars,2001,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16612,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.1995,0.0,34.2493,0.0,Compact Cars,2001,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16613,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Compact Cars,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16614,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,36.6,0.0,Compact Cars,2001,-1000,,VMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,16615,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,46.8,0.0,Compact Cars,2001,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,16616,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,45.8,0.0,Compact Cars,2001,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,91,16617,11,11,Daewoo,Lanos,Y,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9379,0.0,41.6595,0.0,Compact Cars,2001,0,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,16618,11,11,Daewoo,Lanos,Y,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4476,0.0,44.5352,0.0,Compact Cars,2001,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,16619,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1983,0.0,39.6499,0.0,Compact Cars,2001,-500,,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4942,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1662,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,91,16620,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5475,0.0,39.9798,0.0,Compact Cars,2001,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16621,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.5476,0.0,39.2629,0.0,Compact Cars,2001,500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16622,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2851,0.0,42.6791,0.0,Compact Cars,2001,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16623,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,35.1,0.0,Compact Cars,2001,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16624,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,38.2,0.0,Compact Cars,2001,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16625,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,34.4,0.0,Compact Cars,2001,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16626,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6465,0.0,35.9,0.0,Compact Cars,2001,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16627,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.1995,0.0,34.2493,0.0,Compact Cars,2001,-1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16628,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9,0.0,44.4,0.0,Compact Cars,2001,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,95,16629,0,17,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1239,0.0,41.9327,0.0,Compact Cars,2001,1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1663,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4 valve,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,9,95,16630,0,17,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5188,0.0,40.1095,0.0,Compact Cars,2001,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,9,95,16631,0,17,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5,0.0,45.8495,0.0,Compact Cars,2001,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4 valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,95,16632,0,17,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,42.2,0.0,Compact Cars,2001,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,SOHC-VTEC,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16633,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.9,0.0,48.5,0.0,Compact Cars,2001,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16634,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.1236,0.0,48.2704,0.0,Compact Cars,2001,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,16635,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.6709,0.0,49.8,0.0,Compact Cars,2001,3000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,SOHC-VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16636,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.1,0.0,46.9,0.0,Compact Cars,2001,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16637,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8,0.0,44.8,0.0,Compact Cars,2001,1000,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16638,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,45.9,0.0,Compact Cars,2001,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16639,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7,0.0,45.2,0.0,Compact Cars,2001,1000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1664,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1985,-2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16640,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,47.6,0.0,Compact Cars,2001,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16641,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.4,0.0,Compact Cars,2001,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16642,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2459,0.0,42.5643,0.0,Compact Cars,2001,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16643,0,14,Infiniti,G20,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5499,0.0,39.0,0.0,Compact Cars,2001,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16644,0,14,Infiniti,G20,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.1,0.0,Compact Cars,2001,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16645,0,13,Jaguar,XJ8,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1354,0.0,31.0075,0.0,Compact Cars,2001,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16646,13,0,Jaguar,XJR,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6607,0.0,27.6172,0.0,Compact Cars,2001,-6750,T,2MODE,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16647,0,13,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,39.9,0.0,Compact Cars,2001,1000,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16648,0,13,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,40.4,0.0,Compact Cars,2001,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,93,16649,0,10,Kia,Sephia/Spectra,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,39.8,0.0,Compact Cars,2001,0,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1665,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,93,16650,0,10,Kia,Sephia/Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5,0.0,38.7,0.0,Compact Cars,2001,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16651,0,13,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1709,0.0,33.7,0.0,Compact Cars,2001,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16652,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,43.4,0.0,Compact Cars,2001,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16653,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,37.0483,0.0,Compact Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16654,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3342,0.0,37.0539,0.0,Compact Cars,2001,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16655,0,13,Mazda,Millenia,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.3,0.0,Compact Cars,2001,-3000,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16656,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6995,0.0,34.0,0.0,Compact Cars,2001,-3000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16657,0,13,Mazda,Protege/Protege MPS,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.3,0.0,42.1,0.0,Compact Cars,2001,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16658,0,13,Mazda,Protege/Protege MPS,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.7,0.0,44.2,0.0,Compact Cars,2001,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16659,0,13,Mazda,Protege/Protege MPS,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,38.5,0.0,Compact Cars,2001,500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1666,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1985,-3250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16660,0,13,Mazda,Protege/Protege MPS,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.3,0.0,Compact Cars,2001,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16661,0,12,Mercedes-Benz,C240,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0174,0.0,33.6596,0.0,Compact Cars,2001,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16662,0,12,Mercedes-Benz,C240,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.1842,0.0,34.2323,0.0,Compact Cars,2001,-3750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16663,0,12,Mercedes-Benz,C320,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.29,0.0,32.6948,0.0,Compact Cars,2001,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16664,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9186,0.0,29.4156,0.0,Compact Cars,2001,-5750,T,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16665,12,0,Mercedes-Benz,CL55 AMG,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,28.2,0.0,Compact Cars,2001,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,5.8,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16666,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1187,0.0,29.745,0.0,Compact Cars,2001,-6750,T,EMS 2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16667,11,11,Mitsubishi,Mirage,N,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0745,0.0,44.7352,0.0,Compact Cars,2001,1750,,CMODE CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,16668,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.2563,0.0,49.7883,0.0,Compact Cars,2001,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16669,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,41.6,0.0,Compact Cars,2001,1000,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1826,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1667,0,0,Jeep,Cherokee/Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,16670,11,11,Mitsubishi,Mirage,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.2394,0.0,46.2002,0.0,Compact Cars,2001,2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16671,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,35.8,0.0,Compact Cars,2001,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16672,0,14,Nissan,Altima,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,39.2,0.0,Compact Cars,2001,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16673,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.2,0.0,42.8,0.0,Compact Cars,2001,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16674,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.7,0.0,44.5,0.0,Compact Cars,2001,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16675,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5499,0.0,38.2,0.0,Compact Cars,2001,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16676,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,39.3,0.0,Compact Cars,2001,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16677,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,37.5,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16678,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,40.5,0.0,Compact Cars,2001,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16679,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1668,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicles,1985,-4250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16680,0,13,Plymouth,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.5476,0.0,39.2629,0.0,Compact Cars,2001,500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16681,0,13,Plymouth,Neon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.3,0.0,42.8,0.0,Compact Cars,2001,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16682,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,37.5,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16683,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,40.5,0.0,Compact Cars,2001,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16684,14,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16685,12,13,Pontiac,Sunfire,N,false,87,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.8001,0.0,37.7002,0.0,Compact Cars,2001,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16686,12,13,Pontiac,Sunfire,Y,false,87,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1,0.0,41.0,0.0,Compact Cars,2001,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16687,12,13,Pontiac,Sunfire,N,false,87,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7067,0.0,41.5784,0.0,Compact Cars,2001,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16688,12,13,Pontiac,Sunfire,Y,false,87,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.3,0.0,Compact Cars,2001,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16689,12,13,Pontiac,Sunfire,N,false,87,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,40.5,0.0,Compact Cars,2001,0,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1815,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,1669,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,24.359,0.0,Special Purpose Vehicles,1985,-4250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16690,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,47.3,0.0,Compact Cars,2001,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16691,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9786,0.0,45.2908,0.0,Compact Cars,2001,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,16692,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.1,0.0,51.5,0.0,Compact Cars,2001,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16693,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Compact Cars,2001,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16694,0,12,Subaru,Legacy AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1469,0.0,34.3368,0.0,Compact Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16695,0,12,Subaru,Legacy AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8239,0.0,35.2678,0.0,Compact Cars,2001,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16696,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8,0.0,40.7,0.0,Compact Cars,2001,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16697,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,42.7,0.0,Compact Cars,2001,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16698,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.2,0.0,Compact Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16699,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,34.9,0.0,Compact Cars,2001,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49031,"(CALIF) (FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,78,167,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1670,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0,0.0,Special Purpose Vehicles,1985,-5250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16700,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.8,0.0,42.8,0.0,Compact Cars,2001,1750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,16701,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,50.4,0.0,Compact Cars,2001,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,16702,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.9067,0.0,51.9897,0.0,Compact Cars,2001,3000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,16703,14,14,Toyota,Echo,Y,false,88,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.6,0.0,49.1,0.0,Compact Cars,2001,2750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,16704,14,14,Toyota,Echo,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0893,0.0,52.3261,0.0,Compact Cars,2001,3500,,,,,,,,, +8.02051,0.0,0.0,0.0,42,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1350,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,16705,0,12,Toyota,Prius,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),57.3,0.0,57.9,0.0,Compact Cars,2001,5250,,,,,Hybrid,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,88,16706,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2245,0.0,36.6153,0.0,Compact Cars,2001,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,16707,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3699,0.0,39.2601,0.0,Compact Cars,2001,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,16708,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.9945,0.0,56.5504,0.0,Compact Cars,2001,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,18,88,16709,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4592,0.0,62.9103,0.0,Compact Cars,2001,4250,,,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1671,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,88,16710,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9745,0.0,36.6918,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,16711,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.797,0.0,39.5533,0.0,Compact Cars,2001,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,86,16712,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2245,0.0,36.6153,0.0,Compact Cars,2001,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,86,16713,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3699,0.0,39.2601,0.0,Compact Cars,2001,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,86,16714,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.5,0.0,Compact Cars,2001,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16715,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2245,0.0,36.6153,0.0,Compact Cars,2001,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16716,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3699,0.0,39.2601,0.0,Compact Cars,2001,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,16717,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.1,0.0,57.2,0.0,Compact Cars,2001,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,16718,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4592,0.0,62.9103,0.0,Compact Cars,2001,4250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16719,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9745,0.0,36.6918,0.0,Compact Cars,2001,-500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1835,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1672,0,0,Jeep,Grand Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Special Purpose Vehicles,1985,-7750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16720,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.797,0.0,39.5533,0.0,Compact Cars,2001,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16721,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9479,0.0,32.9541,0.0,Compact Cars,2001,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16722,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6051,0.0,36.0022,0.0,Compact Cars,2001,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16723,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0576,0.0,30.3493,0.0,Compact Cars,2001,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16724,13,0,Volvo,C70 Coupe,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,34.0,0.0,Compact Cars,2001,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16725,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,2001,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16726,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8949,0.0,35.793,0.0,Compact Cars,2001,-2250,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16727,0,13,Volvo,S40 FWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,40.5,0.0,Compact Cars,2001,-1000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16728,0,14,Volvo,S60,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,2001,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16729,0,14,Volvo,S60,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,34.0,0.0,Compact Cars,2001,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1673,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.7692,0.0,Special Purpose Vehicles,1985,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16730,0,14,Volvo,S60,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8949,0.0,35.793,0.0,Compact Cars,2001,-2250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16731,0,14,Volvo,S60,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.348,0.0,36.0182,0.0,Compact Cars,2001,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16732,0,14,Volvo,S60,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.4,0.0,Compact Cars,2001,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16733,0,14,Volvo,S60,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.9,0.0,35.8,0.0,Compact Cars,2001,-2250,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC-VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16734,0,14,Acura,3.2TL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2954,0.0,37.3689,0.0,Midsize Cars,2001,-3000,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16735,0,15,Acura,3.5RL,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,30.2,0.0,Midsize Cars,2001,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16736,0,15,Audi,A6,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.382,0.0,32.3,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16737,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1581,0.0,30.36,0.0,Midsize Cars,2001,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16738,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2591,0.0,30.9445,0.0,Midsize Cars,2001,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16739,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9725,0.0,30.3847,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1674,0,0,Subaru,Brat 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.8889,0.0,39.0,0.0,Special Purpose Vehicles,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16740,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.7499,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16741,0,18,Audi,A8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.7499,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16742,0,18,Audi,S8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1686,0.0,27.3492,0.0,Midsize Cars,2001,-8000,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16743,0,12,Bentley,Arnage,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3908,0.0,20.0453,0.0,Midsize Cars,2001,-13250,T,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16744,0,13,BMW,740i,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,30.0,0.0,Midsize Cars,2001,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16745,0,13,BMW,740i,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),16.8,0.0,26.8,0.0,Midsize Cars,2001,-6750,T,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16746,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16747,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,38.5,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16748,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3059,0.0,36.2424,0.0,Midsize Cars,2001,-3000,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16749,0,14,Cadillac,Catera,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4396,0.0,30.684,0.0,Midsize Cars,2001,-3250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1675,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.8889,0.0,39.0,0.0,Special Purpose Vehicles,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16750,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,35.1,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16751,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,35.1,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16752,0,16,Chevrolet,Lumina,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16753,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16754,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Midsize Cars,2001,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16755,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,38.5,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16756,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6024,0.0,39.0309,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16757,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16758,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,36.6,0.0,Midsize Cars,2001,-1000,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16759,0,14,Daewoo,Leganza,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6926,0.0,35.4989,0.0,Midsize Cars,2001,-1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1676,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,32.0,0.0,Special Purpose Vehicles,1985,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16760,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2928,0.0,36.2603,0.0,Midsize Cars,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16761,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6024,0.0,39.0309,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16762,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16763,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,36.6,0.0,Midsize Cars,2001,-1000,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16764,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4517,0.0,38.4316,0.0,Midsize Cars,2001,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16765,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,38.5,0.0,Midsize Cars,2001,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,VTEC,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16766,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,40.4,0.0,Midsize Cars,2001,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16767,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,40.4,0.0,Midsize Cars,2001,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16768,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.377,0.0,35.9414,0.0,Midsize Cars,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16769,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,36.1,0.0,Midsize Cars,2001,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1677,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,32.0,0.0,Special Purpose Vehicles,1985,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16770,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,37.9,0.0,Midsize Cars,2001,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16771,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.2,0.0,Midsize Cars,2001,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16772,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.5,0.0,Midsize Cars,2001,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16773,0,15,Hyundai,XG300,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7995,0.0,34.8,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16774,0,15,Infiniti,I30,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,33.8,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16775,0,13,Infiniti,Q45,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4848,0.0,29.7038,0.0,Midsize Cars,2001,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16776,0,12,Jaguar,S-Type,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.61,0.0,32.641,0.0,Midsize Cars,2001,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16777,0,12,Jaguar,S-Type,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1879,0.0,31.0605,0.0,Midsize Cars,2001,-4750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16778,0,13,Jaguar,Vanden Plas,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1354,0.0,31.0075,0.0,Midsize Cars,2001,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16779,0,13,Jaguar,Vanden Plas S/C,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6607,0.0,27.6172,0.0,Midsize Cars,2001,-6750,T,2MODE,,S,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1678,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.7692,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16780,0,13,Jaguar,XJ8L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1354,0.0,31.0075,0.0,Midsize Cars,2001,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16781,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.1,0.0,Midsize Cars,2001,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16782,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.3,0.0,Midsize Cars,2001,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16783,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,32.1,0.0,Midsize Cars,2001,-2500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16784,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,33.7,0.0,Midsize Cars,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16785,0,15,Lexus,GS 300/GS 430,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5965,0.0,30.8913,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16786,0,15,Lexus,GS 300/GS 430,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1499,0.0,29.4492,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16787,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,32.6,0.0,Midsize Cars,2001,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16788,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,32.4,0.0,Midsize Cars,2001,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16789,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6912,0.0,31.3499,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1679,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0513,0.0,Special Purpose Vehicles,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16790,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,30.4,0.0,Midsize Cars,2001,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16791,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3466,0.0,30.3987,0.0,Midsize Cars,2001,-5750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16792,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,34.8,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4 valve,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16793,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,34.4,0.0,Midsize Cars,2001,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16794,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,0.0,35.4,0.0,Midsize Cars,2001,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16795,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.2,0.0,Midsize Cars,2001,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16796,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.5,0.0,Midsize Cars,2001,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16797,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,34.4,0.0,Midsize Cars,2001,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16798,0,15,Mercedes-Benz,E320,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6,0.0,36.27,0.0,Midsize Cars,2001,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16799,0,15,Mercedes-Benz,E320 4Matic,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9699,0.0,34.1,0.0,Midsize Cars,2001,-3000,,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,78,168,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1680,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Special Purpose Vehicles,1985,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16800,0,15,Mercedes-Benz,E430,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9771,0.0,31.6526,0.0,Midsize Cars,2001,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16801,0,15,Mercedes-Benz,E430 4Matic,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,29.6,0.0,Midsize Cars,2001,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16802,0,15,Mercedes-Benz,E55 AMG,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.5,0.0,Midsize Cars,2001,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16803,0,14,Mitsubishi,Diamante,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.8,0.0,Midsize Cars,2001,-4750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16804,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4288,0.0,36.1575,0.0,Midsize Cars,2001,-1000,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16805,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,34.7,0.0,Midsize Cars,2001,-3000,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16806,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,33.8,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16807,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,35.0,0.0,Midsize Cars,2001,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16808,0,15,Oldsmobile,Aurora,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,35.5,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16809,0,15,Oldsmobile,Aurora,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,31.7,0.0,Midsize Cars,2001,-4750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1681,0,0,Subaru,Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Special Purpose Vehicles,1985,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16810,0,17,Oldsmobile,Intrigue,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,35.6,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16811,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16812,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,38.5,0.0,Midsize Cars,2001,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16813,16,16,Pontiac,Grand Prix,Y,false,98,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.491,0.0,36.1498,0.0,Midsize Cars,2001,-3000,,CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16814,0,12,Rolls-Royce,Silver Seraph,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,20.8,0.0,Midsize Cars,2001,-11250,T,EMS CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,90,16815,0,0,Saab,9-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2,0.0,36.2,0.0,Midsize Cars,2001,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,90,16816,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2,0.0,35.4,0.0,Midsize Cars,2001,-1000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,90,16817,0,0,Saab,9-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,38.7,0.0,Midsize Cars,2001,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205L,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,90,16818,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,36.6,0.0,Midsize Cars,2001,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,90,16819,0,0,Saab,9-3 Viggen,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,39.4,0.0,Midsize Cars,2001,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1682,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.7692,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16820,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,37.6,0.0,Midsize Cars,2001,-1000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16821,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.0,0.0,Midsize Cars,2001,-3750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16822,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,39.1,0.0,Midsize Cars,2001,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16823,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.3,0.0,Midsize Cars,2001,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16824,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.3,0.0,Midsize Cars,2001,-3750,,2MODE,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16825,0,18,Saturn,L100/200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,42.4,0.0,Midsize Cars,2001,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16826,0,18,Saturn,L100/200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,41.8,0.0,Midsize Cars,2001,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16827,0,18,Saturn,L300,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.6,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16828,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8,0.0,40.7,0.0,Midsize Cars,2001,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16829,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,42.7,0.0,Midsize Cars,2001,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1683,0,0,Subaru,XT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.7692,0.0,Special Purpose Vehicles,1985,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16830,0,14,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.2,0.0,Midsize Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16831,0,14,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,34.9,0.0,Midsize Cars,2001,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16832,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4384,0.0,37.3881,0.0,Midsize Cars,2001,-2250,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16833,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9607,0.0,39.9562,0.0,Midsize Cars,2001,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16834,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9275,0.0,33.4579,0.0,Midsize Cars,2001,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16835,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9896,0.0,36.8052,0.0,Midsize Cars,2001,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16836,0,15,Volvo,S80/S80 Executive,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),20.7,0.0,33.2,0.0,Midsize Cars,2001,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16837,0,15,Volvo,S80/S80 Executive,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5992,0.0,34.3992,0.0,Midsize Cars,2001,-3000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16838,0,18,Audi,A8 L,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.6987,0.0,Large Cars,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16839,0,13,BMW,740il,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8991,0.0,29.9982,0.0,Large Cars,2001,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1684,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,19.2308,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16840,0,13,BMW,750il,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7,0.0,25.4,0.0,Large Cars,2001,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16841,0,18,Buick,LeSabre,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16842,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16843,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3059,0.0,36.2424,0.0,Large Cars,2001,-3000,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16844,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,35.1,0.0,Large Cars,2001,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16845,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Large Cars,2001,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16846,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.698,0.0,38.4975,0.0,Large Cars,2001,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16847,0,17,Chrysler,300M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S4),19.9,0.0,33.0,0.0,Large Cars,2001,-2500,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16848,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16849,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,34.8,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38083,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1685,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,19.2308,0.0,Special Purpose Vehicle 2WD,1985,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16850,0,19,Chrysler,LHS,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,33.2,0.0,Large Cars,2001,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16851,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.4,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16852,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,36.6,0.0,Large Cars,2001,-1000,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16853,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6,0.0,34.2,0.0,Large Cars,2001,-2500,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16854,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),19.9,0.0,33.0,0.0,Large Cars,2001,-2500,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16855,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,32.3,0.0,Large Cars,2001,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4 valve,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16856,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,34.8,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16857,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,34.4,0.0,Large Cars,2001,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16858,0,16,Lexus,LS 430,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3995,0.0,31.4446,0.0,Large Cars,2001,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,4.6W,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16859,0,19,Lincoln,Continental,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,32.3,0.0,Large Cars,2001,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3560,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1686,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16860,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,32.3,0.0,Large Cars,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16861,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5549,0.0,32.0889,0.0,Large Cars,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16862,0,15,Mercedes-Benz,S430,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6468,0.0,32.3277,0.0,Large Cars,2001,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16863,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9186,0.0,29.4155,0.0,Large Cars,2001,-5750,T,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16864,0,15,Mercedes-Benz,S55 AMG,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,28.2,0.0,Large Cars,2001,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,5.8,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16865,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1184,0.0,29.7436,0.0,Large Cars,2001,-6750,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16866,0,18,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,38.0,0.0,Large Cars,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16867,0,18,Pontiac,Bonneville,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3059,0.0,36.2424,0.0,Large Cars,2001,-3000,,CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16868,0,12,Rolls-Royce,Park Ward,N,false,0,120,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,20.8,0.0,Large Cars,2001,-11250,T,EMS CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16869,0,16,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0324,0.0,37.4,0.0,Large Cars,2001,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3687,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1687,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1985,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16870,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1045,0.0,38.2739,0.0,Small Station Wagons,2001,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16871,0,31,Audi,A4 Avant quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0037,0.0,34.9442,0.0,Small Station Wagons,2001,-3000,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16872,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3335,0.0,31.1484,0.0,Small Station Wagons,2001,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16873,0,31,Audi,A4 Avant quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9725,0.0,30.3847,0.0,Small Station Wagons,2001,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16874,0,31,Audi,S4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1581,0.0,30.36,0.0,Small Station Wagons,2001,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16875,0,31,Audi,S4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2591,0.0,30.9445,0.0,Small Station Wagons,2001,-4750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16876,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2965,0.0,34.2857,0.0,Small Station Wagons,2001,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16877,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6015,0.0,37.5841,0.0,Small Station Wagons,2001,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16878,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8153,0.0,32.6951,0.0,Small Station Wagons,2001,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16879,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,33.7,0.0,Small Station Wagons,2001,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4840,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1688,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,19.2308,0.0,Special Purpose Vehicle 2WD,1985,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16880,0,33,BMW,525i Sport Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6881,0.0,33.1986,0.0,Small Station Wagons,2001,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16881,0,33,BMW,525i Sport Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8722,0.0,34.0846,0.0,Small Station Wagons,2001,-3000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16882,0,33,BMW,540i Sport Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),17.2,0.0,26.7717,0.0,Small Station Wagons,2001,-6750,T,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,16883,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1983,0.0,39.6499,0.0,Small Station Wagons,2001,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16884,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5475,0.0,39.9798,0.0,Small Station Wagons,2001,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16885,0,25,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.7,0.0,45.6,0.0,Small Station Wagons,2001,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16886,0,25,Saturn,SW,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9786,0.0,45.2908,0.0,Small Station Wagons,2001,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,16887,0,25,Saturn,SW,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Small Station Wagons,2001,1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16888,0,25,Subaru,Impreza Wagon AWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4605,0.0,37.4616,0.0,Small Station Wagons,2001,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16889,0,25,Subaru,Impreza Wagon AWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0743,0.0,37.1555,0.0,Small Station Wagons,2001,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1689,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Two Seaters,1986,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16890,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Small Station Wagons,2001,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,16891,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1,0.0,43.9,0.0,Small Station Wagons,2001,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16892,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7025,0.0,36.8939,0.0,Small Station Wagons,2001,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16893,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4795,0.0,40.1582,0.0,Small Station Wagons,2001,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16894,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9479,0.0,32.9541,0.0,Small Station Wagons,2001,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16895,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6051,0.0,36.0022,0.0,Small Station Wagons,2001,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,33,89,16896,0,0,Volvo,V40,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,40.5,0.0,Small Station Wagons,2001,-1000,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16897,0,36,Audi,A6 Avant quattro,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9725,0.0,30.3847,0.0,Midsize Station Wagons,2001,-4750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16898,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9903,0.0,41.69,0.0,Midsize Station Wagons,2001,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4 valve,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16899,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5188,0.0,40.1095,0.0,Midsize Station Wagons,2001,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,78,169,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,10186,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1690,0,0,Autokraft Limited,A.C.Mkiv,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1986,-4250,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,16900,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5,0.0,45.8495,0.0,Midsize Station Wagons,2001,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4 valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,16901,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,42.2,0.0,Midsize Station Wagons,2001,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4 valve,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16902,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,32.8493,0.0,Midsize Station Wagons,2001,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16903,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.3,0.0,Midsize Station Wagons,2001,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,32,104,16904,0,0,Lexus,RX 300 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Midsize Station Wagons,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,32,104,16905,0,0,Lexus,RX 300,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Midsize Station Wagons,2001,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4 valve,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16906,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,32.8493,0.0,Midsize Station Wagons,2001,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16907,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.3,0.0,Midsize Station Wagons,2001,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16908,0,44,Mercedes-Benz,E320 (Wagon),Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6795,0.0,35.4154,0.0,Midsize Station Wagons,2001,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16909,0,44,Mercedes-Benz,E320 4Matic (Wagon),Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6798,0.0,34.1867,0.0,Midsize Station Wagons,2001,-3000,,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,12715,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1691,0,0,Bertone,X1/9,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16910,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.4,0.0,Midsize Station Wagons,2001,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16911,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,32.3,0.0,Midsize Station Wagons,2001,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16912,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,35.9,0.0,Midsize Station Wagons,2001,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16913,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,34.1,0.0,Midsize Station Wagons,2001,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16914,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.5,0.0,Midsize Station Wagons,2001,-3750,,2MODE,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16915,0,34,Saturn,LW200,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3985,0.0,41.0998,0.0,Midsize Station Wagons,2001,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16916,0,34,Saturn,LW200,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,40.7,0.0,Midsize Station Wagons,2001,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16917,0,34,Saturn,LW300,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.6,0.0,Midsize Station Wagons,2001,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16918,0,34,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.972,0.0,34.5173,0.0,Midsize Station Wagons,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16919,0,34,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8239,0.0,35.2678,0.0,Midsize Station Wagons,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4196,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1692,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1986,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,16920,0,34,Subaru,Legacy Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,34.2,0.0,Midsize Station Wagons,2001,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,16921,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4384,0.0,37.3881,0.0,Midsize Station Wagons,2001,-2250,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,16922,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9607,0.0,39.9562,0.0,Midsize Station Wagons,2001,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16923,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1687,0.0,33.9694,0.0,Midsize Station Wagons,2001,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16924,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9896,0.0,36.8052,0.0,Midsize Station Wagons,2001,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16925,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0576,0.0,30.3493,0.0,Midsize Station Wagons,2001,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,16926,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,35.7,0.0,Midsize Station Wagons,2001,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,16927,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0,0.0,33.3,0.0,Midsize Station Wagons,2001,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,16928,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.348,0.0,36.0182,0.0,Midsize Station Wagons,2001,-2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,16929,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1002,0.0,34.7002,0.0,Midsize Station Wagons,2001,-3000,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4197,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1693,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1986,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,16930,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.4,0.0,Midsize Station Wagons,2001,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,16931,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,34.7,0.0,Midsize Station Wagons,2001,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,16932,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4712,0.0,31.8427,0.0,Midsize Station Wagons,2001,-3750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16933,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9446,0.0,28.4447,0.0,Small Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16934,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,28.3733,0.0,Small Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16935,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9542,0.0,28.4544,0.0,Small Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16936,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,28.4239,0.0,Small Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16937,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,Small Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16938,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16939,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7302,0.0,25.9523,0.0,Standard Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4196,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1694,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16940,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3648,0.0,25.8532,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16941,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.161,0.0,25.8453,0.0,Standard Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16942,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.9,0.0,Standard Pickup Trucks 2WD,2001,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16943,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7498,0.0,31.996,0.0,Standard Pickup Trucks 2WD,2001,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16944,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.257,0.0,25.918,0.0,Standard Pickup Trucks 2WD,2001,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16945,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3872,0.0,27.6709,0.0,Standard Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16946,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.401,0.0,24.3677,0.0,Standard Pickup Trucks 2WD,2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16947,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2338,0.0,26.0,0.0,Standard Pickup Trucks 2WD,2001,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16948,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9085,0.0,21.2945,0.0,Standard Pickup Trucks 2WD,2001,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16949,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,25.2,0.0,Standard Pickup Trucks 2WD,2001,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4197,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1695,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1986,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16950,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3945,0.0,26.6,0.0,Standard Pickup Trucks 2WD,2001,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16951,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4232,0.0,23.7299,0.0,Standard Pickup Trucks 2WD,2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16952,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1055,0.0,24.3951,0.0,Standard Pickup Trucks 2WD,2001,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16953,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4705,0.0,23.3386,0.0,Standard Pickup Trucks 2WD,2001,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16954,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.1,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16955,0,0,Ford,Explorer Sport Trac 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,26.8,0.0,Standard Pickup Trucks 2WD,2001,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16956,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7332,0.0,25.9539,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16957,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0924,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2001,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16958,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3778,0.0,26.2921,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16959,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8477,0.0,24.4645,0.0,Standard Pickup Trucks 2WD,2001,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38043,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,1696,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Two Seaters,1986,-2500,,VLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16960,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2483,0.0,24.4409,0.0,Standard Pickup Trucks 2WD,2001,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,16961,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,20.3,0.0,Standard Pickup Trucks 2WD,2001,-11250,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16962,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2001,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16963,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,36.1,0.0,Standard Pickup Trucks 2WD,2001,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16964,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,30.6,0.0,Standard Pickup Trucks 2WD,2001,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16965,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5491,0.0,32.8481,0.0,Standard Pickup Trucks 2WD,2001,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16966,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16967,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,28.7,0.0,Standard Pickup Trucks 2WD,2001,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16968,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3334,0.0,27.7413,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16969,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6989,0.0,28.2974,0.0,Standard Pickup Trucks 2WD,2001,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS TURBO),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,1697,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Two Seaters,1986,-3250,,VLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16970,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16971,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7976,0.0,24.935,0.0,Standard Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16972,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3077,0.0,25.7771,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,16973,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2892,0.0,25.8958,0.0,Standard Pickup Trucks 2WD,2001,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16974,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.9,0.0,Standard Pickup Trucks 2WD,2001,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16975,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2001,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,16976,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,36.1,0.0,Standard Pickup Trucks 2WD,2001,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16977,0,0,Mazda,B2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,30.6,0.0,Standard Pickup Trucks 2WD,2001,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16978,0,0,Mazda,B2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5491,0.0,32.8481,0.0,Standard Pickup Trucks 2WD,2001,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16979,0,0,Mazda,B3000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38043,(FFS TURBO),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,1698,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Two Seaters,1986,-2500,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,16980,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,28.7,0.0,Standard Pickup Trucks 2WD,2001,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16981,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2154,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16982,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2001,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16983,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,30.163,0.0,Standard Pickup Trucks 2WD,2001,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,16984,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6546,0.0,32.8687,0.0,Standard Pickup Trucks 2WD,2001,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16985,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5147,0.0,24.6936,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16986,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,23.5,0.0,Standard Pickup Trucks 2WD,2001,-8000,,,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16987,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2684,0.0,23.9022,0.0,Standard Pickup Trucks 2WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16988,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8846,0.0,22.9568,0.0,Standard Pickup Trucks 2WD,2001,-8000,,,,S,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,16989,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4624,0.0,29.9771,0.0,Standard Pickup Trucks 2WD,2001,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,23,49,1699,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Two Seaters,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,16990,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3047,0.0,32.5951,0.0,Standard Pickup Trucks 2WD,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16991,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.636,0.0,27.9317,0.0,Standard Pickup Trucks 2WD,2001,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16992,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.106,0.0,25.2559,0.0,Standard Pickup Trucks 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,16993,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,2001,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16994,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0218,0.0,24.6364,0.0,Standard Pickup Trucks 2WD,2001,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16995,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1523,0.0,24.6935,0.0,Standard Pickup Trucks 2WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,16996,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3433,0.0,23.0847,0.0,Standard Pickup Trucks 2WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,16997,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16998,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,16999,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2855,0.0,22.5856,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,17,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,46.0,0.0,Two Seaters,1985,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,170,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1700,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1986,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17000,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.1118,0.0,22.8583,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17001,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2458,0.0,22.4461,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17002,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3344,0.0,23.5941,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17003,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.1205,0.0,23.0791,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17004,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6766,0.0,23.0357,0.0,Standard Pickup Trucks 4WD,2001,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17005,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8219,0.0,25.4669,0.0,Standard Pickup Trucks 4WD,2001,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17006,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5995,0.0,23.029,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17007,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.7923,0.0,24.166,0.0,Standard Pickup Trucks 4WD,2001,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17008,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,21.6714,0.0,Standard Pickup Trucks 4WD,2001,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17009,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3835,0.0,20.8846,0.0,Standard Pickup Trucks 4WD,2001,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1701,0,0,Ferrari,328 GTS/GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1986,-9250,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17010,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.3967,0.0,21.6835,0.0,Standard Pickup Trucks 4WD,2001,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17011,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2819,0.0,22.0866,0.0,Standard Pickup Trucks 4WD,2001,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17012,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17013,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8101,0.0,24.9197,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17014,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17015,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,24.0,0.0,Standard Pickup Trucks 4WD,2001,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17016,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17017,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.7,0.0,23.2,0.0,Standard Pickup Trucks 4WD,2001,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17018,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0224,0.0,21.6965,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17019,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.5,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1702,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Two Seaters,1986,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17020,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17021,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.1,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17022,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17023,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17024,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17025,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2916,0.0,22.5916,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17026,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.6,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17027,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2458,0.0,22.4461,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,17028,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.4,0.0,18.0,0.0,Standard Pickup Trucks 4WD,2001,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17029,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3436,0.0,23.6225,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1703,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Two Seaters,1986,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17030,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.1205,0.0,23.0791,0.0,Standard Pickup Trucks 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17031,0,0,Isuzu,Hombre Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,22.3,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17032,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.5,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17033,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17034,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.1,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17035,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17036,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17037,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7188,0.0,23.0919,0.0,Standard Pickup Trucks 4WD,2001,-8000,,,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17038,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.5,0.0,Standard Pickup Trucks 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17039,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6371,0.0,22.6856,0.0,Standard Pickup Trucks 4WD,2001,-8000,,,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3133,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1704,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.8974,0.0,Two Seaters,1986,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17040,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6888,0.0,26.5286,0.0,Standard Pickup Trucks 4WD,2001,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17041,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5736,0.0,27.1103,0.0,Standard Pickup Trucks 4WD,2001,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17042,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2001,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17043,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2001,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17044,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17045,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2001,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17046,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6829,0.0,21.8829,0.0,Standard Pickup Trucks 4WD,2001,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17047,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,"Vans, Cargo Type",2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17048,0,0,Chevrolet,Astro AWD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17049,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.3,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1705,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Two Seaters,1986,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17050,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9899,0.0,23.4732,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17051,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0906,0.0,21.797,0.0,"Vans, Cargo Type",2001,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17052,0,0,Dodge,Ram Van 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.3932,0.0,21.1982,0.0,"Vans, Cargo Type",2001,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17053,0,0,Dodge,Ram Van 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4072,0.0,23.4596,0.0,"Vans, Cargo Type",2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17054,0,0,Dodge,Ram Van 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,22.2113,0.0,"Vans, Cargo Type",2001,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17055,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.3,0.0,20.9,0.0,"Vans, Cargo Type",2001,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17056,0,0,Dodge,Ram Van 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,23.4671,0.0,"Vans, Cargo Type",2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17057,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,22.2113,0.0,"Vans, Cargo Type",2001,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17058,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.3,0.0,"Vans, Cargo Type",2001,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17059,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3585,0.0,26.4195,0.0,"Vans, Cargo Type",2001,-5250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1706,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.2222,0.0,44.8718,0.0,Two Seaters,1986,2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17060,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2514,0.0,24.4528,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17061,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.3,0.0,"Vans, Cargo Type",2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17062,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2,0.0,23.4,0.0,"Vans, Cargo Type",2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17063,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.3,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17064,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9595,0.0,23.3922,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17065,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0729,0.0,21.7912,0.0,"Vans, Cargo Type",2001,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17066,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,"Vans, Cargo Type",2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17067,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,"Vans, Cargo Type",2001,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17068,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,27.4,0.0,"Vans, Passenger Type",2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17069,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.0,0.0,"Vans, Passenger Type",2001,-6250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,1707,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Two Seaters,1986,2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17070,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17071,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17072,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.6,0.0,"Vans, Passenger Type",2001,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17073,0,0,Dodge,Ram Wagon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.3,0.0,20.9,0.0,"Vans, Passenger Type",2001,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17074,0,0,Dodge,Ram Wagon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,23.4671,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17075,0,0,Dodge,Ram Wagon 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.496,0.0,20.4783,0.0,"Vans, Passenger Type",2001,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17076,0,0,Dodge,Ram Wagon 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2648,0.0,22.4063,0.0,"Vans, Passenger Type",2001,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17077,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.3,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17078,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9975,0.0,25.1,0.0,"Vans, Passenger Type",2001,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17079,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,21.7,0.0,"Vans, Passenger Type",2001,-9250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1708,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Two Seaters,1986,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17080,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17081,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.2,0.0,"Vans, Passenger Type",2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17082,0,0,GMC,Savana 1500/2500 2WD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.6,0.0,"Vans, Passenger Type",2001,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17083,0,0,GMC,Safari 2WD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,27.4,0.0,"Vans, Passenger Type",2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17084,0,0,GMC,Safari AWD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.0,0.0,"Vans, Passenger Type",2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17085,0,0,Volkswagen,Eurovan Camper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0947,0.0,25.4,0.0,Minivan - 2WD,2001,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17086,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2001,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17087,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.2,0.0,Minivan - 2WD,2001,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17088,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.653,0.0,30.6464,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17089,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,30.4,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +7.163524,0.0,0.0,0.0,42,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1200,0,Regular,Regular Gasoline,-1,-1,51,0.0,0,0.0,0.0,0.0,0.0,0,0,1709,0,0,Honda,Civic CRX HF,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,58.0,0.0,73.0769,0.0,Two Seaters,1986,6000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17090,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.2,0.0,Minivan - 2WD,2001,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17091,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6761,0.0,30.6236,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17092,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,30.4,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17093,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.5,0.0,30.9,0.0,Minivan - 2WD,2001,-3250,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17094,0,0,Ford,Windstar FWD Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8489,0.0,29.9492,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17095,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.598,0.0,30.497,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC-VTEC,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17096,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7696,0.0,32.1045,0.0,Minivan - 2WD,2001,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17097,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8471,0.0,29.3071,0.0,Minivan - 2WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17098,0,0,Mercury,Villager FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4383,0.0,29.0721,0.0,Minivan - 2WD,2001,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17099,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7553,0.0,29.7446,0.0,Minivan - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,81,171,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,53.0,0.0,Subcompact Cars,1985,4000,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,1710,0,0,Honda,Civic CRX HF,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.1026,0.0,Two Seaters,1986,5000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17100,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17101,0,0,Pontiac,Montana FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2001,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17102,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,31.3,0.0,Minivan - 2WD,2001,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17103,0,0,Volkswagen,Eurovan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4111,0.0,25.4356,0.0,Minivan - 2WD,2001,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17104,0,0,Chrysler,Town and Country/Voyager/Grand Voy. AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,28.7,0.0,Minivan - 4WD,2001,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17105,0,0,Dodge,Caravan/Grand Caravan AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.3,0.0,Minivan - 4WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17106,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.8,0.0,29.2,0.0,Minivan - 4WD,2001,-4250,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17107,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17108,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17109,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +47.068308,0.0,0.0,0.0,6,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1269.5714285714287,7,0.0,0,0.0,0.0,0.0,0.0,12,5.2,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,8600,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1711,8,0,Lamborghini,Countach,N,false,45,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,7.0,0.0,13.0,0.0,Two Seaters,1986,-31000,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17110,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17111,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17112,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8491,0.0,32.7438,0.0,Sport Utility Vehicle - 2WD,2001,-500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17113,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3499,0.0,32.7328,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17114,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0338,0.0,33.2988,0.0,Sport Utility Vehicle - 2WD,2001,-500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17115,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2996,0.0,32.7851,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17116,0,0,Chevrolet,Tracker LT 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17117,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17118,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17119,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0778,0.0,23.8302,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1712,0,0,Maserati,Biturbo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Two Seaters,1986,-9250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17120,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,22.2113,0.0,Sport Utility Vehicle - 2WD,2001,-9250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17121,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0966,0.0,36.1466,0.0,Sport Utility Vehicle - 2WD,2001,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17122,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9439,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17123,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3585,0.0,26.4195,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17124,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2,0.0,23.4,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17125,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2154,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17126,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17127,0,0,Ford,Explorer Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17128,0,0,Ford,Explorer Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17129,0,0,Ford,Explorer USPS 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2154,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20062,(GUZZLER) (FFS) (MPFI),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1713,0,0,Mercedes-Benz,560SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Two Seaters,1986,-9500,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17130,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17131,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17132,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17133,0,0,GMC,Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17134,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17135,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17136,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17137,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,25.9,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17138,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17139,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4,0.0,35.6,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,40602,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1714,0,0,Panther Car Company Limited,Kallista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Two Seaters,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17140,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17141,0,0,Infiniti,QX4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17142,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17143,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17144,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17145,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,25.9,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17146,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17147,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,29.1,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17148,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17149,0,0,Isuzu,Trooper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,40601,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1715,0,0,Panther Car Company Limited,Kallista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Two Seaters,1986,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17150,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,27.4499,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17151,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.4,0.0,29.5,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17152,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17153,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,26.3,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17154,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17155,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17156,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2001,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17157,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17158,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.1992,0.0,21.2471,0.0,Sport Utility Vehicle - 2WD,2001,-13250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17159,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0966,0.0,36.1466,0.0,Sport Utility Vehicle - 2WD,2001,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4221,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1716,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,41.0256,0.0,Two Seaters,1986,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17160,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9439,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17161,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2154,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17162,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2001,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17163,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.798,0.0,28.546,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17164,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7792,0.0,27.1165,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17165,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,2001,-2500,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17166,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,30.3,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17167,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.798,0.0,28.546,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17168,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17169,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,24.5,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4220,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1717,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.8718,0.0,Two Seaters,1986,1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17170,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17171,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0499,0.0,30.7,0.0,Sport Utility Vehicle - 2WD,2001,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17172,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5147,0.0,24.6936,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17173,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2684,0.0,23.9022,0.0,Sport Utility Vehicle - 2WD,2001,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17174,0,0,Pontiac,Aztek FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2001,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17175,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17176,0,0,Suzuki,Grand Vitara,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17177,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,25.4,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17178,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17179,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2001,0,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4150,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1718,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Two Seaters,1986,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17180,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0499,0.0,35.6989,0.0,Sport Utility Vehicle - 2WD,2001,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17181,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17182,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,32.1,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17183,0,0,Suzuki,Vitara 4Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17184,0,0,Suzuki,Vitara 4Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 2WD,2001,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17185,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2001,-4250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17186,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2001,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17187,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2001,-3250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17188,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2001,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17189,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,0.0,39.4,0.0,Sport Utility Vehicle - 2WD,2001,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4152,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1719,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,34.0,0.0,Two Seaters,1986,-1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17190,0,0,Toyota,Sequoia 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.5,0.0,Sport Utility Vehicle - 2WD,2001,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC-VTEC,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17191,0,0,Acura,MDX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9789,0.0,29.3599,0.0,Sport Utility Vehicle - 4WD,2001,-5750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17192,0,0,Audi,Allroad,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.6,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17193,0,0,Audi,Allroad,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.9853,0.0,26.3476,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17194,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17195,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17196,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.0381,0.0,26.5492,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,3MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17197,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.1791,0.0,25.7491,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17198,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.8329,0.0,22.2552,0.0,Sport Utility Vehicle - 4WD,2001,-9500,,3MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17199,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,172,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4153,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1720,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Two Seaters,1986,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17200,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,22.5,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17201,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17202,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17203,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,21.8,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17204,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2451,0.0,31.7987,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17205,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9984,0.0,31.7461,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17206,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2896,0.0,31.8649,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17207,0,0,Chevrolet,Tracker 4WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.0462,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17208,0,0,Chevrolet,Tracker LT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17209,0,0,Chevrolet,Tracker ZR2 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1721,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Two Seaters,1986,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17210,0,0,Chevrolet,Tracker ZR2 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17211,0,0,Chevrolet,Tracker ZR2 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17212,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17213,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,21.6714,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17214,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17215,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.52,0.0,30.1487,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17216,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17217,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,21.2,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17218,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5228,0.0,24.3404,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17219,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,54520,(GUZZLER) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1722,0,0,Texas Coach Company,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Two Seaters,1986,-11000,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17220,0,0,Ford,Explorer Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0994,0.0,24.3499,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17221,0,0,Ford,Explorer Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8101,0.0,24.9197,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17222,0,0,Ford,Explorer USPS 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5228,0.0,24.3404,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17223,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17224,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,22.5,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17225,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,21.5,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17226,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17227,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.1,0.0,20.6,0.0,Sport Utility Vehicle - 4WD,2001,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17228,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17229,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.1,0.0,20.6,0.0,Sport Utility Vehicle - 4WD,2001,-11000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(16-VALVE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1723,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,40.0,0.0,Two Seaters,1986,1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17230,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17231,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,31.5,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17232,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17233,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,25.9,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17234,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17235,0,0,Infiniti,QX4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17236,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17237,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,25.9,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17238,0,0,Isuzu,Rodeo Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17239,0,0,Isuzu,Rodeo Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(16-VALVE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1724,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Two Seaters,1986,1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17240,0,0,Isuzu,Trooper 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17241,0,0,Isuzu,Trooper 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17242,0,0,Isuzu,Vehicross 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17243,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6674,0.0,25.3343,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17244,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,28.1,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17245,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17246,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17247,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.8,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17248,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17249,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,62001,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1725,0,0,TVR Engineering Ltd,TVR 280i/350i Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,30.0,0.0,Two Seaters,1986,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17250,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17251,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,27.6492,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17252,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17253,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2001,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17254,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17255,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6751,0.0,21.4462,0.0,Sport Utility Vehicle - 4WD,2001,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17256,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6751,0.0,21.4462,0.0,Sport Utility Vehicle - 4WD,2001,-11250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17257,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2801,0.0,19.2393,0.0,Sport Utility Vehicle - 4WD,2001,-13250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17258,0,0,Lexus,LX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3122,0.0,20.1872,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17259,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,20.2,0.0,Sport Utility Vehicle - 4WD,2001,-13250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,62001,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1726,0,0,TVR Engineering Ltd,TVR 280i/350i Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,30.0,0.0,Two Seaters,1986,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17260,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17261,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.52,0.0,30.1487,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17262,0,0,Mercedes-Benz,ML320,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2001,-5750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17263,0,0,Mercedes-Benz,ML430,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2001,-6750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17264,0,0,Mercedes-Benz,ML55 AMG,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,22.1,0.0,Sport Utility Vehicle - 4WD,2001,-9500,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17265,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5228,0.0,24.3404,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17266,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17267,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0393,0.0,21.9784,0.0,Sport Utility Vehicle - 4WD,2001,-9500,,CMODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17268,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.8013,0.0,22.449,0.0,Sport Utility Vehicle - 4WD,2001,-9500,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17269,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4116,0.0,27.4693,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9068,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,7,74,1727,0,0,Alfa Romeo,GTV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Minicompact Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17270,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9994,0.0,25.0491,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17271,0,0,Mitsubishi,Nativa 4WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4116,0.0,27.4693,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17272,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17273,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17274,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.164,0.0,24.1163,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17275,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17276,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17277,0,0,Pontiac,Aztek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2001,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17278,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.303,0.0,34.1795,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17279,0,33,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8239,0.0,35.2678,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54011,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,8,74,1728,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,44.4444,0.0,54.0,0.0,Minicompact Cars,1986,4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17280,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17281,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17282,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,25.3,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17283,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2001,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17284,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,34.1,0.0,Sport Utility Vehicle - 4WD,2001,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17285,0,0,Suzuki,Vitara 2Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8499,0.0,34.7974,0.0,Sport Utility Vehicle - 4WD,2001,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17286,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17287,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17288,0,0,Suzuki,Vitara 4Door 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17289,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2001,-1000,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54011,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,8,74,1729,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,64.0,0.0,Minicompact Cars,1986,5000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17290,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1754,0.0,24.304,0.0,Sport Utility Vehicle - 4WD,2001,-5250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17291,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2001,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17292,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2001,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17293,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3122,0.0,20.1872,0.0,Sport Utility Vehicle - 4WD,2001,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17294,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2721,0.0,34.9464,0.0,Sport Utility Vehicle - 4WD,2001,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17295,0,0,Toyota,RAV4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2001,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17296,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.5,0.0,Sport Utility Vehicle - 4WD,2001,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,36,98,17297,0,0,Volvo,V70 XC AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2001,-4750,,2MODE CLKUP,T,,,,,, +14.327048,0.088536,0.0,0.0,20,0.0,18,0.0,0.0,0.0,0.0,-1,-1,334.76190476190476,386.39130434782606,23,0.0,21,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,1500,Gasoline or natural gas,Regular Gasoline,-1,-1,28,0.0,26,0.0,0.0,0.0,0.0,0,0,17298,0,7,Chevrolet,Cavalier (Bi-fuel CNG),N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3475,22.7,38.6,35.7,Subcompact Cars,2001,0,,,,,Bifuel (CNG),Natural Gas,140,, +0.084444,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,319.54545454545456,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1450,0,CNG,Natural Gas,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17299,0,9,Toyota,Camry CNG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,38.9,0.0,Compact Cars,2001,4750,,CLKUP,,,CNG,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,173,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +6.855888,0.0,0.0,0.0,44,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,185.14583333333334,48,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54014,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,53,0.0,0,0.0,0.0,0.0,0.0,8,74,1730,0,0,Chevrolet,Sprint ER,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,61.1111,0.0,76.9231,0.0,Minicompact Cars,1986,6250,,SIL,,,,,,, +0.116188,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,439.375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG140/220,-1,1950,0,CNG,Natural Gas,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17300,0,14,Ford,Crown Victoria CNG,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,29.3,0.0,Large Cars,2001,2250,,CLKUP,,,CNG,,,, +0.14297200000000002,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG250,-1,2400,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17301,0,0,Ford,F150 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2001,0,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,CNG RNG180,-1,2600,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17302,0,0,Dodge,Ram Van 2500 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,19.8,0.0,"Vans, Cargo Type",2001,-1000,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG200/300,-1,2600,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17303,0,0,Ford,E250 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.6,0.0,"Vans, Cargo Type",2001,-1000,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,CNG RNG180,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17304,0,0,Dodge,Ram Wagon 2500 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.0,0.0,"Vans, Passenger Type",2001,-1000,,CLKUP,,,CNG,,,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,17305,0,39,Ford,Taurus Wagon FFV,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,15.1,33.2,25.2,Midsize Station Wagons,2001,-2500,,CLKUP,,,FFV,E85,290,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,17306,0,0,Chevrolet,S10 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6889,0.0,32.5878,0.0,Small Pickup Trucks 2WD,2001,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,17307,0,0,Chevrolet,S10 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2001,-500,,SIL,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,17308,0,0,GMC,Sonoma 2WD (FFV),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6889,0.0,32.5878,0.0,Small Pickup Trucks 2WD,2001,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,17309,0,0,GMC,Sonoma 2WD (FFV),Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2001,-500,,SIL,,,FFV,E85,310,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1731,3,0,Ferrari,Mondial/Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Minicompact Cars,1986,-9250,T,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,17310,0,0,Isuzu,Hombre Pickup 2WD (FFV),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6889,0.0,32.5878,0.0,Small Pickup Trucks 2WD,2001,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,17311,0,0,Isuzu,Hombre Pickup 2WD (FFV),Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2001,-500,,SIL,,,FFV,E85,310,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,17312,0,0,Ford,Explorer USPS 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3815,12.2877,23.9174,17.6619,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,FFV,E85,260,, +29.950562,0.169012,0.0,0.0,10,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,807.9090909090909,11,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5000,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,17313,0,0,Ford,F150 Dual-fuel 2WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2001,-13000,,,,,Bifuel (CNG),Natural Gas,120,, +29.950562,0.169012,0.0,0.0,10,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,807.9090909090909,11,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5000,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,17314,0,0,Ford,F150 Dual-fuel 4WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2001,-13000,,,,,Bifuel (CNG),Natural Gas,120,, +27.4675,8.153466,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4600,4250,Gasoline or propane,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,17315,0,0,Ford,F150 Dual-fuel 2WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2001,-11000,,,,,Bifuel (LPG),Propane,250/220/320,, +27.4675,8.153466,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4600,4250,Gasoline or propane,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,17316,0,0,Ford,F150 Dual-fuel 4WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2001,-11000,,,,,Bifuel (LPG),Propane,250/220/320,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,17317,0,17,Ford,Taurus FFV,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,15.3,34.8,25.7,Large Cars,2001,-2500,,CLKUP,,,FFV,E85,290,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,17318,0,16,Mercury,Sable (FFV),Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,15.3,34.8,25.7,Midsize Cars,2001,-2500,,CLKUP,,,FFV,E85,290,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,17319,0,39,Mercury,Sable Wagon (FFV),N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,15.1,33.2,25.2,Midsize Station Wagons,2001,-2500,,CLKUP,,,FFV,E85,290,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1732,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Minicompact Cars,1986,-9250,T,,,,,,,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,17320,0,0,Ford,Explorer USPS 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,13.3,27.3499,20.1,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,FFV,E85,290,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,17321,0,0,Ford,Explorer Sport 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,13.3,27.3499,20.1,Sport Utility Vehicle - 2WD,2001,-4250,,CLKUP,,,FFV,E85,230,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,17322,0,0,Ford,Explorer Sport 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3678,12.2786,23.8563,17.6336,Sport Utility Vehicle - 4WD,2001,-6250,,CLKUP,,,FFV,E85,210,, +0.06634,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,CNG,-1,1100,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17323,13,10,Honda,Civic CNG,N,false,86,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.2,0.0,43.8,0.0,Compact Cars,2001,6500,,,,,CNG,,,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,17324,0,0,Mazda,B3000 (FFV) Ethanol 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,13.6,27.0,20.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,FFV,E85,270,, +19.381068,6.242500000000001,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,522.7647058823529,17,0.0,12,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,17325,0,0,Ford,Ranger 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,13.6,27.0,20.0,Standard Pickup Trucks 2WD,2001,-4250,,CLKUP,,,FFV,E85,270,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,17326,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.653,13.9,30.6464,22.1,Minivan - 2WD,2001,-3250,,CLKUP,,,FFV,E85,280,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,17327,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6761,13.9,30.6236,22.1,Minivan - 2WD,2001,-3250,,CLKUP,,,FFV,E85,280,, +0.28200000000000003,0.0,0.0,0.0,81,0.0,0,0.0,0.0,41.0,0.0,0,-1,0.0,0.0,72,0.0,0,0.0,47.0,0.0,0.0,,,2-Wheel Drive,0,,-1,850,0,Electricity,Electricity,-1,-1,64,0.0,0,0.0,0.0,53.0,0.0,0,0,17328,0,0,Toyota,RAV4 EV,N,false,0,0,88,0.0,0.0,0.0,0.0,,116.2069,0.0,91.0811,0.0,Sport Utility Vehicle - 2WD,2001,7750,,,,,EV,,,50 KW DC, +0.312,0.0,0.0,0.0,74,0.0,0,0.0,0.0,46.0,0.0,0,-1,0.0,0.0,65,0.0,0,0.0,52.0,0.0,0.0,,,,0,,-1,950,0,Electricity,Electricity,-1,-1,58,0.0,0,0.0,0.0,59.0,0.0,0,0,17329,0,0,Ford,Th!nk,N,false,0,0,29,0.0,0.0,0.0,0.0,,105.3125,0.0,82.1951,0.0,Two Seaters,2001,7250,,,,,EV,,,27 KW AC Induction, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1733,10,0,Mazda,RX-7,Y,false,69,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Minicompact Cars,1986,-3250,,,,,,,,, +0.522,0.0,0.0,0.0,45,0.0,0,0.0,0.0,75.0,0.0,0,-1,0.0,0.0,39,0.0,0,0.0,87.0,0.0,0.0,,,2-Wheel Drive,0,,-1,1550,0,Electricity,Electricity,-1,-1,33,0.0,0,0.0,0.0,102.0,0.0,0,0,17330,0,0,Ford,Explorer USPS Electric,N,false,0,0,38,0.0,0.0,0.0,0.0,,62.4074,0.0,46.8056,0.0,Sport Utility Vehicle - 2WD,2001,4250,,,,,EV,,,67 KW AC Induction, +0.27,0.0,0.0,0.0,84,0.0,0,0.0,0.0,40.0,0.0,0,-1,0.0,0.0,75,0.0,0,0.0,45.0,0.0,0.0,,,,0,,-1,800,0,Electricity,Electricity,-1,-1,66,0.0,0,0.0,0.0,51.0,0.0,0,0,17331,0,0,Nissan,Hyper-Mini,N,false,0,0,33,0.0,0.0,0.0,0.0,,120.3571,0.0,93.6111,0.0,Two Seaters,2001,8000,,,,,EV,,,24 KW AC Synchronous, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17332,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1342,0.0,30.2,0.0,Two Seaters,2002,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC-VTEC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17333,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.4,0.0,Two Seaters,2002,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17334,0,0,Aston Martin,Vanquish,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.55,0.0,24.7,0.0,Two Seaters,2002,-11250,T,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17335,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,39.8,0.0,Two Seaters,2002,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17336,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.382,0.0,35.9827,0.0,Two Seaters,2002,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17337,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3435,0.0,34.7183,0.0,Two Seaters,2002,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17338,0,0,BMW,Z3 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.6925,0.0,Two Seaters,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17339,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,34.9,0.0,Two Seaters,2002,-3000,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54012,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,8,74,1734,0,0,Pontiac,Firefly FE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,44.4444,0.0,54.0,0.0,Minicompact Cars,1986,4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17340,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3701,0.0,33.544,0.0,Two Seaters,2002,-3000,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17341,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7065,0.0,32.537,0.0,Two Seaters,2002,-3750,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17342,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.6925,0.0,Two Seaters,2002,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17343,0,0,BMW,Z8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Two Seaters,2002,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17344,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,32.5,0.0,Two Seaters,2002,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17345,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,35.9,0.0,Two Seaters,2002,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17346,0,0,Chrysler,Prowler,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.6,0.0,29.6,0.0,Two Seaters,2002,-3250,,VMODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17347,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,26.4,0.0,Two Seaters,2002,-11250,T,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17348,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,26.4,0.0,Two Seaters,2002,-11250,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17349,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2002,-15500,T,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54012,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,8,74,1735,0,0,Pontiac,Firefly FE,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,64.0,0.0,Minicompact Cars,1986,5000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17350,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.4981,0.0,Two Seaters,2002,-15500,T,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17351,0,0,Ferrari,575,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.6,0.0,20.3,0.0,Two Seaters,2002,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17352,0,0,Ferrari,575,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.2498,0.0,21.4,0.0,Two Seaters,2002,-15500,T,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17353,8,0,Ford,Thunderbird,Y,false,52,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5122,0.0,29.8994,0.0,Two Seaters,2002,-5750,,CLKUP,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,17354,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2002,6250,,,,,Hybrid,,,, +6.218642,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,167.67924528301887,53,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,,-1,1050,0,Regular,Regular Gasoline,-1,-1,59,0.0,0,0.0,0.0,0.0,0.0,0,0,17355,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.5368,0.0,87.21,0.0,Two Seaters,2002,6750,,SIL,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,DOHC-VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17356,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,33.8,0.0,Two Seaters,2002,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,17357,0,0,Lamborghini,L-147 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1208,0.0,16.2936,0.0,Two Seaters,2002,-18250,T,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,17358,0,0,Lamborghini,L-147 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1208,0.0,16.2936,0.0,Two Seaters,2002,-18250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17359,0,0,Maserati,Spider Cambiocorsa/spider GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.4,0.0,21.3,0.0,Two Seaters,2002,-13250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,42020,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1736,4,0,Porsche,911,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1986,-3250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17360,0,0,Maserati,Spider Cambiocorsa/spider GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Two Seaters,2002,-13250,T,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17361,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,35.5,0.0,Two Seaters,2002,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17362,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,36.4,0.0,Two Seaters,2002,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17363,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,35.8,0.0,Two Seaters,2002,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17364,8,0,Mercedes-Benz,SL500,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.9,0.0,Two Seaters,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17365,8,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3498,0.0,23.9491,0.0,Two Seaters,2002,-9500,T,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17366,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.2515,0.0,38.0419,0.0,Two Seaters,2002,-1000,,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17367,10,0,Mercedes-Benz,SLK230 Kompressor,Y,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3556,0.0,37.9237,0.0,Two Seaters,2002,-2250,,EMS,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17368,10,0,Mercedes-Benz,SLK32 AMG,Y,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,30.3,0.0,Two Seaters,2002,-4750,,EMS 2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17369,10,0,Mercedes-Benz,SLK320,Y,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,33.4,0.0,Two Seaters,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1737,4,0,Porsche,911,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.2051,0.0,Minicompact Cars,1986,-5750,T,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17370,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.8,0.0,Two Seaters,2002,-4750,,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17371,0,0,Morgan,Plus Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0409,0.0,30.16,0.0,Two Seaters,2002,-5750,T,VMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17372,0,0,Porsche,911 GT2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Two Seaters,2002,-6750,T,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17373,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,35.1,0.0,Two Seaters,2002,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17374,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4354,0.0,31.543,0.0,Two Seaters,2002,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17375,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,32.7,0.0,Two Seaters,2002,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17376,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6379,0.0,31.7197,0.0,Two Seaters,2002,-4750,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17377,2,0,Toyota,MR2,Y,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,38.3,0.0,Two Seaters,2002,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,65,17378,0,0,Audi,TT Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,40.0,0.0,Minicompact Cars,2002,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,11,65,17379,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.3,0.0,Minicompact Cars,2002,-2250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,8,74,1738,0,0,Porsche,928 S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Minicompact Cars,1986,-5750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,17380,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.382,0.0,35.9827,0.0,Minicompact Cars,2002,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17381,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8482,0.0,34.0168,0.0,Minicompact Cars,2002,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17382,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6709,0.0,32.831,0.0,Minicompact Cars,2002,-3750,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17383,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9218,0.0,33.3892,0.0,Minicompact Cars,2002,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17384,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,35.8,0.0,Minicompact Cars,2002,-3000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17385,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7191,0.0,28.1243,0.0,Minicompact Cars,2002,-6750,T,2MODE,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17386,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5935,0.0,41.039,0.0,Minicompact Cars,2002,0,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17387,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0093,0.0,30.3497,0.0,Minicompact Cars,2002,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17388,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1432,0.0,28.7881,0.0,Minicompact Cars,2002,-5750,T,2MODE,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17389,9,0,Lexus,SC 300/SC 430,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9249,0.0,29.8249,0.0,Minicompact Cars,2002,-4750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,74,1739,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Minicompact Cars,1986,-5750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17390,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,37.2,0.0,Minicompact Cars,2002,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17391,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.7407,0.0,33.8988,0.0,Minicompact Cars,2002,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17392,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,36.6,0.0,Minicompact Cars,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17393,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.5958,0.0,35.4465,0.0,Minicompact Cars,2002,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17394,5,0,Porsche,911 Carrera,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,33.4,0.0,Minicompact Cars,2002,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17395,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1683,0.0,32.7973,0.0,Minicompact Cars,2002,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17396,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2002,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17397,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9277,0.0,29.9987,0.0,Minicompact Cars,2002,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17398,5,0,Porsche,911 Carrera 4S,Y,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,30.3,0.0,Minicompact Cars,2002,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17399,5,0,Porsche,911 Carrera 4S,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8276,0.0,29.1492,0.0,Minicompact Cars,2002,-5750,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,174,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,62,1740,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,31.0,0.0,Minicompact Cars,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17400,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2002,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17401,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.135,0.0,32.9952,0.0,Minicompact Cars,2002,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17402,5,0,Porsche,911 Targa,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2002,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17403,5,0,Porsche,911 Targa,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.135,0.0,32.9952,0.0,Minicompact Cars,2002,-3750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17404,5,0,Porsche,911 Turbo,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Minicompact Cars,2002,-6750,T,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17405,5,0,Porsche,911 Turbo,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.3976,0.0,28.5492,0.0,Minicompact Cars,2002,-6750,T,2MODE,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,81,17406,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,42.0,0.0,Subcompact Cars,2002,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,81,17407,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,39.9,0.0,Subcompact Cars,2002,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,81,17408,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),26.9232,0.0,41.6806,0.0,Subcompact Cars,2002,500,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17409,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6379,0.0,37.6438,0.0,Subcompact Cars,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,62,1741,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Minicompact Cars,1986,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17410,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3621,0.0,34.0235,0.0,Subcompact Cars,2002,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17411,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3435,0.0,34.7183,0.0,Subcompact Cars,2002,-3000,,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17412,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Subcompact Cars,2002,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17413,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3217,0.0,29.6138,0.0,Subcompact Cars,2002,-5750,T,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17414,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,38.8696,0.0,Subcompact Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17415,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2006,0.0,39.9958,0.0,Subcompact Cars,2002,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17416,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7524,0.0,32.5265,0.0,Subcompact Cars,2002,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17417,12,0,Chevrolet,Camaro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.249,0.0,35.857,0.0,Subcompact Cars,2002,-3000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17418,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,2002,-15500,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17419,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,2002,-15500,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42015,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,62,1742,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1986,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17420,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,41.9,0.0,Subcompact Cars,2002,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17421,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,42.9,0.0,Subcompact Cars,2002,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17422,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3676,0.0,34.8678,0.0,Subcompact Cars,2002,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17423,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.8,0.0,37.475,0.0,Subcompact Cars,2002,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17424,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3206,0.0,30.8738,0.0,Subcompact Cars,2002,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17425,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.2,0.0,32.7,0.0,Subcompact Cars,2002,-2500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC-E,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,17426,13,0,Honda,Civic HX,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.9,0.0,51.4,0.0,Subcompact Cars,2002,3500,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC-E,-1,1600,0,Regular,Regular Gasoline,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,17427,13,0,Honda,Civic HX,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.3,0.0,Subcompact Cars,2002,4000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17428,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8,0.0,38.4,0.0,Subcompact Cars,2002,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17429,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,39.8,0.0,Subcompact Cars,2002,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59014,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1743,6,0,Volkswagen,Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Minicompact Cars,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17430,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,33.4,0.0,Subcompact Cars,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17431,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.9,0.0,Subcompact Cars,2002,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17432,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0093,0.0,30.3497,0.0,Subcompact Cars,2002,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17433,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1432,0.0,28.7881,0.0,Subcompact Cars,2002,-5750,T,2MODE,,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17434,5,0,Maserati,Coupe Cambiocorsa/coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.4,0.0,21.3,0.0,Subcompact Cars,2002,-13250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17435,5,0,Maserati,Coupe Cambiocorsa/coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Subcompact Cars,2002,-13250,T,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17436,11,0,Mercedes-Benz,CLK320,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1394,0.0,34.2598,0.0,Subcompact Cars,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17437,9,0,Mercedes-Benz,CLK320 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3396,0.0,33.6,0.0,Subcompact Cars,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17438,11,0,Mercedes-Benz,CLK430,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,30.5,0.0,Subcompact Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17439,9,0,Mercedes-Benz,CLK430 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.4,0.0,Subcompact Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59014,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1744,6,0,Volkswagen,Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Minicompact Cars,1986,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17440,9,0,Mercedes-Benz,CLK55 AMG,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.7,0.0,Subcompact Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17441,9,0,Mercedes-Benz,CLK55 AMG (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,28.6,0.0,Subcompact Cars,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,17442,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,34.4,0.0,Subcompact Cars,2002,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,79,17443,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0356,0.0,38.508,0.0,Subcompact Cars,2002,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,17444,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.0887,0.0,34.3499,0.0,Subcompact Cars,2002,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,17445,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,36.2,0.0,Subcompact Cars,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,17446,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.8995,0.0,35.8,0.0,Subcompact Cars,2002,-3000,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17447,11,0,Mitsubishi,Mirage,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0171,0.0,44.4337,0.0,Subcompact Cars,2002,1750,,CMODE CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,17448,11,0,Mitsubishi,Mirage,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.2709,0.0,49.8112,0.0,Subcompact Cars,2002,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17449,11,0,Mitsubishi,Mirage,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,41.6,0.0,Subcompact Cars,2002,1000,,CMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.1,Front-Wheel Drive,61401,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,6,80,1745,0,0,Yugo,Gy/yugo GVX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Minicompact Cars,1986,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,17450,11,0,Mitsubishi,Mirage,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.697,0.0,46.6968,0.0,Subcompact Cars,2002,2250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17451,12,0,Pontiac,Firebird,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,38.8993,0.0,Subcompact Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17452,12,0,Pontiac,Firebird,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2002,0.0,39.9988,0.0,Subcompact Cars,2002,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17453,12,0,Pontiac,Firebird,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,32.7,0.0,Subcompact Cars,2002,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17454,12,0,Pontiac,Firebird,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,35.3,0.0,Subcompact Cars,2002,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17455,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,29.3,0.0,Subcompact Cars,2002,-4750,,EMS CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17456,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,31.6,0.0,Subcompact Cars,2002,-4750,,EMS,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17457,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1993,0.0,37.5651,0.0,Subcompact Cars,2002,-2250,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17458,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5622,0.0,41.6952,0.0,Subcompact Cars,2002,-500,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17459,13,0,Saab,9-3 Viggen Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4347,0.0,35.7386,0.0,Subcompact Cars,2002,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1746,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17460,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.7,0.0,45.6,0.0,Subcompact Cars,2002,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17461,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1245,0.0,45.567,0.0,Subcompact Cars,2002,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,17462,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Subcompact Cars,2002,1750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,17463,11,0,Saturn,SC,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6015,0.0,51.3006,0.0,Subcompact Cars,2002,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17464,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3205,0.0,34.6016,0.0,Subcompact Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17465,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,35.4,0.0,Subcompact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17466,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4218,0.0,33.6804,0.0,Subcompact Cars,2002,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17467,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5052,0.0,34.722,0.0,Subcompact Cars,2002,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17468,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,43.4,0.0,Subcompact Cars,2002,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17469,0,12,Suzuki,Esteem,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Subcompact Cars,2002,1500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1747,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1986,-2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17470,0,12,Suzuki,Esteem,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,44.4,0.0,Subcompact Cars,2002,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17471,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,39.2,0.0,Subcompact Cars,2002,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17472,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.1,0.0,Subcompact Cars,2002,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,78,17473,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,45.8,0.0,Subcompact Cars,2002,2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,17474,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8997,0.0,42.4,0.0,Subcompact Cars,2002,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,78,17475,10,0,Toyota,Celica,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,40.5,0.0,Subcompact Cars,2002,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,78,17476,10,0,Toyota,Celica,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.6335,0.0,38.099,0.0,Subcompact Cars,2002,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17477,8,0,Volkswagen,Cabrio,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1767,0.0,37.2911,0.0,Subcompact Cars,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17478,8,0,Volkswagen,Cabrio,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0317,0.0,39.783,0.0,Subcompact Cars,2002,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,17479,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,38.7,0.0,Subcompact Cars,2002,-1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64005,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1748,0,10,Audi,4000 CS quattro,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1986,-3250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,17480,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,37.8,0.0,Subcompact Cars,2002,-1000,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,17481,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9599,0.0,39.1151,0.0,Subcompact Cars,2002,-500,,,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,12,85,17482,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.1,0.0,55.9,0.0,Subcompact Cars,2002,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,12,85,17483,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.5427,0.0,62.7912,0.0,Subcompact Cars,2002,4250,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,17484,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1767,0.0,37.2911,0.0,Subcompact Cars,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,17485,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0317,0.0,39.783,0.0,Subcompact Cars,2002,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17486,8,0,Volvo,C70 Convertible,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,33.1,0.0,Subcompact Cars,2002,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17487,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8999,0.0,34.6999,0.0,Subcompact Cars,2002,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17488,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6023,0.0,35.2035,0.0,Subcompact Cars,2002,-2250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17489,14,0,Acura,3.2CL,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6661,0.0,37.3706,0.0,Compact Cars,2002,-2250,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1749,0,13,Audi,4000 S,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17490,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.5427,0.0,36.9304,0.0,Compact Cars,2002,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17491,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,40.1,0.0,Compact Cars,2002,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17492,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.5763,0.0,34.3346,0.0,Compact Cars,2002,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17493,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3861,0.0,35.9735,0.0,Compact Cars,2002,-3000,,CMODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17494,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.162,0.0,36.9,0.0,Compact Cars,2002,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17495,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1793,0.0,32.3696,0.0,Compact Cars,2002,-4750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17496,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4774,0.0,31.9911,0.0,Compact Cars,2002,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17497,0,14,Audi,S4,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.174,0.0,30.0436,0.0,Compact Cars,2002,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17498,0,14,Audi,S4,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S5),19.0976,0.0,30.2734,0.0,Compact Cars,2002,-4750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17499,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6379,0.0,37.6438,0.0,Compact Cars,2002,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,175,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1750,0,13,Audi,4000 S,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17500,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3621,0.0,34.0235,0.0,Compact Cars,2002,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17501,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.7,0.0,Compact Cars,2002,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17502,0,11,BMW,325xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8153,0.0,32.6951,0.0,Compact Cars,2002,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17503,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3435,0.0,34.7183,0.0,Compact Cars,2002,-3000,,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17504,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Compact Cars,2002,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17505,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3747,0.0,31.6921,0.0,Compact Cars,2002,-4750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17506,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.9,0.0,Compact Cars,2002,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17507,0,11,BMW,525i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6379,0.0,37.6438,0.0,Compact Cars,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17508,0,11,BMW,525i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3621,0.0,34.0235,0.0,Compact Cars,2002,-3000,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17509,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9218,0.0,33.3892,0.0,Compact Cars,2002,-3750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1751,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17510,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Compact Cars,2002,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17511,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.9,0.0,Compact Cars,2002,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17512,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1994,0.0,29.1499,0.0,Compact Cars,2002,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17513,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),17.1107,0.0,26.8392,0.0,Compact Cars,2002,-6750,T,3MODE,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17514,0,11,BMW,M5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Compact Cars,2002,-8000,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17515,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4,0.0,41.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17516,13,13,Chevrolet,Cavalier,N,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17517,13,13,Chevrolet,Cavalier,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,41.8,0.0,Compact Cars,2002,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17518,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3058,0.0,42.4598,0.0,Compact Cars,2002,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17519,13,13,Chevrolet,Cavalier,N,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,36.0,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1752,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17520,13,13,Chevrolet,Cavalier,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,40.6,0.0,Compact Cars,2002,0,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17521,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.8,0.0,42.8,0.0,Compact Cars,2002,1750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,17522,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.6,0.0,51.6,0.0,Compact Cars,2002,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,17523,0,12,Chevrolet,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.6184,0.0,52.2789,0.0,Compact Cars,2002,3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17524,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,35.8,0.0,Compact Cars,2002,-1000,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17525,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,37.2,0.0,Compact Cars,2002,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17526,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8,0.0,Compact Cars,2002,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17527,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.301,0.0,36.6023,0.0,Compact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17528,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.8995,0.0,35.8,0.0,Compact Cars,2002,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17529,0,11,Chrysler,Sebring Convertible,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,37.9,0.0,Compact Cars,2002,-500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1753,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Subcompact Cars,1986,-5250,T,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17530,0,11,Chrysler,Sebring Convertible,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,34.1,0.0,Compact Cars,2002,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17531,0,11,Chrysler,Sebring Convertible,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8465,0.0,Compact Cars,2002,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17532,0,11,Chrysler,Sebring Convertible,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S4),21.5,0.0,34.0,0.0,Compact Cars,2002,-1750,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,91,17533,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9379,0.0,41.6595,0.0,Compact Cars,2002,0,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,17534,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4476,0.0,44.5352,0.0,Compact Cars,2002,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,17535,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,46.8,0.0,Compact Cars,2002,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,SOHC-IL4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,91,17536,11,11,Daewoo,Lanos,N,false,91,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,45.8,0.0,Compact Cars,2002,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,91,17537,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1983,0.0,39.6499,0.0,Compact Cars,2002,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,91,17538,0,12,Daewoo,Nubira,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5475,0.0,39.9798,0.0,Compact Cars,2002,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17539,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,40.098,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1754,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Subcompact Cars,1986,-4250,T,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17540,0,13,Dodge,Neon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1676,0.0,42.988,0.0,Compact Cars,2002,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17541,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,35.8,0.0,Compact Cars,2002,-1000,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17542,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,37.2,0.0,Compact Cars,2002,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17543,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8,0.0,Compact Cars,2002,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17544,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.301,0.0,36.6023,0.0,Compact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17545,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.8995,0.0,35.8,0.0,Compact Cars,2002,-1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17546,0,13,Ford,Escort,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9,0.0,44.4,0.0,Compact Cars,2002,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-Valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,95,17547,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,40.7,0.0,Compact Cars,2002,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,95,17548,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8982,0.0,40.8738,0.0,Compact Cars,2002,1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2.0Z,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,17549,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.0,0.0,32.1,0.0,Compact Cars,2002,-3000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,1755,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0256,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-Valve,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,21,95,17550,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5,0.0,45.8495,0.0,Compact Cars,2002,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-Valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,21,95,17551,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,43.5,0.0,Compact Cars,2002,1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,SOHC-VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,17552,13,13,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.9,0.0,49.3,0.0,Compact Cars,2002,2750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,17553,13,13,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0096,0.0,48.24,0.0,Compact Cars,2002,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,17554,13,13,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.7,0.0,50.3,0.0,Compact Cars,2002,3000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,SOHC-VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,85,17555,13,13,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,46.9,0.0,Compact Cars,2002,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,17556,13,13,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Compact Cars,2002,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17557,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8,0.0,44.8,0.0,Compact Cars,2002,1000,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,17558,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,45.9,0.0,Compact Cars,2002,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17559,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7,0.0,45.2,0.0,Compact Cars,2002,1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4151,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,1756,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,17560,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,47.6,0.0,Compact Cars,2002,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17561,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.4,0.0,Compact Cars,2002,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17562,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2459,0.0,42.5643,0.0,Compact Cars,2002,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17563,0,14,Infiniti,G20,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5499,0.0,39.0,0.0,Compact Cars,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17564,0,14,Infiniti,G20,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.1,0.0,Compact Cars,2002,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17565,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9484,0.0,33.549,0.0,Compact Cars,2002,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17566,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,35.3,0.0,Compact Cars,2002,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17567,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8499,0.0,32.6493,0.0,Compact Cars,2002,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17568,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,35.3,0.0,Compact Cars,2002,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17569,0,13,Jaguar,XJ Sport,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0093,0.0,30.3497,0.0,Compact Cars,2002,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4151,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,1757,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17570,0,13,Jaguar,XJ8,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0093,0.0,30.3497,0.0,Compact Cars,2002,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17571,0,13,Jaguar,XJR,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6924,0.0,27.6028,0.0,Compact Cars,2002,-6750,T,2MODE,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,20,88,17572,0,0,Kia,Rio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,38.3,0.0,Compact Cars,2002,500,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,88,17573,0,0,Kia,Rio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,41.0,0.0,Compact Cars,2002,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,93,17574,0,10,Kia,Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,38.0,0.0,Compact Cars,2002,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,93,17575,0,10,Kia,Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.6,0.0,Compact Cars,2002,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,89,17576,0,11,Lexus,IS 300,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9334,0.0,32.0192,0.0,Compact Cars,2002,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,89,17577,0,11,Lexus,IS 300,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9669,0.0,31.4944,0.0,Compact Cars,2002,-4750,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17578,14,0,Mercury,Cougar,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,43.4,0.0,Compact Cars,2002,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17579,14,0,Mercury,Cougar,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0505,0.0,36.7879,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,1758,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17580,14,0,Mercury,Cougar,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,38.2,0.0,Compact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17581,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.3,0.0,Compact Cars,2002,-3000,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17582,0,13,Mazda,Millenia,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6995,0.0,34.0,0.0,Compact Cars,2002,-3000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,17583,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,38.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,17584,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.3,0.0,Compact Cars,2002,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,17585,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,17586,0,0,Mercedes-Benz,C230 Kompressor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.623,0.0,36.1522,0.0,Compact Cars,2002,-2250,,EMS 2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,17587,0,0,Mercedes-Benz,C230 Kompressor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1978,0.0,36.867,0.0,Compact Cars,2002,-3000,,EMS,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17588,0,12,Mercedes-Benz,C240,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6489,0.0,32.8643,0.0,Compact Cars,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17589,0,12,Mercedes-Benz,C240,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9895,0.0,33.7648,0.0,Compact Cars,2002,-4750,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,1759,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1986,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17590,0,12,Mercedes-Benz,C32 AMG,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.7,0.0,Compact Cars,2002,-5750,T,EMS 2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17591,0,12,Mercedes-Benz,C320,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4593,0.0,32.3435,0.0,Compact Cars,2002,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17592,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9186,0.0,29.4155,0.0,Compact Cars,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17593,12,0,Mercedes-Benz,CL55 AMG,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,28.2,0.0,Compact Cars,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,5.8,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17594,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2976,0.0,28.5091,0.0,Compact Cars,2002,-6750,T,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17595,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.2,0.0,37.0,0.0,Compact Cars,2002,0,,CMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17596,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8,0.0,42.3,0.0,Compact Cars,2002,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17597,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.524,0.0,38.3301,0.0,Compact Cars,2002,0,,CMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17598,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6671,0.0,41.7322,0.0,Compact Cars,2002,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17599,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0499,0.0,35.4,0.0,Compact Cars,2002,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,176,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4190,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,1760,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17600,0,12,Nissan,Sentra,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,37.3,0.0,Compact Cars,2002,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17601,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.3,0.0,36.2,0.0,Compact Cars,2002,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17602,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.3997,0.0,42.9,0.0,Compact Cars,2002,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17603,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.5,0.0,45.5,0.0,Compact Cars,2002,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17604,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.6656,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17605,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,41.8,0.0,Compact Cars,2002,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17606,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17607,14,14,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17608,14,14,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,41.8,0.0,Compact Cars,2002,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17609,14,14,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1761,10,0,Chevrolet,Cavalier Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.8974,0.0,Subcompact Cars,1986,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17610,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4,0.0,41.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17611,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17612,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,41.8,0.0,Compact Cars,2002,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17613,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.9,0.0,Compact Cars,2002,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17614,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,36.0,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17615,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,40.6,0.0,Compact Cars,2002,0,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,17616,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,47.3,0.0,Compact Cars,2002,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17617,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1245,0.0,45.567,0.0,Compact Cars,2002,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,DOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,17618,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.9,0.0,48.4,0.0,Compact Cars,2002,1750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,17619,0,12,Saturn,SL,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.1,0.0,51.5,0.0,Compact Cars,2002,2500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1762,10,0,Chevrolet,Cavalier Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1986,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17620,0,12,Subaru,Legacy AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3009,0.0,34.4833,0.0,Compact Cars,2002,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17621,0,12,Subaru,Legacy AWD (incl. Outback),N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.26,0.0,34.5091,0.0,Compact Cars,2002,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17622,0,12,Subaru,Legacy AWD (incl. Outback),Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6679,0.0,33.4888,0.0,Compact Cars,2002,-3000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,17623,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.6821,0.0,39.7462,0.0,Compact Cars,2002,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,91,17624,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1133,0.0,41.9011,0.0,Compact Cars,2002,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17625,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.8,0.0,Compact Cars,2002,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17626,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,42.4,0.0,Compact Cars,2002,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17627,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.2,0.0,Compact Cars,2002,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17628,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,34.9,0.0,Compact Cars,2002,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17629,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.8,0.0,42.8,0.0,Compact Cars,2002,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1763,10,0,Chevrolet,Cavalier Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,17630,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,50.4,0.0,Compact Cars,2002,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,17631,0,12,Toyota,Corolla,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.9182,0.0,51.9783,0.0,Compact Cars,2002,3000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,17632,14,14,Toyota,Echo,Y,false,88,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.6,0.0,49.1,0.0,Compact Cars,2002,2750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,17633,14,14,Toyota,Echo,Y,false,88,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.092,0.0,52.3397,0.0,Compact Cars,2002,3500,,,,,,,,, +8.02051,0.0,0.0,0.0,42,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1350,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,17634,0,12,Toyota,Prius,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),57.3,0.0,57.9,0.0,Compact Cars,2002,5250,,,,,Hybrid,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,17635,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0415,0.0,57.1353,0.0,Compact Cars,2002,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,18,88,17636,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.5427,0.0,62.7912,0.0,Compact Cars,2002,4250,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,17637,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1767,0.0,37.2911,0.0,Compact Cars,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,17638,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0317,0.0,39.783,0.0,Compact Cars,2002,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,17639,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,38.7,0.0,Compact Cars,2002,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1764,10,0,Chevrolet,Cavalier Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1986,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,17640,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6893,0.0,37.8284,0.0,Compact Cars,2002,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,17641,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9599,0.0,39.1151,0.0,Compact Cars,2002,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,17642,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2769,0.0,37.2943,0.0,Compact Cars,2002,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,88,17643,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.5,0.0,Compact Cars,2002,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17644,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,39.6,0.0,Compact Cars,2002,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17645,0,13,Volkswagen,Jetta,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6893,0.0,37.8284,0.0,Compact Cars,2002,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17646,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,40.0929,0.0,Compact Cars,2002,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17647,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2769,0.0,37.2943,0.0,Compact Cars,2002,-1750,,CLKUP,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,17648,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0415,0.0,57.1353,0.0,Compact Cars,2002,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,17649,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.5427,0.0,62.7912,0.0,Compact Cars,2002,4250,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1765,10,0,Chevrolet,Cavalier Convertible,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17650,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1767,0.0,37.2911,0.0,Compact Cars,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17651,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0317,0.0,39.783,0.0,Compact Cars,2002,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17652,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7586,0.0,32.7862,0.0,Compact Cars,2002,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17653,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6201,0.0,36.1028,0.0,Compact Cars,2002,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17654,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9799,0.0,33.4398,0.0,Compact Cars,2002,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17655,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9011,0.0,36.6018,0.0,Compact Cars,2002,-2250,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17656,13,0,Volvo,C70 Coupe,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.7,0.0,Compact Cars,2002,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17657,0,13,Volvo,S40 FWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9,0.0,37.9,0.0,Compact Cars,2002,-1750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17658,0,14,Volvo,S60 AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),21.575,0.0,33.5105,0.0,Compact Cars,2002,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17659,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.7,0.0,Compact Cars,2002,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,1766,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17660,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.9,0.0,36.6,0.0,Compact Cars,2002,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17661,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9006,0.0,36.2009,0.0,Compact Cars,2002,-2250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17662,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3473,0.0,36.0169,0.0,Compact Cars,2002,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17663,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.4,0.0,Compact Cars,2002,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC-VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17664,0,14,Acura,3.2TL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6079,0.0,37.6374,0.0,Midsize Cars,2002,-2250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17665,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,30.3,0.0,Midsize Cars,2002,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17666,0,15,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.6024,0.0,32.5896,0.0,Midsize Cars,2002,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17667,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1,0.0,31.0,0.0,Midsize Cars,2002,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17668,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8469,0.0,31.3404,0.0,Midsize Cars,2002,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17669,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1793,0.0,32.3696,0.0,Midsize Cars,2002,-4750,,CMODE,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4101,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,1767,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1986,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17670,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.7499,0.0,Midsize Cars,2002,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17671,0,18,Audi,A8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.7499,0.0,Midsize Cars,2002,-4750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17672,0,18,Audi,S8 quattro,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),16.1686,0.0,27.3492,0.0,Midsize Cars,2002,-8000,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17673,0,12,Bentley,Arnage,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.3498,0.0,18.7,0.0,Midsize Cars,2002,-15500,T,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17674,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,36.6483,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SUPERCHR,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17675,0,17,Buick,Regal,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,35.1,0.0,Midsize Cars,2002,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17676,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17677,15,0,Cadillac,Eldorado,Y,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,34.5,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17678,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,34.5,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17679,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,36.6483,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4102,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,1768,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,45.0,0.0,Subcompact Cars,1986,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17680,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Midsize Cars,2002,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17681,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17682,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,37.9,0.0,Midsize Cars,2002,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17683,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.7,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17684,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),22.4,0.0,35.0,0.0,Midsize Cars,2002,-1000,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17685,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6926,0.0,35.4989,0.0,Midsize Cars,2002,-1750,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,DOHC-IL4,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17686,0,14,Daewoo,Leganza,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2928,0.0,36.2603,0.0,Midsize Cars,2002,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17687,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,37.9,0.0,Midsize Cars,2002,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17688,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.7,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17689,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8465,0.0,Midsize Cars,2002,-1750,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,4110,(NO-CAT),-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,10,79,1769,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,58.9744,0.0,Subcompact Cars,1986,3750,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17690,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),22.4,0.0,35.0,0.0,Midsize Cars,2002,-1000,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17691,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,38.5,0.0,Midsize Cars,2002,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17692,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3624,0.0,38.4754,0.0,Midsize Cars,2002,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC-VTEC,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17693,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,40.4,0.0,Midsize Cars,2002,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17694,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,40.4,0.0,Midsize Cars,2002,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VTEC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17695,14,14,Honda,Accord,Y,false,93,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4779,0.0,35.6521,0.0,Midsize Cars,2002,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17696,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,38.0,0.0,Midsize Cars,2002,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17697,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,39.1,0.0,Midsize Cars,2002,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17698,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.1,0.0,Midsize Cars,2002,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17699,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.7,0.0,Midsize Cars,2002,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,177,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,1770,0,11,Chevrolet,Spectrum,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,44.0,0.0,Subcompact Cars,1986,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17700,0,15,Hyundai,XG350,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,33.2499,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17701,0,15,Infiniti,I35,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7574,0.0,33.6665,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17702,0,14,Infiniti,Q45,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2811,0.0,31.4827,0.0,Midsize Cars,2002,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17703,0,12,Jaguar,S-Type,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5918,0.0,32.5997,0.0,Midsize Cars,2002,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17704,0,12,Jaguar,S-Type,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2075,0.0,31.0963,0.0,Midsize Cars,2002,-4750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17705,0,13,Jaguar,Super V8,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6924,0.0,27.6028,0.0,Midsize Cars,2002,-6750,T,2MODE,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17706,0,13,Jaguar,Vanden Plas,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0093,0.0,30.3497,0.0,Midsize Cars,2002,-4750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17707,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.1,0.0,Midsize Cars,2002,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17708,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,36.3,0.0,Midsize Cars,2002,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17709,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,30.4,0.0,Midsize Cars,2002,-3250,,2MODE CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,17,85,1771,0,11,Chevrolet,Spectrum,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1986,4000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17710,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,32.7,0.0,Midsize Cars,2002,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17711,15,0,Lexus,ES 300,Y,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.0,0.0,37.4,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17712,0,15,Lexus,GS 300/GS 430,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2266,0.0,32.6308,0.0,Midsize Cars,2002,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17713,0,15,Lexus,GS 300/GS 430,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9249,0.0,29.8249,0.0,Midsize Cars,2002,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17714,0,14,Lexus,LS 430,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3995,0.0,31.4446,0.0,Midsize Cars,2002,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,3.0M,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17715,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6912,0.0,31.3499,0.0,Midsize Cars,2002,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,3.9L4V-N,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17716,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3466,0.0,30.3987,0.0,Midsize Cars,2002,-5750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17717,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,32.6,0.0,Midsize Cars,2002,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17718,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,32.4,0.0,Midsize Cars,2002,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17719,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5122,0.0,29.8994,0.0,Midsize Cars,2002,-5750,,CLKUP,,,,,,, +9.141184,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54015,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,79,1772,0,0,Chevrolet,Sprint Plus,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,45.0,0.0,55.0,0.0,Subcompact Cars,1986,4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-Valve,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17720,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.4,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-Valve,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17721,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.1,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17722,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,0.0,35.4,0.0,Midsize Cars,2002,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17723,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.2,0.0,Midsize Cars,2002,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17724,0,14,Mazda,626,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,33.5,0.0,Midsize Cars,2002,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17725,0,14,Mazda,626,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,34.4,0.0,Midsize Cars,2002,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17726,0,15,Mercedes-Benz,E320,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5394,0.0,36.0989,0.0,Midsize Cars,2002,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17727,0,15,Mercedes-Benz,E320 4Matic,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9499,0.0,34.1,0.0,Midsize Cars,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17728,0,15,Mercedes-Benz,E430,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,31.4,0.0,Midsize Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17729,0,15,Mercedes-Benz,E430 4Matic,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0597,0.0,29.6791,0.0,Midsize Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54015,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,8,79,1773,0,0,Chevrolet,Sprint Plus,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,64.0,0.0,Subcompact Cars,1986,5000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17730,0,15,Mercedes-Benz,E55 AMG,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.5,0.0,Midsize Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17731,0,14,Mitsubishi,Diamante,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,31.8,0.0,Midsize Cars,2002,-4750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17732,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.7,0.0,Midsize Cars,2002,-2250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17733,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2378,0.0,35.8,0.0,Midsize Cars,2002,-1000,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17734,0,14,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,34.7,0.0,Midsize Cars,2002,-3000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17735,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1499,0.0,37.5,0.0,Midsize Cars,2002,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17736,0,16,Nissan,Altima,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,37.8,0.0,Midsize Cars,2002,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17737,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0499,0.0,32.9,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17738,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4,0.0,33.6,0.0,Midsize Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17739,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7574,0.0,33.6665,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,1774,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17740,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,35.9,0.0,Midsize Cars,2002,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17741,0,15,Oldsmobile,Aurora,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.2441,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17742,0,15,Oldsmobile,Aurora,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,33.9,0.0,Midsize Cars,2002,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17743,0,17,Oldsmobile,Intrigue,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,38.4,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SUPERCHR,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17744,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8139,0.0,35.3276,0.0,Midsize Cars,2002,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17745,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,36.6483,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17746,16,16,Pontiac,Grand Prix,Y,false,99,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2002,-1750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17747,0,12,Rolls-Royce,Silver Seraph,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,20.8,0.0,Midsize Cars,2002,-11250,T,EMS CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,22,90,17748,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1993,0.0,37.5651,0.0,Midsize Cars,2002,-2250,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,22,90,17749,0,0,Saab,9-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5622,0.0,41.6952,0.0,Midsize Cars,2002,-500,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,1775,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,90,17750,0,0,Saab,9-3 Viggen,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4347,0.0,35.7386,0.0,Midsize Cars,2002,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17751,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.146,0.0,37.9708,0.0,Midsize Cars,2002,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17752,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8167,0.0,36.8624,0.0,Midsize Cars,2002,-1000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17753,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0108,0.0,39.56,0.0,Midsize Cars,2002,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17754,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5672,0.0,39.6359,0.0,Midsize Cars,2002,-1750,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17755,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4188,0.0,33.6758,0.0,Midsize Cars,2002,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17756,0,18,Saturn,L100/200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.6841,0.0,Midsize Cars,2002,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17757,0,18,Saturn,L100/200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,41.8,0.0,Midsize Cars,2002,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17758,0,18,Saturn,L300,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8928,0.0,36.8749,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17759,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.8,0.0,Midsize Cars,2002,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,83,1776,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17760,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,42.4,0.0,Midsize Cars,2002,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17761,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,35.8,0.0,Midsize Cars,2002,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17762,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Cars,2002,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17763,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Cars,2002,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17764,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9799,0.0,36.1,0.0,Midsize Cars,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17765,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),21.7,0.0,35.1,0.0,Midsize Cars,2002,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17766,0,15,Volvo,S80/S80 Executive,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5001,0.0,32.3009,0.0,Midsize Cars,2002,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17767,0,15,Volvo,S80/S80 Executive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),19.9991,0.0,31.6986,0.0,Midsize Cars,2002,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17768,0,18,Audi,A8 L,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9995,0.0,31.6987,0.0,Large Cars,2002,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17769,0,18,BMW,745i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,33.5,0.0,Large Cars,2002,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,1777,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1986,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17770,0,18,BMW,745li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,33.5,0.0,Large Cars,2002,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17771,0,18,Buick,LeSabre,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SUPERCHR,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17772,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,35.1,0.0,Large Cars,2002,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17773,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17774,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,34.5,0.0,Large Cars,2002,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,GUZZLER,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17775,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,27.8,0.0,Large Cars,2002,-6250,T,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17776,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,35.8,0.0,Large Cars,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17777,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Large Cars,2002,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17778,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Large Cars,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17779,0,17,Chrysler,300 M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0,0.0,33.2,0.0,Large Cars,2002,-2500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,83,1778,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17780,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.7,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17781,0,19,Chrysler,Concorde,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.2,0.0,Large Cars,2002,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17782,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.7,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17783,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),22.4,0.0,35.0,0.0,Large Cars,2002,-1000,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17784,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.2,0.0,Large Cars,2002,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17785,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0,0.0,33.2,0.0,Large Cars,2002,-2500,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17786,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2231,0.0,31.6141,0.0,Large Cars,2002,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-Valve,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17787,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.4,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-Valve,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17788,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.1,0.0,Large Cars,2002,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17789,0,19,Lincoln,Continental,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.172,0.0,32.2277,0.0,Large Cars,2002,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,1779,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17790,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2231,0.0,31.6141,0.0,Large Cars,2002,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17791,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8653,0.0,28.8748,0.0,Large Cars,2002,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17792,0,15,Mercedes-Benz,S430,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8379,0.0,30.8246,0.0,Large Cars,2002,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17793,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.904,0.0,29.3804,0.0,Large Cars,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17794,0,15,Mercedes-Benz,S55 AMG,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,28.2,0.0,Large Cars,2002,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,5.8,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17795,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2974,0.0,28.5084,0.0,Large Cars,2002,-6750,T,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SUPERCHR,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17796,0,16,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,35.1,0.0,Large Cars,2002,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17797,0,16,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2002,-1000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17798,0,12,Rolls-Royce,Park Ward,N,false,0,120,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,20.8,0.0,Large Cars,2002,-11250,T,EMS CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17799,15,16,Toyota,Avalon,Y,false,106,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7499,0.0,37.3,0.0,Large Cars,2002,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,178,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1780,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17800,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3861,0.0,35.9735,0.0,Small Station Wagons,2002,-3000,,CMODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17801,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.162,0.0,36.9,0.0,Small Station Wagons,2002,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17802,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1793,0.0,32.3696,0.0,Small Station Wagons,2002,-4750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17803,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4774,0.0,31.9911,0.0,Small Station Wagons,2002,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17804,0,31,Audi,S4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.174,0.0,30.0436,0.0,Small Station Wagons,2002,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17805,0,31,Audi,S4 Avant,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.0976,0.0,30.2734,0.0,Small Station Wagons,2002,-4750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17806,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6379,0.0,37.6438,0.0,Small Station Wagons,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17807,0,26,BMW,325i Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3621,0.0,34.0235,0.0,Small Station Wagons,2002,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17808,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,33.7,0.0,Small Station Wagons,2002,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17809,0,26,BMW,325xi Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8153,0.0,32.6951,0.0,Small Station Wagons,2002,-3750,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1781,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17810,0,33,BMW,525i Sport Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8482,0.0,34.0168,0.0,Small Station Wagons,2002,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17811,0,33,BMW,525i Sport Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6709,0.0,32.831,0.0,Small Station Wagons,2002,-3750,,3MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17812,0,33,BMW,540i Sport Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),17.1107,0.0,26.8392,0.0,Small Station Wagons,2002,-6750,T,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17813,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1983,0.0,39.6499,0.0,Small Station Wagons,2002,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17814,0,19,Daewoo,Nubira Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5475,0.0,39.7436,0.0,Small Station Wagons,2002,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,31,89,17815,0,0,Mercedes-Benz,C320 (Wagon),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2393,0.0,32.0987,0.0,Small Station Wagons,2002,-3750,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17816,0,18,Subaru,Impreza Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3205,0.0,34.6016,0.0,Small Station Wagons,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17817,0,18,Subaru,Impreza Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3009,0.0,34.4833,0.0,Small Station Wagons,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17818,0,18,Subaru,Impreza Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4218,0.0,33.6804,0.0,Small Station Wagons,2002,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17819,0,18,Subaru,Impreza Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5052,0.0,34.722,0.0,Small Station Wagons,2002,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2422,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1782,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1986,-2250,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17820,0,13,Suzuki,Aerio SX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.6,0.0,39.5,0.0,Small Station Wagons,2002,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17821,0,13,Suzuki,Aerio SX,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.9,0.0,41.2,0.0,Small Station Wagons,2002,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17822,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9,0.0,42.2,0.0,Small Station Wagons,2002,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17823,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Small Station Wagons,2002,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17824,0,24,Suzuki,Esteem Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1,0.0,43.9,0.0,Small Station Wagons,2002,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17825,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,40.0929,0.0,Small Station Wagons,2002,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17826,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2769,0.0,37.2943,0.0,Small Station Wagons,2002,-1750,,CLKUP,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,17827,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0415,0.0,57.1353,0.0,Small Station Wagons,2002,3000,,CLKUP,T,,Diesel,,,, +9.783936,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.02564102564105,39,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1500,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,17828,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.7,0.0,64.0,0.0,Small Station Wagons,2002,4500,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17829,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8059,0.0,36.9041,0.0,Small Station Wagons,2002,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1783,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17830,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5396,0.0,39.9783,0.0,Small Station Wagons,2002,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17831,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7586,0.0,32.7862,0.0,Small Station Wagons,2002,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17832,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6201,0.0,36.1028,0.0,Small Station Wagons,2002,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,33,89,17833,0,0,Volvo,V40,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9,0.0,37.9,0.0,Small Station Wagons,2002,-1750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17834,0,36,Audi,A6 Avant quattro,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1793,0.0,32.3696,0.0,Midsize Station Wagons,2002,-4750,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17835,0,34,Audi,S6 Avant,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),15.1204,0.0,26.3939,0.0,Midsize Station Wagons,2002,-8000,T,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-Valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17836,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,40.7,0.0,Midsize Station Wagons,2002,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17837,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.6839,0.0,40.7841,0.0,Midsize Station Wagons,2002,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,17838,0,36,Ford,Focus Station Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5,0.0,45.8495,0.0,Midsize Station Wagons,2002,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-Valve,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,17839,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,43.5,0.0,Midsize Station Wagons,2002,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1784,10,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Subcompact Cars,1986,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-Valve,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17840,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.9,0.0,Midsize Station Wagons,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-Valve,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17841,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Station Wagons,2002,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,32,104,17842,0,0,Lexus,RX 300,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Midsize Station Wagons,2002,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,32,104,17843,0,0,Lexus,RX 300 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Midsize Station Wagons,2002,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-Valve,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17844,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.9,0.0,Midsize Station Wagons,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-Valve,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17845,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Station Wagons,2002,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17846,0,44,Mercedes-Benz,E320 (Wagon),Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6798,0.0,35.1799,0.0,Midsize Station Wagons,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17847,0,44,Mercedes-Benz,E320 4Matic (Wagon),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.6493,0.0,Midsize Station Wagons,2002,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17848,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6966,0.0,36.1053,0.0,Midsize Station Wagons,2002,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17849,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4726,0.0,35.4558,0.0,Midsize Station Wagons,2002,-1750,,2MODE CLKUP,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,1785,10,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1986,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17850,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9057,0.0,38.62,0.0,Midsize Station Wagons,2002,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,17851,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8121,0.0,38.4312,0.0,Midsize Station Wagons,2002,-500,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17852,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3709,0.0,33.175,0.0,Midsize Station Wagons,2002,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,17853,0,34,Saturn,LW200,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.7,0.0,Midsize Station Wagons,2002,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,4 VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,17854,0,34,Saturn,LW200,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9,0.0,41.0,0.0,Midsize Station Wagons,2002,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17855,0,34,Saturn,LW300,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8928,0.0,36.8749,0.0,Midsize Station Wagons,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17856,0,34,Subaru,Legacy Wagon AWD (incl. Outback),Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1574,0.0,34.3522,0.0,Midsize Station Wagons,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17857,0,34,Subaru,Legacy Wagon AWD (incl. Outback),Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3009,0.0,34.4833,0.0,Midsize Station Wagons,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17858,0,34,Subaru,Legacy Wagon AWD (incl. Outback),Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6679,0.0,33.4888,0.0,Midsize Station Wagons,2002,-3000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17859,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Station Wagons,2002,-1000,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,82,1786,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Subcompact Cars,1986,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,17860,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Station Wagons,2002,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,17861,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9799,0.0,36.1,0.0,Midsize Station Wagons,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17862,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Station Wagons,2002,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,17863,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9799,0.0,33.4398,0.0,Midsize Station Wagons,2002,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,17864,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8999,0.0,34.6999,0.0,Midsize Station Wagons,2002,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,17865,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9,0.0,33.1,0.0,Midsize Station Wagons,2002,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,17866,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3473,0.0,36.0169,0.0,Midsize Station Wagons,2002,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,17867,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5996,0.0,35.1994,0.0,Midsize Station Wagons,2002,-2250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,17868,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.4,0.0,Midsize Station Wagons,2002,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,17869,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.575,0.0,33.5105,0.0,Midsize Station Wagons,2002,-3000,,2MODE CLKUP,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,82,1787,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1986,2750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17870,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.5635,0.0,28.2033,0.0,Small Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17871,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9281,0.0,28.4282,0.0,Small Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17872,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4406,0.0,28.0622,0.0,Small Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17873,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9327,0.0,28.4328,0.0,Small Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17874,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17875,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1614,0.0,24.0,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17876,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.5,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17877,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0669,0.0,25.0992,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17878,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17879,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,23.8334,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +9.554625000000001,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,38010,(NO-CAT),-1,1500,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,82,1788,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,50.0,0.0,64.1026,0.0,Subcompact Cars,1986,4500,,SIL,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17880,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1997,0.0,30.4893,0.0,Standard Pickup Trucks 2WD,2002,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17881,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.1918,0.0,Standard Pickup Trucks 2WD,2002,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17882,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.211,0.0,26.9667,0.0,Standard Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17883,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2617,0.0,25.0313,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17884,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5075,0.0,25.7543,0.0,Standard Pickup Trucks 2WD,2002,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17885,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9151,0.0,21.0226,0.0,Standard Pickup Trucks 2WD,2002,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17886,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.59,0.0,24.5223,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17887,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2197,0.0,25.9661,0.0,Standard Pickup Trucks 2WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17888,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,24.2,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17889,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.58,0.0,24.6499,0.0,Standard Pickup Trucks 2WD,2002,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,38020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,1789,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1986,-1000,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17890,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0205,0.0,21.8413,0.0,Standard Pickup Trucks 2WD,2002,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17891,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3746,0.0,26.3427,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17892,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4488,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2002,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17893,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5794,0.0,26.7431,0.0,Standard Pickup Trucks 2WD,2002,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17894,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3064,0.0,25.8068,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,SUPER-CHGD,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17895,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3745,0.0,20.0715,0.0,Standard Pickup Trucks 2WD,2002,-13250,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17896,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17897,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.4,0.0,Standard Pickup Trucks 2WD,2002,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17898,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3166,0.0,24.5884,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17899,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2002,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49070,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,179,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,1790,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17900,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.284,0.0,35.2734,0.0,Standard Pickup Trucks 2WD,2002,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17901,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,27.9,0.0,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17902,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,28.6499,0.0,Standard Pickup Trucks 2WD,2002,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17903,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4166,0.0,27.22,0.0,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17904,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2002,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17905,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17906,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1613,0.0,24.0,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17907,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.5,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17908,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0632,0.0,25.0766,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17909,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2002,-5250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,1791,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17910,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,23.8402,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,4V DOHC,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17911,0,0,Lincoln,Blackwood 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4655,0.0,21.2589,0.0,Standard Pickup Trucks 2WD,2002,-11250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,4V DOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17912,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2002,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17913,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.284,0.0,35.2734,0.0,Standard Pickup Trucks 2WD,2002,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17914,0,0,Mazda,B3000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,27.9,0.0,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17915,0,0,Mazda,B3000 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,28.6499,0.0,Standard Pickup Trucks 2WD,2002,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17916,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17917,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2002,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,17918,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2002,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17919,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.6,0.0,Standard Pickup Trucks 2WD,2002,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,72,1792,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17920,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8804,0.0,25.0907,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17921,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0754,0.0,23.6817,0.0,Standard Pickup Trucks 2WD,2002,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17922,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.251,0.0,23.906,0.0,Standard Pickup Trucks 2WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17923,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6616,0.0,23.6449,0.0,Standard Pickup Trucks 2WD,2002,-8000,,,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,17924,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9892,0.0,31.6662,0.0,Standard Pickup Trucks 2WD,2002,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,17925,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5239,0.0,34.9489,0.0,Standard Pickup Trucks 2WD,2002,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17926,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9612,0.0,27.6451,0.0,Standard Pickup Trucks 2WD,2002,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17927,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,24.6,0.0,Standard Pickup Trucks 2WD,2002,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,17928,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5,0.0,28.6499,0.0,Standard Pickup Trucks 2WD,2002,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17929,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0541,0.0,24.7459,0.0,Standard Pickup Trucks 2WD,2002,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,72,1793,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17930,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.189,0.0,24.6215,0.0,Standard Pickup Trucks 2WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17931,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3723,0.0,23.1428,0.0,Standard Pickup Trucks 2WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17932,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,21.9,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17933,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.6,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17934,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.444,0.0,22.5543,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17935,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,22.6,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17936,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1,0.0,21.6,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17937,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,21.9,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17938,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17939,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,21.7,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,1794,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,50.0,0.0,Subcompact Cars,1986,2750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17940,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9385,0.0,22.4165,0.0,Standard Pickup Trucks 4WD,2002,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17941,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0968,0.0,24.5982,0.0,Standard Pickup Trucks 4WD,2002,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17942,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5801,0.0,22.638,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17943,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.7255,0.0,23.2071,0.0,Standard Pickup Trucks 4WD,2002,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17944,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,20.3,0.0,Standard Pickup Trucks 4WD,2002,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17945,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0547,0.0,21.5072,0.0,Standard Pickup Trucks 4WD,2002,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17946,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0917,0.0,22.274,0.0,Standard Pickup Trucks 4WD,2002,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17947,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.5643,0.0,19.834,0.0,Standard Pickup Trucks 4WD,2002,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17948,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17949,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7465,0.0,25.2996,0.0,Standard Pickup Trucks 4WD,2002,-5250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,77,1795,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Subcompact Cars,1986,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17950,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.79,0.0,22.8916,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17951,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17952,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2487,0.0,24.2474,0.0,Standard Pickup Trucks 4WD,2002,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17953,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,23.3,0.0,Standard Pickup Trucks 4WD,2002,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17954,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1449,0.0,22.3831,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17955,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1486,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17956,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,24.1,0.0,Standard Pickup Trucks 4WD,2002,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17957,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,27.0,0.0,Standard Pickup Trucks 4WD,2002,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17958,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2002,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17959,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,21.9,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1796,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17960,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.6,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17961,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3696,0.0,22.1065,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17962,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9798,0.0,22.1178,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17963,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1,0.0,21.6,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17964,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,21.9,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,17965,0,0,GMC,Sierra Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,19.4,0.0,Standard Pickup Trucks 4WD,2002,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17966,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17967,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,21.7,0.0,Standard Pickup Trucks 4WD,2002,-7750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17968,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,24.1,0.0,Standard Pickup Trucks 4WD,2002,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17969,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,27.0,0.0,Standard Pickup Trucks 4WD,2002,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,19,77,1797,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17970,0,0,Mazda,B4000 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1486,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17971,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2002,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17972,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2133,0.0,24.4866,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17973,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7234,0.0,23.1441,0.0,Standard Pickup Trucks 4WD,2002,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17974,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2544,0.0,23.5626,0.0,Standard Pickup Trucks 4WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17975,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5794,0.0,23.5004,0.0,Standard Pickup Trucks 4WD,2002,-8000,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17976,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3158,0.0,26.8,0.0,Standard Pickup Trucks 4WD,2002,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17977,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,27.3,0.0,Standard Pickup Trucks 4WD,2002,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17978,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,24.0,0.0,Standard Pickup Trucks 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17979,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,24.7,0.0,Standard Pickup Trucks 4WD,2002,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1798,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17980,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17981,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2002,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17982,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6814,0.0,21.8815,0.0,Standard Pickup Trucks 4WD,2002,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,17983,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,"Vans, Cargo Type",2002,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17984,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17985,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.3,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17986,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.296,0.0,23.9947,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17987,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2955,0.0,21.9967,0.0,"Vans, Cargo Type",2002,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17988,0,0,Dodge,Ram Van 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0492,0.0,20.9481,0.0,"Vans, Cargo Type",2002,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17989,0,0,Dodge,Ram Van 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,22.0,0.0,"Vans, Cargo Type",2002,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,77,1799,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1986,-3000,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,17990,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.7,0.0,20.5,0.0,"Vans, Cargo Type",2002,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17991,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,22.0,0.0,"Vans, Cargo Type",2002,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,17992,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.6,0.0,"Vans, Cargo Type",2002,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17993,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.4,0.0,"Vans, Cargo Type",2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,17994,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.6,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17995,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.4,0.0,"Vans, Cargo Type",2002,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17996,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2,0.0,23.0,0.0,"Vans, Cargo Type",2002,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17997,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.3,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,17998,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2965,0.0,23.9954,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,17999,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2945,0.0,21.9959,0.0,"Vans, Cargo Type",2002,-7750,,,,,,,,, +7.646952,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,,-1,1300,0,Regular,Regular Gasoline,-1,-1,48,0.0,0,0.0,0.0,0.0,0.0,0,0,18,0,0,Honda,Civic CRX HF,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,54.4444,0.0,69.0,0.0,Two Seaters,1985,5500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49071,"(CALIF) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,180,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,1800,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0,0.0,Subcompact Cars,1986,1750,,VLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18000,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,"Vans, Cargo Type",2002,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18001,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,"Vans, Cargo Type",2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18002,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.5,0.0,"Vans, Passenger Type",2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18003,0,0,Chevrolet,Astro AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.6,0.0,"Vans, Passenger Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18004,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18005,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.6,0.0,"Vans, Passenger Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18006,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.7,0.0,"Vans, Passenger Type",2002,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18007,0,0,Dodge,Ram Wagon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.7,0.0,20.5,0.0,"Vans, Passenger Type",2002,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18008,0,0,Dodge,Ram Wagon 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,21.8,0.0,"Vans, Passenger Type",2002,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18009,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.4,0.0,"Vans, Passenger Type",2002,-7750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,81,1801,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,40.0,0.0,53.0,0.0,Subcompact Cars,1986,3750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18010,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.8,0.0,"Vans, Passenger Type",2002,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18011,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.8,0.0,"Vans, Passenger Type",2002,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18012,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.6,0.0,"Vans, Passenger Type",2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18013,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.6,0.0,"Vans, Passenger Type",2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18014,0,0,GMC,Savana 1500/2500 2WD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.7,0.0,"Vans, Passenger Type",2002,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18015,0,0,GMC,Safari 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.5,0.0,"Vans, Passenger Type",2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18016,0,0,GMC,Safari AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.6,0.0,"Vans, Passenger Type",2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18017,0,0,Volkswagen,Eurovan Camper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0947,0.0,25.4,0.0,Minivan - 2WD,2002,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18018,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18019,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.5,0.0,31.3,0.0,Minivan - 2WD,2002,-2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,1802,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1986,3000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18020,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.0,0.0,Minivan - 2WD,2002,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18021,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,30.2,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18022,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.5,0.0,31.3,0.0,Minivan - 2WD,2002,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18023,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,34.0,0.0,Minivan - 2WD,2002,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18024,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,30.2,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18025,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.2,0.0,30.1,0.0,Minivan - 2WD,2002,-3250,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18026,0,0,Ford,Windstar FWD Cargo Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,29.3,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18027,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,29.3,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18028,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8472,0.0,32.2346,0.0,Minivan - 2WD,2002,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18029,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9976,0.0,25.5,0.0,Minivan - 2WD,2002,-5250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,1803,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1986,-1750,,VLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18030,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6622,0.0,31.2595,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18031,0,0,Mercury,Villager FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3517,0.0,28.9308,0.0,Minivan - 2WD,2002,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18032,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7906,0.0,29.8248,0.0,Minivan - 2WD,2002,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18033,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2002,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18034,0,0,Pontiac,Montana FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2002,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18035,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,31.3521,0.0,Minivan - 2WD,2002,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18036,0,0,Volkswagen,Eurovan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.411,0.0,25.4356,0.0,Minivan - 2WD,2002,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18037,0,0,Chevrolet,Venture AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.7,0.0,Minivan - 4WD,2002,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18038,0,0,Chrysler,Town and Country/Voyager/Grand Voy. AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.687,0.0,28.7878,0.0,Minivan - 4WD,2002,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18039,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.3,0.0,Minivan - 4WD,2002,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,1804,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.7436,0.0,Subcompact Cars,1986,-500,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18040,0,0,Dodge,Caravan/Grand Caravan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.8,0.0,29.2,0.0,Minivan - 4WD,2002,-4250,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18041,0,0,Oldsmobile,Silhouette AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.7,0.0,Minivan - 4WD,2002,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18042,0,0,Pontiac,Montana AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.7,0.0,Minivan - 4WD,2002,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18043,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18044,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18045,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18046,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18047,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18048,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18049,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1805,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18050,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18051,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2002,-500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18052,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18053,0,0,Chevrolet,Tracker 2WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2002,-500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18054,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18055,0,0,Chevrolet,Tracker LT 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18056,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,27.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18057,0,0,Chevrolet,TrailBlazer Ext 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18058,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6242,0.0,32.472,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18059,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5983,0.0,37.5467,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1806,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1986,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18060,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,25.0,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18061,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18062,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,22.0,0.0,Sport Utility Vehicle - 2WD,2002,-9250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18063,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,35.0,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18064,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2002,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18065,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18066,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2002,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18067,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3778,0.0,26.3499,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18068,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4488,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18069,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,1807,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18070,0,0,Ford,Explorer Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18071,0,0,Ford,Explorer Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18072,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18073,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18074,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18075,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,27.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18076,0,0,GMC,Envoy XL 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18077,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18078,0,0,GMC,Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18079,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9,0.0,36.3,0.0,Sport Utility Vehicle - 2WD,2002,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,1808,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18080,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7581,0.0,27.0417,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18081,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0871,0.0,25.8418,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18082,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18083,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18084,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2002,-2500,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18085,0,0,Infiniti,QX4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18086,0,0,Isuzu,Axiom 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9416,0.0,25.8416,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18087,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7582,0.0,27.0416,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18088,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.088,0.0,25.8417,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18089,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,83,1809,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18090,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18091,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5029,0.0,26.5756,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18092,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18093,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,29.1,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18094,0,0,Isuzu,Trooper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18095,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,26.5,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18096,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6685,0.0,24.4361,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18097,0,0,Jeep,Liberty 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18098,0,0,Jeep,Liberty 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18099,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1469,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,181,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,1810,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1986,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18100,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5926,0.0,28.9779,0.0,Sport Utility Vehicle - 2WD,2002,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18101,0,0,Lincoln,Navigator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4655,0.0,21.2589,0.0,Sport Utility Vehicle - 2WD,2002,-11250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18102,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,35.0,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18103,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2002,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18104,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3778,0.0,26.3499,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18105,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2002,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18106,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.6265,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18107,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8756,0.0,27.3427,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18108,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18109,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,30.4,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,83,1811,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18110,0,0,Mitsubishi,Nativa 2WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.6265,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18111,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18112,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6647,0.0,24.9623,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18113,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,24.9,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18114,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7995,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2002,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18115,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18116,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,24.5,0.0,Sport Utility Vehicle - 2WD,2002,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18117,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.251,0.0,23.906,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18118,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2002,-8000,,,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18119,0,0,Oldsmobile,Bravada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,27.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,1812,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18120,0,0,Pontiac,Aztek FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2002,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18121,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.0,0.0,35.6,0.0,Sport Utility Vehicle - 2WD,2002,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18122,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2002,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18123,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18124,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18125,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,25.45,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18126,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2002,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18127,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2002,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18128,0,0,Suzuki,Vitara 2Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2002,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18129,0,0,Suzuki,Vitara 4Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2002,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1813,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18130,0,0,Suzuki,Vitara 4Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.0513,0.0,Sport Utility Vehicle - 2WD,2002,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18131,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2002,-5250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18132,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2002,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18133,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2002,-3250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18134,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2002,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18135,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,0.0,39.4,0.0,Sport Utility Vehicle - 2WD,2002,500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18136,0,0,Toyota,Sequoia 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.1,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18137,0,0,Acura,MDX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0392,0.0,29.3799,0.0,Sport Utility Vehicle - 4WD,2002,-5750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18138,0,0,Audi,Allroad,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9853,0.0,26.3476,0.0,Sport Utility Vehicle - 4WD,2002,-6750,,CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18139,0,0,Audi,Allroad,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.6,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2002,-6750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1814,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18140,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0381,0.0,26.5492,0.0,Sport Utility Vehicle - 4WD,2002,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18141,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.9,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2002,-6750,,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18142,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8329,0.0,22.2552,0.0,Sport Utility Vehicle - 4WD,2002,-9500,,3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18143,0,0,BMW,X5 4.6is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.6975,0.0,21.5773,0.0,Sport Utility Vehicle - 4WD,2002,-11250,,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18144,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18145,0,0,Cadillac,Escalade AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,19.1,0.0,Sport Utility Vehicle - 4WD,2002,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18146,0,0,Cadillac,Escalade Ext AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,19.1,0.0,Sport Utility Vehicle - 4WD,2002,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18147,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18148,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18149,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6149,0.0,21.159,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2422,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1815,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1986,-2250,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18150,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6149,0.0,21.159,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18151,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7515,0.0,21.7947,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18152,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4063,0.0,21.8233,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18153,0,0,Chevrolet,Tracker 4WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18154,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18155,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18156,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18157,0,0,Chevrolet,Tracker LT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18158,0,0,Chevrolet,Tracker ZR2 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18159,0,0,Chevrolet,Tracker ZR2 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1816,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18160,0,0,Chevrolet,Tracker ZR2 4WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18161,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,27.1,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18162,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18163,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18164,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18165,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,20.3,0.0,Sport Utility Vehicle - 4WD,2002,-11000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18166,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18167,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18168,0,0,Ford,Expedition 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18169,0,0,Ford,Expedition 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,88,1817,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18170,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18171,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7465,0.0,25.2996,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,AWD,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18172,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5687,0.0,23.9888,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18173,0,0,Ford,Explorer Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18174,0,0,Ford,Explorer Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18175,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18176,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18177,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18178,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18179,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7517,0.0,21.7949,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,1818,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.8889,0.0,38.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18180,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7499,0.0,21.2744,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18181,0,0,GMC,Yukon Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,19.1,0.0,Sport Utility Vehicle - 4WD,2002,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18182,0,0,GMC,Yukon Denali XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,19.1,0.0,Sport Utility Vehicle - 4WD,2002,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18183,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6149,0.0,21.159,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18184,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5748,0.0,33.5634,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18185,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18186,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.116,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18187,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0937,0.0,25.8405,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18188,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18189,0,0,Infiniti,QX4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5757,0.0,23.43,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3306,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,1819,8,0,Ford,Mustang,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18190,0,0,Isuzu,Axiom 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18191,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1162,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18192,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0897,0.0,25.8413,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18193,0,0,Isuzu,Rodeo Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1583,0.0,26.1165,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18194,0,0,Isuzu,Rodeo Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0434,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18195,0,0,Isuzu,Trooper 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18196,0,0,Isuzu,Trooper 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18197,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4226,0.0,25.434,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18198,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18199,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,182,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3308,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,1820,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.8974,0.0,Subcompact Cars,1986,0,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18200,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8994,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18201,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.9,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18202,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18203,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6,0.0,22.1,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18204,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18205,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.244,0.0,27.4735,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18206,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6406,0.0,28.3986,0.0,Sport Utility Vehicle - 4WD,2002,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18207,0,0,Land Rover,Freelander,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8475,0.0,26.3716,0.0,Sport Utility Vehicle - 4WD,2002,-5750,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18208,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6908,0.0,21.6323,0.0,Sport Utility Vehicle - 4WD,2002,-11250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18209,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2801,0.0,19.2393,0.0,Sport Utility Vehicle - 4WD,2002,-13250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3360,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1821,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1986,-1750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18210,0,0,Lexus,LX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3122,0.0,20.1872,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18211,0,0,Lincoln,Navigator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.8,0.0,20.2,0.0,Sport Utility Vehicle - 4WD,2002,-13250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18212,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18213,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,18214,0,0,Mercedes-Benz,G500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,18.4,0.0,Sport Utility Vehicle - 4WD,2002,-13250,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18215,0,0,Mercedes-Benz,ML320,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.206,0.0,23.8128,0.0,Sport Utility Vehicle - 4WD,2002,-8000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18216,0,0,Mercedes-Benz,ML500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5994,0.0,21.6959,0.0,Sport Utility Vehicle - 4WD,2002,-9500,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18217,0,0,Mercedes-Benz,ML55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,22.4,0.0,Sport Utility Vehicle - 4WD,2002,-9500,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18218,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2189,0.0,24.8751,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,AWD,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18219,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3176,0.0,23.1318,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,84,1822,8,0,Ford,Mustang,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18220,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,23.877,0.0,Sport Utility Vehicle - 4WD,2002,-8000,,CMODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18221,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7232,0.0,23.9983,0.0,Sport Utility Vehicle - 4WD,2002,-9500,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18222,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9574,0.0,25.6986,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18223,0,0,Mitsubishi,Montero Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4863,0.0,23.1579,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18224,0,0,Mitsubishi,Nativa 4WD (Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9574,0.0,25.6986,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18225,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5757,0.0,23.43,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18226,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18227,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18228,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7234,0.0,23.1441,0.0,Sport Utility Vehicle - 4WD,2002,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18229,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3708,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,1823,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18230,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5794,0.0,23.5004,0.0,Sport Utility Vehicle - 4WD,2002,-8000,,,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18231,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18232,0,0,Pontiac,Aztek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18233,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.2,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18234,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2002,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18235,0,32,Subaru,Forester AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3205,0.0,34.6016,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18236,0,32,Subaru,Forester AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3009,0.0,34.4833,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18237,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18238,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18239,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,25.15,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3705,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,1824,8,0,Ford,Mustang,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18240,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2002,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18241,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18242,0,0,Suzuki,Vitara 2Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18243,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18244,0,0,Suzuki,Vitara 4Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2002,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18245,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1729,0.0,24.2861,0.0,Sport Utility Vehicle - 4WD,2002,-5250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18246,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2002,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18247,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2002,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18248,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3122,0.0,20.1872,0.0,Sport Utility Vehicle - 4WD,2002,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18249,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2721,0.0,34.9464,0.0,Sport Utility Vehicle - 4WD,2002,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,86,1825,0,14,Honda,Accord,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Subcompact Cars,1986,0,,3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18250,0,0,Toyota,RAV4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2002,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18251,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,22.0,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,18252,0,0,Volvo,V70 XC AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,32.6493,0.0,Sport Utility Vehicle - 4WD,2002,-3000,,2MODE CLKUP,T,,,,,, +14.327048,0.088536,0.0,0.0,20,0.0,18,0.0,0.0,0.0,0.0,-1,-1,334.76190476190476,386.39130434782606,23,0.0,21,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,1500,Gasoline or natural gas,Regular Gasoline,-1,-1,28,0.0,25,0.0,0.0,0.0,0.0,0,0,18253,0,7,Chevrolet,Cavalier Dual-fuel,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3435,22.6726,38.5772,35.6583,Subcompact Cars,2002,0,,,,,Bifuel (CNG),Natural Gas,110,, +0.116188,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,439.375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,1950,0,CNG,Natural Gas,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18254,0,16,Ford,Crown Victoria CNG,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,28.3,0.0,Large Cars,2002,2250,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=290,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18255,0,0,Ford,F150 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3,0.0,20.1,0.0,Standard Pickup Trucks 2WD,2002,-1000,,CLKUP,,,CNG,,,, +0.14297200000000002,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,2400,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18256,0,0,Dodge,Ram Van 2500 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Cargo Type",2002,0,,CLKUP,,,CNG,,,, +0.14297200000000002,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,2400,0,CNG,Natural Gas,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18257,0,0,Dodge,Ram Wagon 2500 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Passenger Type",2002,0,,CLKUP,,,CNG,,,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,18258,0,0,Chevrolet,S10 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,32.6,0.0,Small Pickup Trucks 2WD,2002,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,18259,0,0,Chevrolet,S10 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2002,-500,,SIL,,,FFV,E85,310,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26050,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,86,1826,0,14,Honda,Accord,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1986,1500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,18260,0,0,GMC,Sonoma 2WD (FFV),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,32.6,0.0,Small Pickup Trucks 2WD,2002,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,18261,0,0,GMC,Sonoma 2WD (FFV),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2002,-500,,SIL,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,18,0.0,0.0,0.0,0.0,0,0,18262,0,0,Isuzu,Hombre Pickup 2WD (FFV),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,32.6,0.0,Small Pickup Trucks 2WD,2002,-2500,,CLKUP,,,FFV,E85,290,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,FLEX-FUEL,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,18263,0,0,Isuzu,Hombre Pickup 2WD (FFV),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2002,-500,,SIL,,,FFV,E85,310,, +29.950562,0.169012,0.0,0.0,10,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,807.9090909090909,11,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5000,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,18264,0,0,Ford,F150 Dual-fuel 2WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2002,-13000,,,,,Bifuel (CNG),Natural Gas,120,, +29.950562,0.169012,0.0,0.0,10,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,807.9090909090909,11,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5000,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,18265,0,0,Ford,F150 Dual-fuel 4WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2002,-13000,,,,,Bifuel (CNG),Natural Gas,120,, +27.4675,8.153466,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4600,4250,Gasoline or propane,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,18266,0,0,Ford,F150 Dual-fuel 2WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2002,-11000,,,,,Bifuel (LPG),Propane,250/220/320,, +27.4675,8.153466,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4600,4250,Gasoline or propane,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,18267,0,0,Ford,F150 Dual-fuel 4WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2002,-11000,,,,,Bifuel (LPG),Propane,250/220/320,, +0.06634,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,CNG,-1,1100,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,18268,0,7,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.2,0.0,43.9,0.0,Compact Cars,2002,6500,,,,,CNG,,,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,18269,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6486,0.0,30.6508,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,FFV,E85,320,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,86,1827,0,14,Honda,Accord,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1986,0,,3LKUP,,,,,,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,18270,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6343,0.0,30.6649,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,FFV,E85,320,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,18271,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6486,0.0,30.6508,0.0,Minivan - 2WD,2002,-3250,,CLKUP,,,FFV,E85,320,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,18272,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.4,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,18273,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.4,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,18274,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.4,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,18275,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.4,0.0,Sport Utility Vehicle - 2WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,18276,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,18277,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0485,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,18278,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0485,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,18279,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2002,-7750,,CLKUP,,,FFV,E85,290/340,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,86,1828,0,14,Honda,Accord,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +20.589638,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,18280,0,0,Ford,Explorer 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,12.1,26.1499,18.5,Sport Utility Vehicle - 4WD,2002,-5250,,CLKUP,,,FFV,E85,290,, +21.974,6.242500000000001,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,18281,0,0,Mercury,Mountaineer 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4088,12.7233,24.2544,19.0474,Sport Utility Vehicle - 4WD,2002,-6250,,CLKUP,,,FFV,E85,290,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,18282,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,16.6,35.5,25.1,Midsize Cars,2002,-1000,,CLKUP,,,FFV,E85,300,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,18283,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,16.6,35.5,25.1,Large Cars,2002,-1000,,CLKUP,,,FFV,E85,300,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,18284,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,15.5,33.2,25.2,Midsize Station Wagons,2002,-2500,,CLKUP,,,FFV,E85,290,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,18285,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,15.5,33.2,25.2,Midsize Station Wagons,2002,-2500,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,18286,0,0,Ford,Explorer 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7769,12.5885,26.442,20.1535,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,FFV,E85,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,18287,0,0,Ford,Ranger 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,14.1498,27.2,20.6995,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,FFV,E85,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,18288,0,0,Mazda,B3000 FFV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,14.1498,27.2,20.6995,Standard Pickup Trucks 2WD,2002,-4250,,CLKUP,,,FFV,E85,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,18289,0,0,Mercury,Mountaineer 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7769,12.5885,26.442,20.1535,Sport Utility Vehicle - 2WD,2002,-5250,,CLKUP,,,FFV,E85,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,26010,,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,15,70,1829,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,55.0,0.0,Subcompact Cars,1986,4000,,,,,,,,, +0.258,0.0,0.0,0.0,87,0.0,0,0.0,0.0,39.0,0.0,0,-1,0.0,0.0,78,0.0,0,0.0,43.0,0.0,0.0,,,2-Wheel Drive,0,,-1,750,0,Electricity,Electricity,-1,-1,69,0.0,0,0.0,0.0,49.0,0.0,0,0,18290,0,0,Toyota,RAV4 EV,N,false,0,0,95,0.0,0.0,0.0,0.0,,124.8148,0.0,99.1176,0.0,Sport Utility Vehicle - 2WD,2002,8250,,,,,EV,,,50 KW DC, +0.522,0.0,0.0,0.0,45,0.0,0,0.0,0.0,75.0,0.0,0,-1,0.0,0.0,39,0.0,0,0.0,87.0,0.0,0.0,,,2-Wheel Drive,0,,-1,1550,0,Electricity,Electricity,-1,-1,33,0.0,0,0.0,0.0,102.0,0.0,0,0,18291,0,0,Ford,Explorer USPS Electric,N,false,0,0,38,0.0,0.0,0.0,0.0,,62.4074,0.0,46.8056,0.0,Sport Utility Vehicle - 2WD,2002,4250,,,,,EV,,,67 KW AC Induction, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18292,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1342,0.0,30.2,0.0,Two Seaters,2003,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18293,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.4,0.0,Two Seaters,2003,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18294,0,0,BMW Alpina,Roadster V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8809,0.0,26.8477,0.0,Two Seaters,2003,-8000,T,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18295,0,0,Audi,TT Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Two Seaters,2003,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18296,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2125,0.0,36.5387,0.0,Two Seaters,2003,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18297,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.9,0.0,35.9,0.0,Two Seaters,2003,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18298,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.7,0.0,Two Seaters,2003,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18299,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0901,0.0,35.3914,0.0,Two Seaters,2003,-3000,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,183,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,70,1830,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1986,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18300,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,37.5,0.0,Two Seaters,2003,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18301,0,0,BMW,Z8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Two Seaters,2003,-8000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18302,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,32.5,0.0,Two Seaters,2003,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18303,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,35.9,0.0,Two Seaters,2003,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18304,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.5,0.0,27.2,0.0,Two Seaters,2003,-9500,T,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,GUZZLER,-1,7550,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,18305,0,0,Ferrari,Enzo Ferrari,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),8.4473,0.0,15.8,0.0,Two Seaters,2003,-25750,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18306,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2003,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18307,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.4981,0.0,Two Seaters,2003,-15500,T,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18308,0,0,Ferrari,575 M Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.6,0.0,20.3,0.0,Two Seaters,2003,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18309,0,0,Ferrari,575 M Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.2498,0.0,21.4,0.0,Two Seaters,2003,-15500,T,3MODE,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,70,1831,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.8718,0.0,Subcompact Cars,1986,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18310,8,0,Ford,Thunderbird,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,30.5,0.0,Two Seaters,2003,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,SPORT,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18311,8,0,Ford,Thunderbird,Y,false,52,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9469,0.0,31.7691,0.0,Two Seaters,2003,-4750,,CLKUP,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,VTEC,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,18312,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2003,6250,,,,,Hybrid,,,, +6.218642,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,167.67924528301887,53,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,VTEC,-1,1050,0,Regular,Regular Gasoline,-1,-1,59,0.0,0,0.0,0.0,0.0,0.0,0,0,18313,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.3785,0.0,87.2197,0.0,Two Seaters,2003,6750,,SIL,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18314,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,33.8,0.0,Two Seaters,2003,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,18315,0,0,Lamborghini,L-147 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1208,0.0,16.2936,0.0,Two Seaters,2003,-18250,T,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,18316,0,0,Lamborghini,L-147 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1208,0.0,16.2936,0.0,Two Seaters,2003,-18250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18317,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6889,0.0,28.8363,0.0,Two Seaters,2003,-6750,T,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18318,0,0,Maserati,Spider Cambiocorsa/Spider GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.3,0.0,Two Seaters,2003,-13250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18319,0,0,Maserati,Spider Cambiocorsa/Spider GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Two Seaters,2003,-13250,T,3MODE,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,70,1832,0,12,Honda,Civic,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Subcompact Cars,1986,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18320,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,35.5,0.0,Two Seaters,2003,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18321,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,36.4,0.0,Two Seaters,2003,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18322,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,35.8,0.0,Two Seaters,2003,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18323,9,0,Mercedes-Benz,SL500,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0496,0.0,27.8695,0.0,Two Seaters,2003,-6750,T,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18324,7,0,Mercedes-Benz,SL55 AMG,N,false,51,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0974,0.0,25.2964,0.0,Two Seaters,2003,-9500,T,EMS 2MODE CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18325,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2691,0.0,35.6547,0.0,Two Seaters,2003,-1750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18326,10,0,Mercedes-Benz,SLK230 Kompressor,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4149,0.0,35.4663,0.0,Two Seaters,2003,-3000,,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18327,10,0,Mercedes-Benz,SLK32 AMG,Y,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.5,0.0,Two Seaters,2003,-5750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18328,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3499,0.0,33.3481,0.0,Two Seaters,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18329,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1195,0.0,32.7753,0.0,Two Seaters,2003,-4750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,80,1833,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.7436,0.0,Subcompact Cars,1986,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18330,0,0,Morgan,Plus Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0409,0.0,30.16,0.0,Two Seaters,2003,-5750,T,VMODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18331,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.0,0.0,33.6,0.0,Two Seaters,2003,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18332,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,32.9,0.0,Two Seaters,2003,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18333,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,37.3494,0.0,Two Seaters,2003,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18334,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6707,0.0,33.3481,0.0,Two Seaters,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18335,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,33.8,0.0,Two Seaters,2003,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18336,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1479,0.0,33.6973,0.0,Two Seaters,2003,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18337,0,0,Porsche,Turbo GT2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Two Seaters,2003,-6750,T,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18338,2,0,Toyota,MR2,Y,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,41.3,0.0,Two Seaters,2003,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18339,2,0,Toyota,MR2,Y,false,46,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1,0.0,42.2,0.0,Two Seaters,2003,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,80,1834,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1986,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18340,6,0,Aston Martin,Vanquish,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.55,0.0,24.7,0.0,Minicompact Cars,2003,-11250,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18341,6,0,Aston Martin,DB-7 GT Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.4798,0.0,20.9931,0.0,Minicompact Cars,2003,-15500,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18342,6,0,Aston Martin,DB-7 GT Volante,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.3842,0.0,21.7169,0.0,Minicompact Cars,2003,-15500,T,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18343,6,0,Aston Martin,DB-7 Vantage Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.9453,0.0,24.5968,0.0,Minicompact Cars,2003,-11250,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18344,6,0,Aston Martin,DB-7 Vantage Coupe,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.2802,0.0,23.4153,0.0,Minicompact Cars,2003,-13250,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18345,6,0,Aston Martin,DB-7 Vantage Volante,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.5042,0.0,23.0769,0.0,Minicompact Cars,2003,-13250,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18346,6,0,Aston Martin,DB-7 Vantage Volante,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.0754,0.0,22.7951,0.0,Minicompact Cars,2003,-13250,T,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,65,18347,0,0,Audi,TT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,37.5,0.0,Minicompact Cars,2003,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,18348,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2125,0.0,36.5387,0.0,Minicompact Cars,2003,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18349,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,33.3,0.0,Minicompact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1835,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18350,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8503,0.0,34.0228,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18351,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,34.5,0.0,Minicompact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18352,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,35.8,0.0,Minicompact Cars,2003,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18353,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,29.5431,0.0,Minicompact Cars,2003,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18354,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7191,0.0,28.1243,0.0,Minicompact Cars,2003,-6750,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18355,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Minicompact Cars,2003,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18356,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1733,0.0,Minicompact Cars,2003,-5750,T,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18357,9,0,Lexus,SC 300/SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Minicompact Cars,2003,-4750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18358,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5229,0.0,39.2073,0.0,Minicompact Cars,2003,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18359,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,38.9,0.0,Minicompact Cars,2003,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1836,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Subcompact Cars,1986,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18360,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.6224,0.0,33.8775,0.0,Minicompact Cars,2003,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18361,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.4472,0.0,33.7499,0.0,Minicompact Cars,2003,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18362,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8963,0.0,36.6055,0.0,Minicompact Cars,2003,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18363,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.2915,0.0,34.9278,0.0,Minicompact Cars,2003,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18364,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18365,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18366,5,0,Porsche,Carrera 2 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18367,5,0,Porsche,Carrera 2 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18368,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1683,0.0,32.7973,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18369,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,33.4,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1837,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1986,0,,3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18370,5,0,Porsche,Carrera 2 Coupe Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1683,0.0,32.7973,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18371,5,0,Porsche,Carrera 2 Coupe Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,33.4,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18372,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2003,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18373,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2003,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18374,5,0,Porsche,Carrera 4 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2003,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18375,5,0,Porsche,Carrera 4 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2003,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18376,5,0,Porsche,Carrera 4 S,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8276,0.0,29.1492,0.0,Minicompact Cars,2003,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18377,5,0,Porsche,Carrera 4 S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,30.3,0.0,Minicompact Cars,2003,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18378,5,0,Porsche,Carrera 4 S Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8276,0.0,29.1492,0.0,Minicompact Cars,2003,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18379,5,0,Porsche,Carrera 4 S Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,30.3,0.0,Minicompact Cars,2003,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1838,9,0,Honda,Prelude,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18380,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18381,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18382,5,0,Porsche,Targa Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2003,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18383,5,0,Porsche,Targa Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2003,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18384,5,0,Porsche,Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3976,0.0,28.5492,0.0,Minicompact Cars,2003,-6750,T,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18385,5,0,Porsche,Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Minicompact Cars,2003,-6750,T,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18386,5,0,Porsche,Turbo Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3976,0.0,28.5492,0.0,Minicompact Cars,2003,-6750,T,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18387,5,0,Porsche,Turbo Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.9,0.0,Minicompact Cars,2003,-6750,T,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18388,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3368,0.0,39.0489,0.0,Minicompact Cars,2003,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18389,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.1,0.0,37.0,0.0,Minicompact Cars,2003,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,1839,0,11,Hyundai,Pony Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,36.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,VTC/VTEC,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,81,18390,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2,0.0,42.8,0.0,Subcompact Cars,2003,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,VTC/VTEC,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,81,18391,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,39.9,0.0,Subcompact Cars,2003,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,VTC/VTEC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,81,18392,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1632,0.0,42.2809,0.0,Subcompact Cars,2003,1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18393,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,38.6,0.0,Subcompact Cars,2003,-1000,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18394,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.758,0.0,34.2738,0.0,Subcompact Cars,2003,-2250,,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18395,0,7,Bentley,Azure,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6,0.0,20.4,0.0,Subcompact Cars,2003,-13250,T,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18396,0,12,Bentley,Continental T,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Subcompact Cars,2003,-13250,T,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18397,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1909,0.0,35.8408,0.0,Subcompact Cars,2003,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18398,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,37.6426,0.0,Subcompact Cars,2003,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18399,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0901,0.0,35.3914,0.0,Subcompact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49031,"(CALIF) (FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,184,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,82,1840,0,11,Hyundai,Pony Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,39.7436,0.0,Subcompact Cars,1986,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18400,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Subcompact Cars,2003,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18401,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.9,0.0,Subcompact Cars,2003,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18402,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3217,0.0,29.6138,0.0,Subcompact Cars,2003,-5750,T,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,18403,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.6991,0.0,19.1,0.0,Subcompact Cars,2003,-15500,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18404,7,0,Ferrari,456 MGT/MGA,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.9,0.0,20.6,0.0,Subcompact Cars,2003,-15500,T,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18405,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,39.7,0.0,Subcompact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18406,16,0,Ford,Escort ZX2,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.7,0.0,42.0,0.0,Subcompact Cars,2003,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,2 VALVE,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18407,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2828,0.0,34.7716,0.0,Subcompact Cars,2003,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,2 VALVE,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18408,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.8,0.0,37.5,0.0,Subcompact Cars,2003,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,2 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18409,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1853,0.0,30.6,0.0,Subcompact Cars,2003,-3250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,82,1841,0,11,Hyundai,Pony Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Subcompact Cars,1986,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18410,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,29.4,0.0,Subcompact Cars,2003,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,2 VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18411,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,32.7,0.0,Subcompact Cars,2003,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18412,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,31.9,0.0,Subcompact Cars,2003,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18413,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.2,0.0,28.6,0.0,Subcompact Cars,2003,-5750,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18414,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.726,0.0,38.3265,0.0,Subcompact Cars,2003,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18415,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5136,0.0,39.6641,0.0,Subcompact Cars,2003,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18416,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.1199,0.0,37.1596,0.0,Subcompact Cars,2003,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18417,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,33.4,0.0,Subcompact Cars,2003,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18418,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,33.7,0.0,Subcompact Cars,2003,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18419,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.9,0.0,Subcompact Cars,2003,-2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,1842,0,11,Isuzu,I-Mark,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,44.0,0.0,Subcompact Cars,1986,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18420,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Subcompact Cars,2003,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18421,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1723,0.0,Subcompact Cars,2003,-5750,T,2MODE CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18422,5,0,Maserati,Coupe Cambiocorsa/Coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.3,0.0,Subcompact Cars,2003,-13250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18423,5,0,Maserati,Coupe Cambiocorsa/Coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Subcompact Cars,2003,-13250,T,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18424,10,0,Mercedes-Benz,CLK320,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Subcompact Cars,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18425,9,0,Mercedes-Benz,CLK320 (Cabriolet),Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8641,0.0,34.2519,0.0,Subcompact Cars,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18426,9,0,Mercedes-Benz,CLK430 (Cabriolet),Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5995,0.0,30.5997,0.0,Subcompact Cars,2003,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18427,10,0,Mercedes-Benz,CLK500,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.4,0.0,Subcompact Cars,2003,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18428,10,0,Mercedes-Benz,CLK55 AMG,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1297,0.0,28.1492,0.0,Subcompact Cars,2003,-6750,T,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,18429,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2767,0.0,35.2637,0.0,Subcompact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,17,85,1843,0,11,Isuzu,I-Mark,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1986,4000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,18430,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,35.8974,0.0,Subcompact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,79,18431,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7389,0.0,39.8413,0.0,Subcompact Cars,2003,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,79,18432,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0212,0.0,39.9785,0.0,Subcompact Cars,2003,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,18433,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.2784,0.0,35.2695,0.0,Subcompact Cars,2003,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,18434,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.1391,0.0,36.4,0.0,Subcompact Cars,2003,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,18435,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9544,0.0,36.4,0.0,Subcompact Cars,2003,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,18436,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.374,0.0,34.8909,0.0,Subcompact Cars,2003,-2250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18437,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2329,0.0,28.5391,0.0,Subcompact Cars,2003,-5750,,EMS CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18438,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9981,0.0,31.4712,0.0,Subcompact Cars,2003,-4750,,EMS,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18439,13,0,Saab,9-3 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1993,0.0,37.5651,0.0,Subcompact Cars,2003,-2250,,2MODE CLKUP,T,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,17,85,1844,0,11,Isuzu,I-Mark,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.7778,0.0,51.2821,0.0,Subcompact Cars,1986,3500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B205R,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18440,13,0,Saab,9-3 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9007,0.0,41.2425,0.0,Subcompact Cars,2003,-1000,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18441,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3569,0.0,33.5215,0.0,Subcompact Cars,2003,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18442,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4896,0.0,34.6329,0.0,Subcompact Cars,2003,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18443,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8768,0.0,34.0395,0.0,Subcompact Cars,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18444,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,35.3,0.0,Subcompact Cars,2003,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18445,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,39.2,0.0,Subcompact Cars,2003,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18446,9,0,Toyota,Camry Solara Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,33.1,0.0,Subcompact Cars,2003,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,78,18447,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1,0.0,46.0,0.0,Subcompact Cars,2003,2250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,18448,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,42.8,0.0,Subcompact Cars,2003,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,78,18449,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,40.5,0.0,Subcompact Cars,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29021,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,77,1845,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,78,18450,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.6335,0.0,38.099,0.0,Subcompact Cars,2003,-1000,,CLKUP,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,12,85,18451,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.1,0.0,55.9,0.0,Subcompact Cars,2003,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,12,85,18452,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4302,0.0,62.6126,0.0,Subcompact Cars,2003,4250,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,18453,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9069,0.0,37.6035,0.0,Subcompact Cars,2003,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,18454,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8698,0.0,40.2863,0.0,Subcompact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18455,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,2003,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18456,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9002,0.0,33.5004,0.0,Subcompact Cars,2003,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18457,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7974,0.0,33.4958,0.0,Subcompact Cars,2003,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18458,14,0,Acura,3.2CL,Y,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,36.1,0.0,Compact Cars,2003,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18459,14,0,Acura,3.2CL,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6719,0.0,37.33,0.0,Compact Cars,2003,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,1846,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18460,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,37.8,0.0,Compact Cars,2003,-1000,,2MODE,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18461,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,40.1,0.0,Compact Cars,2003,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18462,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.3,0.0,35.9,0.0,Compact Cars,2003,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18463,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.162,0.0,36.9,0.0,Compact Cars,2003,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18464,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4413,0.0,36.4288,0.0,Compact Cars,2003,-2250,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18465,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4611,0.0,31.9847,0.0,Compact Cars,2003,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18466,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4985,0.0,32.9501,0.0,Compact Cars,2003,-3750,,3MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18467,0,12,Bentley,Continental R,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,20.0,0.0,Compact Cars,2003,-13250,T,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18468,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1909,0.0,35.8408,0.0,Compact Cars,2003,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18469,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,37.6426,0.0,Compact Cars,2003,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29021,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,77,1847,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18470,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Compact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18471,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.7,0.0,Compact Cars,2003,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18472,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0901,0.0,35.3914,0.0,Compact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18473,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Compact Cars,2003,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18474,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1,0.0,32.2,0.0,Compact Cars,2003,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18475,0,11,BMW,330xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.9,0.0,Compact Cars,2003,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18476,0,11,BMW,525i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1909,0.0,35.8408,0.0,Compact Cars,2003,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18477,0,11,BMW,525i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,37.6426,0.0,Compact Cars,2003,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18478,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,34.5,0.0,Compact Cars,2003,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18479,0,11,BMW,530i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,38.1,0.0,Compact Cars,2003,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,77,1848,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18480,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.9,0.0,Compact Cars,2003,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18481,0,11,BMW,540i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1994,0.0,29.1499,0.0,Compact Cars,2003,-6750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18482,0,11,BMW,540i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8,0.0,26.9361,0.0,Compact Cars,2003,-5750,T,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18483,0,11,BMW,M5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.9485,0.0,26.5,0.0,Compact Cars,2003,-8000,T,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18484,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.6,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18485,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.4,0.0,Compact Cars,2003,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18486,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18487,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,36.5,0.0,Compact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18488,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2003,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18489,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,41.6,0.0,Compact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,1849,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1986,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18490,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.3,0.0,Compact Cars,2003,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18491,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.804,0.0,36.808,0.0,Compact Cars,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18492,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.049,0.0,35.2499,0.0,Compact Cars,2003,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18493,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Compact Cars,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18494,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,35.3,0.0,Compact Cars,2003,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18495,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8,0.0,Compact Cars,2003,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18496,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.6,0.0,35.9,0.0,Compact Cars,2003,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18497,0,0,Daewoo,Lanos,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6594,0.0,40.3856,0.0,Compact Cars,2003,0,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,DOHC-IL4,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18498,0,0,Daewoo,Lanos,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9015,0.0,42.7884,0.0,Compact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18499,0,0,Daewoo,Nubira,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.021,0.0,34.9253,0.0,Compact Cars,2003,-1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,185,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,1850,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Subcompact Cars,1986,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18500,0,0,Daewoo,Nubira,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6665,0.0,36.6829,0.0,Compact Cars,2003,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18501,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,41.3,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,18502,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,45.7,0.0,Compact Cars,2003,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18503,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,38.0,0.0,Compact Cars,2003,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18504,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18505,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,36.5,0.0,Compact Cars,2003,-1000,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18506,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2003,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18507,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,41.6,0.0,Compact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18508,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.3,0.0,Compact Cars,2003,-1750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18509,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.804,0.0,36.808,0.0,Compact Cars,2003,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,1851,11,0,Jaguar,XJS,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1986,-9250,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18510,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.049,0.0,35.2499,0.0,Compact Cars,2003,-1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,21,95,18511,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1973,0.0,42.3994,0.0,Compact Cars,2003,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,21,95,18512,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,38.5,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,21,95,18513,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,45.8,0.0,Compact Cars,2003,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,95,18514,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,40.4,0.0,Compact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,18515,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.0,0.0,32.1,0.0,Compact Cars,2003,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,21,95,18516,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5208,0.0,38.3221,0.0,Compact Cars,2003,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,21,95,18517,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,41.8,0.0,Compact Cars,2003,1000,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,LEAN-BURN,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,18518,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.5,0.0,51.6,0.0,Compact Cars,2003,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,18519,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7,0.0,48.6,0.0,Compact Cars,2003,2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,30540,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1852,0,10,Jaguar,XJ6,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Subcompact Cars,1986,-6250,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,18520,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,48.2,0.0,Compact Cars,2003,2500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,18521,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.9,0.0,Compact Cars,2003,2750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,LEAN-BURN,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,16,85,18522,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.2,0.0,56.2,0.0,Compact Cars,2003,4000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,18523,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.4,0.0,49.1,0.0,Compact Cars,2003,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,VTC/VTEC,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,18524,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,39.0,0.0,Compact Cars,2003,1000,,,,,,,,, +8.02051,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,LEAN-BURN,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,18525,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),53.8,0.0,60.8,0.0,Compact Cars,2003,5250,,,,,Hybrid,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,LEAN-BURN,-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,18526,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.9,0.0,64.9,0.0,Compact Cars,2003,5250,,SIL,,,Hybrid,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,18527,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5,0.0,45.4,0.0,Compact Cars,2003,1500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,18528,0,12,Hyundai,Accent/Brio,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,45.9,0.0,Compact Cars,2003,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,18529,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.3,0.0,44.7,0.0,Compact Cars,2003,1500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3306,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,84,1853,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18530,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,42.8,0.0,Compact Cars,2003,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18531,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.572,0.0,42.82,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18532,0,13,Hyundai,Elantra,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.4,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18533,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2174,0.0,42.5244,0.0,Compact Cars,2003,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18534,11,11,Infiniti,G35,Y,false,95,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8274,0.0,34.0365,0.0,Compact Cars,2003,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18535,11,11,Infiniti,G35,Y,false,95,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5622,0.0,32.783,0.0,Compact Cars,2003,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,COUPE,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18536,11,11,Infiniti,G35,Y,false,95,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5622,0.0,32.783,0.0,Compact Cars,2003,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18537,0,13,Infiniti,M45,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2677,0.0,30.103,0.0,Compact Cars,2003,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18538,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9484,0.0,33.549,0.0,Compact Cars,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18539,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,35.3,0.0,Compact Cars,2003,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3308,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,1854,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.8974,0.0,Subcompact Cars,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18540,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8499,0.0,32.6493,0.0,Compact Cars,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18541,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,35.3,0.0,Compact Cars,2003,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18542,0,13,Jaguar,XJ Sport,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9995,0.0,30.2997,0.0,Compact Cars,2003,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18543,0,13,Jaguar,XJ8,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9995,0.0,30.2997,0.0,Compact Cars,2003,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18544,0,13,Jaguar,XJR,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6877,0.0,27.6049,0.0,Compact Cars,2003,-6750,T,2MODE,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,25,88,18545,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,41.5,0.0,Compact Cars,2003,1000,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,25,88,18546,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,41.7,0.0,Compact Cars,2003,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,93,18547,0,10,Kia,Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,38.0,0.0,Compact Cars,2003,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,93,18548,0,10,Kia,Spectra,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.6,0.0,Compact Cars,2003,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,89,18549,0,10,Lexus,IS 300,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7385,0.0,31.5854,0.0,Compact Cars,2003,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3601,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,1855,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.0,0.0,Subcompact Cars,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,89,18550,0,10,Lexus,IS 300,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7693,0.0,31.2088,0.0,Compact Cars,2003,-4750,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,18551,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,38.5,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,20,93,18552,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,37.9,0.0,Compact Cars,2003,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,18553,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.3,0.0,Compact Cars,2003,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,93,18554,0,13,Mazda,Protege/Protege 5,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.5,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18555,0,12,Mercedes-Benz,C230 Kompressor,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.772,0.0,39.8267,0.0,Compact Cars,2003,-1000,,EMS 2MODE CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18556,0,12,Mercedes-Benz,C230 Kompressor,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1173,0.0,38.9601,0.0,Compact Cars,2003,-1750,,EMS,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,18557,0,0,Mercedes-Benz,C230 Kompressor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.0499,0.0,40.499,0.0,Compact Cars,2003,-500,,EMS 2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,18558,0,0,Mercedes-Benz,C230 Kompressor,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3962,0.0,39.7424,0.0,Compact Cars,2003,-1750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18559,0,12,Mercedes-Benz,C240,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4443,0.0,31.7846,0.0,Compact Cars,2003,-3750,,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3708,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,1856,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18560,0,12,Mercedes-Benz,C240,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0467,0.0,32.7997,0.0,Compact Cars,2003,-4750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18561,0,12,Mercedes-Benz,C240 4matic,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1649,0.0,31.8434,0.0,Compact Cars,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18562,0,12,Mercedes-Benz,C32 AMG,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,26.8,0.0,Compact Cars,2003,-5750,T,EMS 2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18563,0,12,Mercedes-Benz,C320,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1995,0.0,33.7896,0.0,Compact Cars,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18564,0,12,Mercedes-Benz,C320,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6788,0.0,32.5942,0.0,Compact Cars,2003,-4750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18565,0,12,Mercedes-Benz,C320 4matic,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1649,0.0,31.8434,0.0,Compact Cars,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,16,85,18566,0,0,Mercedes-Benz,C320 Sports Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2981,0.0,31.7323,0.0,Compact Cars,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,16,85,18567,0,0,Mercedes-Benz,C320 Sports Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8734,0.0,32.5723,0.0,Compact Cars,2003,-4750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18568,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4994,0.0,28.3457,0.0,Compact Cars,2003,-6750,T,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18569,12,0,Mercedes-Benz,CL55 AMG,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8943,0.0,27.9499,0.0,Compact Cars,2003,-8000,T,EMS 2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3705,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,84,1857,0,0,Mercury,Capri,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18570,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Compact Cars,2003,-9500,T,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18571,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.2,0.0,37.2,0.0,Compact Cars,2003,0,,CMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18572,0,11,Mitsubishi,Lancer,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8,0.0,42.3,0.0,Compact Cars,2003,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18573,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.8057,0.0,39.2684,0.0,Compact Cars,2003,500,,CMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18574,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.7262,0.0,42.8298,0.0,Compact Cars,2003,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18575,0,11,Mitsubishi,Lancer Evolution,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5,0.0,32.7,0.0,Compact Cars,2003,-3750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,18576,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.3427,0.0,44.4566,0.0,Compact Cars,2003,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,18577,0,12,Nissan,Sentra,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6,0.0,46.1,0.0,Compact Cars,2003,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18578,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0499,0.0,35.4,0.0,Compact Cars,2003,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18579,0,12,Nissan,Sentra,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,37.3,0.0,Compact Cars,2003,0,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,1858,0,14,Maserati,Biturbo 425,N,false,0,72,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Subcompact Cars,1986,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18580,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8,0.0,37.8,0.0,Compact Cars,2003,0,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18581,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.6,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18582,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.4,0.0,Compact Cars,2003,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18583,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2003,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18584,0,14,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.6,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18585,0,14,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.4,0.0,Compact Cars,2003,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18586,0,14,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2003,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18587,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,42.6,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18588,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.4,0.0,Compact Cars,2003,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207L,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18589,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.4791,0.0,39.19,0.0,Compact Cars,2003,0,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1859,0,11,Mercedes-Benz,190,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1986,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207L,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18590,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.184,0.0,40.0953,0.0,Compact Cars,2003,0,,SIL,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18591,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,41.4,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18592,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.3,0.0,40.5,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18593,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.4,0.0,Compact Cars,2003,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18594,0,12,Subaru,Legacy/Outback AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9621,0.0,35.5207,0.0,Compact Cars,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18595,0,12,Subaru,Legacy/Outback AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1486,0.0,34.5719,0.0,Compact Cars,2003,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18596,0,12,Subaru,Legacy/Outback AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S4),22.7253,0.0,35.1955,0.0,Compact Cars,2003,-1000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18597,0,12,Subaru,Legacy/Outback AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1236,0.0,32.6993,0.0,Compact Cars,2003,-3750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,18598,0,15,Suzuki,Aerio,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.6167,0.0,39.5498,0.0,Compact Cars,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,91,18599,0,15,Suzuki,Aerio,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1088,0.0,41.1118,0.0,Compact Cars,2003,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,186,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20012,(16-VALVE) (FFS) (MPFI),-1,3000,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1860,0,11,Mercedes-Benz,190,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1986,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,91,18600,0,12,Suzuki,Aerio 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,36.2,0.0,Compact Cars,2003,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18601,14,0,Toyota,Camry Solara,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.8,0.0,Compact Cars,2003,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18602,14,0,Toyota,Camry Solara,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.9,0.0,Compact Cars,2003,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18603,14,0,Toyota,Camry Solara,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,34.2,0.0,Compact Cars,2003,-1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,18604,0,14,Toyota,Corolla,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.2,0.0,48.3,0.0,Compact Cars,2003,2250,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,18605,0,14,Toyota,Corolla,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0247,0.0,51.4819,0.0,Compact Cars,2003,3000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,18606,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.7399,0.0,50.3196,0.0,Compact Cars,2003,3000,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,18607,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.2165,0.0,54.5414,0.0,Compact Cars,2003,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,42,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1350,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,18608,0,12,Toyota,Prius,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),57.3,0.0,57.9,0.0,Compact Cars,2003,5250,,,,,Hybrid,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,18609,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0281,0.0,57.1205,0.0,Compact Cars,2003,3000,,CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1861,0,11,Mercedes-Benz,190,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,18,88,18610,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4302,0.0,62.6126,0.0,Compact Cars,2003,4250,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,18611,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9069,0.0,37.6035,0.0,Compact Cars,2003,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,88,18612,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8698,0.0,40.2863,0.0,Compact Cars,2003,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,18613,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.7481,0.0,37.7458,0.0,Compact Cars,2003,-1750,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,18614,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0281,0.0,57.1205,0.0,Compact Cars,2003,3000,,CLKUP,T,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,18615,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.4302,0.0,62.6126,0.0,Compact Cars,2003,4250,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18616,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9069,0.0,37.6035,0.0,Compact Cars,2003,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18617,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8698,0.0,40.2863,0.0,Compact Cars,2003,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18618,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.7481,0.0,37.7458,0.0,Compact Cars,2003,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18619,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,39.6,0.0,Compact Cars,2003,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20012,(16-VALVE) (FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1862,0,11,Mercedes-Benz,190,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1986,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18620,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7397,0.0,33.561,0.0,Compact Cars,2003,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18621,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Compact Cars,2003,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18622,0,13,Volvo,S40 FWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9,0.0,37.9,0.0,Compact Cars,2003,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18623,0,14,Volvo,S60 AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,32.0,0.0,Compact Cars,2003,-3750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18624,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,34.7,0.0,Compact Cars,2003,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18625,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,35.7,0.0,Compact Cars,2003,-2250,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18626,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3922,0.0,39.3284,0.0,Compact Cars,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18627,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9004,0.0,36.0006,0.0,Compact Cars,2003,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18628,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.0,0.0,Compact Cars,2003,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,VTEC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18629,0,14,Acura,3.2TL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6364,0.0,37.4867,0.0,Midsize Cars,2003,-2250,,2MODE CLKUP,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20020,(MPFI) (NO-CAT),-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1863,0,11,Mercedes-Benz,190,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,43.0,0.0,Subcompact Cars,1986,1500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18630,0,15,Acura,3.5RL,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Midsize Cars,2003,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18631,0,15,Audi,A6,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.758,0.0,34.2738,0.0,Midsize Cars,2003,-2250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18632,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,32.5,0.0,Midsize Cars,2003,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18633,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9,0.0,32.2,0.0,Midsize Cars,2003,-3750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18634,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4985,0.0,32.9501,0.0,Midsize Cars,2003,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18635,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9,0.0,31.8,0.0,Midsize Cars,2003,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18636,0,18,Audi,A8,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9,0.0,31.8,0.0,Midsize Cars,2003,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18637,0,18,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),17.4,0.0,27.2,0.0,Midsize Cars,2003,-6750,T,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,18638,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Midsize Cars,2003,-15500,T,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18639,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +13.631265,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20020,(MPFI) (NO-CAT),-1,2100,0,Diesel,Diesel,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,1864,0,11,Mercedes-Benz,190,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.0,0.0,Subcompact Cars,1986,1500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18640,0,17,Buick,Regal,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4257,0.0,34.4016,0.0,Midsize Cars,2003,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18641,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18642,0,13,Cadillac,CTS,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.298,0.0,32.8,0.0,Midsize Cars,2003,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18643,0,13,Cadillac,CTS,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,33.6,0.0,Midsize Cars,2003,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18644,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,34.5,0.0,Midsize Cars,2003,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18645,0,16,Chevrolet,Malibu,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18646,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Midsize Cars,2003,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18647,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18648,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18649,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,35.3,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,78,1865,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1986,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18650,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.6,0.0,35.9,0.0,Midsize Cars,2003,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18651,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18652,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,35.3,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18653,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8,0.0,Midsize Cars,2003,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18654,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.6,0.0,35.9,0.0,Midsize Cars,2003,-1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,VTC/VTEC,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,18655,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.1342,0.0,42.9324,0.0,Midsize Cars,2003,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,VTC/VTEC,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,18656,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8903,0.0,43.346,0.0,Midsize Cars,2003,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18657,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3348,0.0,38.1194,0.0,Midsize Cars,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18658,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,38.0,0.0,Midsize Cars,2003,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18659,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.5,0.0,Midsize Cars,2003,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,78,1866,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Subcompact Cars,1986,-500,,VLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18660,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,39.1,0.0,Midsize Cars,2003,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18661,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,35.2,0.0,Midsize Cars,2003,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18662,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.7,0.0,Midsize Cars,2003,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18663,0,15,Hyundai,XG350,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8471,0.0,33.0988,0.0,Midsize Cars,2003,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18664,0,15,Infiniti,I35,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7436,0.0,33.6572,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18665,0,12,Jaguar,S-Type 3.0 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1995,0.0,33.4997,0.0,Midsize Cars,2003,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18666,0,12,Jaguar,S-Type 3.0 Litre,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9786,0.0,33.182,0.0,Midsize Cars,2003,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18667,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.9253,0.0,32.9328,0.0,Midsize Cars,2003,-4750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18668,0,12,Jaguar,S-Type R,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.2995,0.0,30.6987,0.0,Midsize Cars,2003,-5750,,2MODE CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18669,0,13,Jaguar,Super V8,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6877,0.0,27.6049,0.0,Midsize Cars,2003,-6750,T,2MODE,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,78,1867,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0256,0.0,Subcompact Cars,1986,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18670,0,13,Jaguar,Vanden Plas,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9995,0.0,30.2997,0.0,Midsize Cars,2003,-4750,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18671,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9474,0.0,38.4499,0.0,Midsize Cars,2003,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18672,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,38.4,0.0,Midsize Cars,2003,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18673,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.449,0.0,34.9997,0.0,Midsize Cars,2003,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18674,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,35.6,0.0,Midsize Cars,2003,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18675,0,15,Lexus,ES 300,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.0,0.0,37.4,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18676,0,15,Lexus,GS 300/GS 430,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9726,0.0,31.8922,0.0,Midsize Cars,2003,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18677,0,15,Lexus,GS 300/GS 430,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Midsize Cars,2003,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18678,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,33.2,0.0,Midsize Cars,2003,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SST,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18679,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4,0.0,34.9,0.0,Midsize Cars,2003,-2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,1868,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0,0.0,Subcompact Cars,1986,1750,,VLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18680,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,30.5,0.0,Midsize Cars,2003,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,SST,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18681,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9469,0.0,31.7691,0.0,Midsize Cars,2003,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18682,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.8,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-VALVE,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18683,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,34.9,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18684,0,15,Mazda,6,Y,false,0,111,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,41.4,0.0,Midsize Cars,2003,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18685,0,15,Mazda,6,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0876,0.0,36.8814,0.0,Midsize Cars,2003,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18686,0,15,Mazda,6,Y,false,0,111,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.715,0.0,34.8204,0.0,Midsize Cars,2003,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18687,0,15,Mazda,6,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4231,0.0,34.5505,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18688,0,14,Mercedes-Benz,E320,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Midsize Cars,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18689,0,14,Mercedes-Benz,E500,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.4,0.0,Midsize Cars,2003,-5750,T,EMS 2MODE CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,81,1869,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,40.0,0.0,53.0,0.0,Subcompact Cars,1986,3750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18690,0,14,Mitsubishi,Diamante Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4,0.0,32.1,0.0,Midsize Cars,2003,-4750,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18691,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4558,0.0,35.3559,0.0,Midsize Cars,2003,-1000,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18692,0,14,Mitsubishi,Galant,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,35.2,0.0,Midsize Cars,2003,-1000,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18693,0,14,Mitsubishi,Galant,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,34.7,0.0,Midsize Cars,2003,-2250,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18694,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1499,0.0,37.5,0.0,Midsize Cars,2003,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18695,0,16,Nissan,Altima,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,37.8,0.0,Midsize Cars,2003,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18696,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0499,0.0,32.9,0.0,Midsize Cars,2003,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18697,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4,0.0,33.6,0.0,Midsize Cars,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18698,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7436,0.0,33.6572,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18699,0,15,Nissan,Maxima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,35.9,0.0,Midsize Cars,2003,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,187,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1985,2750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,1870,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1986,3000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18700,0,15,Oldsmobile,Aurora,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.1,0.0,Midsize Cars,2003,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18701,0,16,Pontiac,Grand Prix,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7446,0.0,36.6079,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18702,0,16,Pontiac,Grand Prix,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4257,0.0,34.4016,0.0,Midsize Cars,2003,-3750,,CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18703,0,16,Pontiac,Grand Prix,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Midsize Cars,2003,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18704,0,16,Saab,9-5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8167,0.0,37.0942,0.0,Midsize Cars,2003,-1000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18705,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.146,0.0,37.8075,0.0,Midsize Cars,2003,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18706,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2174,0.0,39.7909,0.0,Midsize Cars,2003,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18707,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0899,0.0,38.899,0.0,Midsize Cars,2003,-1750,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18708,0,16,Saab,9-5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4188,0.0,33.6758,0.0,Midsize Cars,2003,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18709,0,18,Saturn,L200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2116,0.0,40.5722,0.0,Midsize Cars,2003,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,1871,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1986,-1750,,VLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18710,0,18,Saturn,L200,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.2,0.0,Midsize Cars,2003,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18711,0,18,Saturn,L300,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.7,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18712,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.8,0.0,Midsize Cars,2003,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18713,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.9,0.0,Midsize Cars,2003,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18714,0,17,Toyota,Camry,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,35.8,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18715,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Cars,2003,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18716,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Cars,2003,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18717,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Cars,2003,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18718,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Cars,2003,-3000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18719,0,15,Volvo,S80/S80 Executive,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0008,0.0,35.3995,0.0,Midsize Cars,2003,-3000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,1872,0,11,Mitsubishi,Mirage,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.7436,0.0,Subcompact Cars,1986,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18720,0,15,Volvo,S80/S80 Executive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),20.7992,0.0,33.4987,0.0,Midsize Cars,2003,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18721,0,18,Audi,A8 L,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1,0.0,31.5,0.0,Large Cars,2003,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,18722,0,13,Bentley,Arnage LWB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Large Cars,2003,-15500,T,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18723,0,18,BMW,745i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,33.5,0.0,Large Cars,2003,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18724,0,18,BMW,745li,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,33.5,0.0,Large Cars,2003,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18725,0,18,Buick,LeSabre,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18726,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4257,0.0,34.4016,0.0,Large Cars,2003,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18727,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18728,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,34.5,0.0,Large Cars,2003,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,GUZZLER,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18729,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.3,0.0,Large Cars,2003,-7750,T,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1873,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,GUZZLER,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18730,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,28.0,0.0,Large Cars,2003,-6250,T,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18731,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,41.0,0.0,Large Cars,2003,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18732,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,37.4,0.0,Large Cars,2003,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18733,0,17,Chrysler,300 M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0,0.0,34.5,0.0,Large Cars,2003,-2500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18734,0,19,Chrysler,Concorde/LHS,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.4,0.0,Large Cars,2003,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18735,0,19,Chrysler,Concorde/LHS,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,35.0,0.0,Large Cars,2003,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18736,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.4,0.0,Large Cars,2003,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18737,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,35.0,0.0,Large Cars,2003,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18738,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0,0.0,34.5,0.0,Large Cars,2003,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18739,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,32.2,0.0,Large Cars,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1874,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1986,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18740,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,35.8,0.0,Large Cars,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-VALVE,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18741,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,34.9,0.0,Large Cars,2003,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18742,0,14,Infiniti,Q45,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2677,0.0,30.103,0.0,Large Cars,2003,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18743,0,16,Lexus,LS 430,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5981,0.0,32.0493,0.0,Large Cars,2003,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18744,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,32.2,0.0,Large Cars,2003,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4-VALVE,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18745,0,21,Mercury,Marauder,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,29.8,0.0,Large Cars,2003,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18746,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,32.2,0.0,Large Cars,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18747,0,15,Mercedes-Benz,S430,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1467,0.0,30.8883,0.0,Large Cars,2003,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18748,0,15,Mercedes-Benz,S430 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0978,0.0,27.9996,0.0,Large Cars,2003,-5750,T,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18749,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4994,0.0,28.3457,0.0,Large Cars,2003,-6750,T,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1875,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1986,-1750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18750,0,15,Mercedes-Benz,S500 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4499,0.0,26.9231,0.0,Large Cars,2003,-6750,T,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18751,0,15,Mercedes-Benz,S55 AMG,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8943,0.0,27.9499,0.0,Large Cars,2003,-8000,T,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,GUZZLER,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18752,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Large Cars,2003,-9500,T,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18753,0,16,Pontiac,Bonneville,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4257,0.0,34.4016,0.0,Large Cars,2003,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18754,0,16,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6959,0.0,37.2,0.0,Large Cars,2003,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18755,0,16,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,37.3,0.0,Large Cars,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18756,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.162,0.0,36.9,0.0,Small Station Wagons,2003,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18757,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4413,0.0,36.4288,0.0,Small Station Wagons,2003,-2250,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18758,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4611,0.0,31.9847,0.0,Small Station Wagons,2003,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18759,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4985,0.0,32.9501,0.0,Small Station Wagons,2003,-3750,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1876,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Subcompact Cars,1986,-500,,VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18760,0,26,BMW,325i Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1909,0.0,35.8408,0.0,Small Station Wagons,2003,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18761,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5982,0.0,37.6426,0.0,Small Station Wagons,2003,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18762,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Small Station Wagons,2003,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18763,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,33.7,0.0,Small Station Wagons,2003,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18764,0,33,BMW,525i Sport Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,33.3,0.0,Small Station Wagons,2003,-3000,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18765,0,33,BMW,525i Sport Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8503,0.0,34.0228,0.0,Small Station Wagons,2003,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,GUZZLER,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18766,0,33,BMW,540i Sport Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8,0.0,26.9361,0.0,Small Station Wagons,2003,-5750,T,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18767,0,0,Daewoo,Nubira Station Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.021,0.0,34.9253,0.0,Small Station Wagons,2003,-1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC-IL4,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18768,0,0,Daewoo,Nubira Station Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6665,0.0,36.6829,0.0,Small Station Wagons,2003,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,31,89,18769,0,0,Mercedes-Benz,C240 (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4443,0.0,31.7846,0.0,Small Station Wagons,2003,-3750,,EMS 2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1877,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,31,89,18770,0,0,Mercedes-Benz,C240 (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0467,0.0,32.7997,0.0,Small Station Wagons,2003,-4750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,31,89,18771,0,0,Mercedes-Benz,C240 4matic (Wagon),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1649,0.0,31.8434,0.0,Small Station Wagons,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,31,89,18772,0,0,Mercedes-Benz,C320 (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9783,0.0,33.7896,0.0,Small Station Wagons,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,31,89,18773,0,0,Mercedes-Benz,C320 (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7985,0.0,32.1149,0.0,Small Station Wagons,2003,-4750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,31,89,18774,0,0,Mercedes-Benz,C320 4matic (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1649,0.0,31.8434,0.0,Small Station Wagons,2003,-3750,,EMS 2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,96,18775,0,0,Pontiac,Vibe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6596,0.0,42.8769,0.0,Small Station Wagons,2003,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,96,18776,0,0,Pontiac,Vibe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,96,18777,0,0,Pontiac,Vibe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8861,0.0,38.8122,0.0,Small Station Wagons,2003,0,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,96,18778,0,0,Pontiac,Vibe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.7,0.0,46.2,0.0,Small Station Wagons,2003,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,96,18779,0,0,Pontiac,Vibe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0,0.0,39.1,0.0,Small Station Wagons,2003,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,1878,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0,0.0,Subcompact Cars,1986,1750,,VLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18780,0,18,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3569,0.0,33.5215,0.0,Small Station Wagons,2003,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18781,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4896,0.0,34.6329,0.0,Small Station Wagons,2003,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18782,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8768,0.0,34.0395,0.0,Small Station Wagons,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18783,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.313,0.0,34.7783,0.0,Small Station Wagons,2003,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18784,0,13,Suzuki,Aerio SX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.6167,0.0,39.5498,0.0,Small Station Wagons,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18785,0,13,Suzuki,Aerio SX,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.9359,0.0,41.3063,0.0,Small Station Wagons,2003,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18786,0,10,Suzuki,Aerio SX 4WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3,0.0,35.8,0.0,Small Station Wagons,2003,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,96,18787,0,0,Toyota,Matrix,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6239,0.0,42.8455,0.0,Small Station Wagons,2003,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,96,18788,0,0,Toyota,Matrix,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2003,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,96,18789,0,0,Toyota,Matrix,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.7732,0.0,38.6264,0.0,Small Station Wagons,2003,0,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,81,1879,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,40.0,0.0,53.0,0.0,Subcompact Cars,1986,3750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,96,18790,0,0,Toyota,Matrix,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.7,0.0,46.2,0.0,Small Station Wagons,2003,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,96,18791,0,0,Toyota,Matrix,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0,0.0,39.1,0.0,Small Station Wagons,2003,-500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,18792,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.0281,0.0,57.1205,0.0,Small Station Wagons,2003,3000,,CLKUP,T,,Diesel,,,, +9.783936,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.02564102564105,39,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1500,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,18793,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.7,0.0,64.0,0.0,Small Station Wagons,2003,4500,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18794,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8246,0.0,37.0884,0.0,Small Station Wagons,2003,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18795,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3368,0.0,39.0489,0.0,Small Station Wagons,2003,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,33,89,18796,0,0,Volvo,V40,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9,0.0,37.9,0.0,Small Station Wagons,2003,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18797,0,36,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4985,0.0,32.9501,0.0,Midsize Station Wagons,2003,-3750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18798,0,34,Audi,S6 Avant,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),16.3,0.0,26.8,0.0,Midsize Station Wagons,2003,-8000,T,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18799,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1973,0.0,42.3994,0.0,Midsize Station Wagons,2003,1500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,188,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,1880,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1986,3000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18800,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,38.5,0.0,Midsize Station Wagons,2003,500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,18801,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,45.8,0.0,Midsize Station Wagons,2003,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18802,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,40.4,0.0,Midsize Station Wagons,2003,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18803,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5208,0.0,38.3221,0.0,Midsize Station Wagons,2003,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,18804,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,41.8,0.0,Midsize Station Wagons,2003,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18805,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.0,0.0,Midsize Station Wagons,2003,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18806,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.1,0.0,Midsize Station Wagons,2003,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18807,0,32,Lexus,RX 300,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Midsize Station Wagons,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18808,0,32,Lexus,RX 300 4WD,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Midsize Station Wagons,2003,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18809,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,33.0,0.0,Midsize Station Wagons,2003,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,1881,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1986,-1750,,VLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18810,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.1,0.0,Midsize Station Wagons,2003,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,44,98,18811,0,0,Mercedes-Benz,E320 (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6698,0.0,35.085,0.0,Midsize Station Wagons,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,44,98,18812,0,0,Mercedes-Benz,E320 4Matic (Wagon),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4496,0.0,33.5736,0.0,Midsize Station Wagons,2003,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18813,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4726,0.0,35.8882,0.0,Midsize Station Wagons,2003,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18814,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4891,0.0,36.2458,0.0,Midsize Station Wagons,2003,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235E,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18815,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9802,0.0,38.4777,0.0,Midsize Station Wagons,2003,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,18816,0,37,Saab,9-5 Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6839,0.0,37.9705,0.0,Midsize Station Wagons,2003,-1750,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308E,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18817,0,37,Saab,9-5 Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3709,0.0,33.175,0.0,Midsize Station Wagons,2003,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18818,0,34,Saturn,LW200,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.2116,0.0,40.5722,0.0,Midsize Station Wagons,2003,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,18819,0,34,Saturn,LW200,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.2,0.0,Midsize Station Wagons,2003,500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,1882,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.7436,0.0,Subcompact Cars,1986,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18820,0,34,Saturn,LW300,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.7,0.0,Midsize Station Wagons,2003,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18821,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9267,0.0,35.8974,0.0,Midsize Station Wagons,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18822,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1486,0.0,34.5719,0.0,Midsize Station Wagons,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18823,0,34,Subaru,Legacy/Outback Wagon AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),22.071,0.0,33.3988,0.0,Midsize Station Wagons,2003,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18824,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1236,0.0,32.6993,0.0,Midsize Station Wagons,2003,-3750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18825,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Station Wagons,2003,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,18826,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Station Wagons,2003,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18827,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Station Wagons,2003,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18828,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Station Wagons,2003,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18829,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7397,0.0,33.561,0.0,Midsize Station Wagons,2003,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1883,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18830,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Midsize Station Wagons,2003,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,18831,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,32.0,0.0,Midsize Station Wagons,2003,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,18832,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9002,0.0,33.5004,0.0,Midsize Station Wagons,2003,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,18833,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9,0.0,33.1,0.0,Midsize Station Wagons,2003,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,36,98,18834,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9855,0.0,38.8518,0.0,Midsize Station Wagons,2003,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,18835,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7974,0.0,33.4958,0.0,Midsize Station Wagons,2003,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,18836,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.0,0.0,Midsize Station Wagons,2003,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18837,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5687,0.0,32.4558,0.0,Small Pickup Trucks 2WD,2003,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18838,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2003,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18839,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.025,0.0,29.5247,0.0,Small Pickup Trucks 2WD,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,1884,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1986,-4750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18840,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.8,0.0,Small Pickup Trucks 2WD,2003,-4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18841,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5687,0.0,32.4558,0.0,Small Pickup Trucks 2WD,2003,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18842,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,35.5,0.0,Small Pickup Trucks 2WD,2003,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18843,0,0,GMC,Sonoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9414,0.0,29.4404,0.0,Small Pickup Trucks 2WD,2003,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18844,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.8,0.0,Small Pickup Trucks 2WD,2003,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18845,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0616,0.0,25.5654,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18846,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.7,0.0,Standard Pickup Trucks 2WD,2003,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18847,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0195,0.0,24.7371,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18848,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3944,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2003,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18849,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5653,0.0,24.0214,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,1885,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,50.0,0.0,Subcompact Cars,1986,2750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18850,0,0,Chevrolet,SSR Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18851,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,24.0,0.0,Standard Pickup Trucks 2WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18852,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,26.8,0.0,Standard Pickup Trucks 2WD,2003,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18853,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0207,0.0,25.312,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18854,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,25.641,0.0,Standard Pickup Trucks 2WD,2003,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18855,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,22.5798,0.0,Standard Pickup Trucks 2WD,2003,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18856,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.4,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18857,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18858,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.763,0.0,24.3826,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18859,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.2988,0.0,23.8204,0.0,Standard Pickup Trucks 2WD,2003,-6250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,77,1886,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Subcompact Cars,1986,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18860,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,22.9,0.0,Standard Pickup Trucks 2WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18861,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.292,0.0,22.1633,0.0,Standard Pickup Trucks 2WD,2003,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18862,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,26.1,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18863,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18864,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8499,0.0,26.2491,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18865,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,26.1,0.0,Standard Pickup Trucks 2WD,2003,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18866,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2517,0.0,25.8596,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18867,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0824,0.0,24.3634,0.0,Standard Pickup Trucks 2WD,2003,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18868,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9445,0.0,24.0974,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,SUPERCHRGD,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18869,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.623,0.0,20.5055,0.0,Standard Pickup Trucks 2WD,2003,-11250,,CLKUP,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1887,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18870,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.0996,0.0,33.6,0.0,Standard Pickup Trucks 2WD,2003,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18871,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,36.6,0.0,Standard Pickup Trucks 2WD,2003,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18872,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.4,0.0,Standard Pickup Trucks 2WD,2003,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18873,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7699,0.0,29.5214,0.0,Standard Pickup Trucks 2WD,2003,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18874,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0769,0.0,26.8797,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18875,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18876,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3989,0.0,25.8989,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18877,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.7,0.0,Standard Pickup Trucks 2WD,2003,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18878,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0122,0.0,24.7103,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18879,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2487,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2003,-5250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,19,77,1888,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18880,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6143,0.0,24.0864,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18881,0,0,Lincoln,Blackwood 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8203,0.0,21.5587,0.0,Standard Pickup Trucks 2WD,2003,-11250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18882,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.0996,0.0,33.6,0.0,Standard Pickup Trucks 2WD,2003,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,18883,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,36.6,0.0,Standard Pickup Trucks 2WD,2003,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18884,0,0,Mazda,B3000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.4,0.0,Standard Pickup Trucks 2WD,2003,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18885,0,0,Mazda,B3000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7294,0.0,29.606,0.0,Standard Pickup Trucks 2WD,2003,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18886,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,26.7,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18887,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2003,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18888,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2003,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18889,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.6,0.0,Standard Pickup Trucks 2WD,2003,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,1889,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18890,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0113,0.0,23.8653,0.0,Standard Pickup Trucks 2WD,2003,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18891,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4024,0.0,25.7652,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18892,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.6,0.0,Standard Pickup Trucks 2WD,2003,-8000,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18893,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0351,0.0,25.8668,0.0,Standard Pickup Trucks 2WD,2003,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,18894,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9981,0.0,31.6927,0.0,Standard Pickup Trucks 2WD,2003,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,18895,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,34.9,0.0,Standard Pickup Trucks 2WD,2003,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18896,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7485,0.0,27.5601,0.0,Standard Pickup Trucks 2WD,2003,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18897,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2003,-5250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,18898,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2003,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18899,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1888,0.0,24.9828,0.0,Standard Pickup Trucks 2WD,2003,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,189,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,1890,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0256,0.0,Subcompact Cars,1986,500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18900,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2,0.0,25.3,0.0,Standard Pickup Trucks 2WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18901,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5498,0.0,24.0,0.0,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18902,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8446,0.0,23.2173,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18903,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.3834,0.0,23.0768,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18904,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8989,0.0,22.6982,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18905,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4815,0.0,22.7763,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18906,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4609,0.0,22.5413,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18907,0,0,Chevrolet,Silverado SS 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,21.2,0.0,Standard Pickup Trucks 4WD,2003,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18908,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18909,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.8,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4151,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,1891,0,0,Pontiac,Firebird,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18910,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6995,0.0,21.8,0.0,Standard Pickup Trucks 4WD,2003,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18911,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,24.9,0.0,Standard Pickup Trucks 4WD,2003,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18912,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5556,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18913,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.9445,0.0,23.8797,0.0,Standard Pickup Trucks 4WD,2003,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18914,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,22.2,0.0,Standard Pickup Trucks 4WD,2003,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18915,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3956,0.0,21.9767,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18916,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2003,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18917,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,21.2,0.0,Standard Pickup Trucks 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18918,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5051,0.0,21.0764,0.0,Standard Pickup Trucks 4WD,2003,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18919,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1159,0.0,25.0181,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4151,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,1892,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18920,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18921,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.0,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18922,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18923,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3406,0.0,24.0204,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18924,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4,0.0,22.789,0.0,Standard Pickup Trucks 4WD,2003,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18925,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1846,0.0,22.5103,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18926,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1018,0.0,25.0027,0.0,Standard Pickup Trucks 4WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18927,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,26.9,0.0,Standard Pickup Trucks 4WD,2003,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18928,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,23.9,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18929,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9833,0.0,23.7591,0.0,Standard Pickup Trucks 4WD,2003,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,1893,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18930,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1236,0.0,23.6769,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18931,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.5207,0.0,23.1742,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18932,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8978,0.0,22.6964,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18933,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4532,0.0,22.7402,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18934,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4975,0.0,22.5963,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18935,0,0,GMC,Sierra Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Standard Pickup Trucks 4WD,2003,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18936,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18937,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.8,0.0,Standard Pickup Trucks 4WD,2003,-7750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18938,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1018,0.0,25.0027,0.0,Standard Pickup Trucks 4WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18939,0,0,Mazda,B3000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,26.9,0.0,Standard Pickup Trucks 4WD,2003,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4175,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,1894,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1986,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18940,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,23.9,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18941,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9833,0.0,23.7591,0.0,Standard Pickup Trucks 4WD,2003,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18942,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6741,0.0,23.0454,0.0,Standard Pickup Trucks 4WD,2003,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18943,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9059,0.0,25.728,0.0,Standard Pickup Trucks 4WD,2003,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18944,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,22.4,0.0,Standard Pickup Trucks 4WD,2003,-9500,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18945,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.876,0.0,25.664,0.0,Standard Pickup Trucks 4WD,2003,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18946,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3158,0.0,26.8,0.0,Standard Pickup Trucks 4WD,2003,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,18947,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,27.3,0.0,Standard Pickup Trucks 4WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18948,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.5,0.0,Standard Pickup Trucks 4WD,2003,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18949,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,25.3,0.0,Standard Pickup Trucks 4WD,2003,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4190,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,1895,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18950,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2049,0.0,23.4148,0.0,Standard Pickup Trucks 4WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18951,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9974,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2003,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18952,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6358,0.0,21.7361,0.0,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18953,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.3986,0.0,"Vans, Cargo Type",2003,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18954,0,0,Chevrolet,Astro 2WD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.0,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18955,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18956,0,0,Chevrolet,Astro AWD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18957,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.8,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18958,0,0,Chevrolet,Van 15/25 2WD Conversion,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18959,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.0,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +9.141184,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54016,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,79,1896,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,45.0,0.0,55.0,0.0,Subcompact Cars,1986,4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18960,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7125,0.0,22.8848,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18961,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,"Vans, Cargo Type",2003,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18962,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.7,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18963,0,0,Dodge,Ram Van 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.2,0.0,20.3,0.0,"Vans, Cargo Type",2003,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18964,0,0,Dodge,Ram Van 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,20.5,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18965,0,0,Dodge,Ram Van 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3697,0.0,23.0363,0.0,"Vans, Cargo Type",2003,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,18966,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.8,0.0,18.5,0.0,"Vans, Cargo Type",2003,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18967,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,20.5,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18968,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9,0.0,22.8,0.0,"Vans, Cargo Type",2003,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18969,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,23.8,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54016,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,8,79,1897,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,64.0,0.0,Subcompact Cars,1986,5000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18970,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.1,0.0,"Vans, Cargo Type",2003,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18971,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6201,0.0,20.9722,0.0,"Vans, Cargo Type",2003,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18972,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3495,0.0,22.3173,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18973,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,23.5996,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,18974,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6439,0.0,21.3254,0.0,"Vans, Cargo Type",2003,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18975,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.8,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18976,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18977,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5001,0.0,25.0001,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18978,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1232,0.0,23.4334,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18979,0,0,GMC,Savana 15/25 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,"Vans, Cargo Type",2003,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1898,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1986,-3000,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18980,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.7,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,18981,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.3986,0.0,"Vans, Cargo Type",2003,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18982,0,0,GMC,Safari 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.0,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18983,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18984,0,0,GMC,Safari AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2003,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18985,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.9,0.0,"Vans, Passenger Type",2003,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18986,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18987,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.2,0.0,"Vans, Passenger Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18988,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18989,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,"Vans, Passenger Type",2003,-9250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,1899,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18990,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3495,0.0,22.3173,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18991,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.0,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18992,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,22.2,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18993,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.2,0.0,"Vans, Passenger Type",2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,18994,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18995,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,"Vans, Passenger Type",2003,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,18996,0,0,GMC,Safari 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.9,0.0,"Vans, Passenger Type",2003,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,18997,0,0,GMC,Safari AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2003,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,18998,0,0,Volkswagen,Eurovan Camper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0947,0.0,25.4,0.0,Minivan - 2WD,2003,-6750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,18999,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2003,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27914,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19,7,0,Mercedes-Benz,500SL,N,false,46,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Two Seaters,1985,-7750,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,190,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4211,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1900,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1986,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19000,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,0.0,34.9,0.0,Minivan - 2WD,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19001,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.8,0.0,Minivan - 2WD,2003,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19002,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,0.0,34.9,0.0,Minivan - 2WD,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19003,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.8,0.0,Minivan - 2WD,2003,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19004,0,0,Ford,Windstar FWD Cargo Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.8,0.0,Minivan - 2WD,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19005,0,0,Ford,Windstar FWD Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2675,0.0,29.9819,0.0,Minivan - 2WD,2003,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VTEC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19006,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0471,0.0,32.0864,0.0,Minivan - 2WD,2003,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19007,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9976,0.0,25.5,0.0,Minivan - 2WD,2003,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19008,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7862,0.0,31.5139,0.0,Minivan - 2WD,2003,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19009,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2003,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4202,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,1901,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19010,0,0,Pontiac,Montana FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Minivan - 2WD,2003,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19011,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,31.3527,0.0,Minivan - 2WD,2003,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19012,0,0,Volkswagen,Eurovan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5806,0.0,25.4499,0.0,Minivan - 2WD,2003,-6750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19013,0,0,Chevrolet,Venture AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.9,0.0,Minivan - 4WD,2003,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19014,0,0,Chrysler,Town and Country/Voyager/Grand Voy. AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,29.0,0.0,Minivan - 4WD,2003,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19015,0,0,Dodge,Caravan/Grand Caravan AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6398,0.0,29.5003,0.0,Minivan - 4WD,2003,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19016,0,0,Oldsmobile,Silhouette AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.9,0.0,Minivan - 4WD,2003,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19017,0,0,Pontiac,Montana AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.9,0.0,Minivan - 4WD,2003,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19018,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19019,0,0,Cadillac,Escalade 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,1902,0,11,Pontiac,Sunburst,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,44.0,0.0,Subcompact Cars,1986,2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19020,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.3986,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19021,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19022,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19023,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19024,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19025,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19026,0,0,Chevrolet,Tracker 2WD Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2003,-500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19027,0,0,Chevrolet,Tracker 2WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19028,0,0,Chevrolet,Tracker 2WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2003,-500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19029,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,17,85,1903,0,11,Pontiac,Sunburst,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1986,4000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19030,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19031,0,0,Chevrolet,Tracker LT 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19032,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19033,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19034,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19035,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9769,0.0,31.9997,0.0,Sport Utility Vehicle - 2WD,2003,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19036,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19037,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9134,0.0,34.245,0.0,Sport Utility Vehicle - 2WD,2003,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19038,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,36.9,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19039,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5556,0.0,24.359,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,1904,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19040,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2599,0.0,22.9821,0.0,Sport Utility Vehicle - 2WD,2003,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19041,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19042,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,32.1,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19043,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,24.5,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19044,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19045,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4,0.0,24.9,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19046,0,0,Ford,Explorer Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19047,0,0,Ford,Explorer Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19048,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19049,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4101,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,1905,0,0,Pontiac,1000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1986,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19050,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19051,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19052,0,0,GMC,Envoy XL 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19053,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19054,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.3986,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19055,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19056,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,35.6,0.0,Sport Utility Vehicle - 2WD,2003,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19057,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,33.7,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19058,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19059,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0959,0.0,34.6767,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4102,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,1906,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1986,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19060,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19061,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5472,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19062,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3193,0.0,28.2827,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19063,0,0,Infiniti,FX35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.7394,0.0,29.9786,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19064,0,0,Infiniti,QX4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9038,0.0,26.3643,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19065,0,0,Isuzu,Ascender 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,LM7,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19066,0,0,Isuzu,Ascender 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19067,0,0,Isuzu,Axiom 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,26.4,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19068,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19069,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.9,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1101,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1907,8,0,Renault,Alliance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,30.0,0.0,Subcompact Cars,1986,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19070,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,28.9,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19071,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,L-4,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19072,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.9,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19073,0,0,Isuzu,Rodeo Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,28.9,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19074,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19075,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2059,0.0,25.641,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19076,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19077,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19078,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19079,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1101,(FFS) (SPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1908,8,0,Renault,Alliance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0256,0.0,Subcompact Cars,1986,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19080,0,0,Lincoln,Aviator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8291,0.0,23.7962,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19081,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,21.3,0.0,Sport Utility Vehicle - 2WD,2003,-11250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19082,0,0,Mazda,Tribute 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19083,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,32.1,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19084,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1,0.0,24.8,0.0,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19085,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.4884,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19086,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8484,0.0,27.2787,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SOHC,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19087,0,0,Mitsubishi,Nativa 2WD(Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.4884,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19088,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.2,0.0,33.9,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19089,0,0,Nissan,Murano 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.7,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,83,1909,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Subcompact Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19090,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9038,0.0,26.3643,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19091,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,24.9,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19092,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7995,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2003,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19093,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0113,0.0,23.8653,0.0,Sport Utility Vehicle - 2WD,2003,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19094,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4024,0.0,25.7652,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19095,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2003,-8000,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19096,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0351,0.0,25.8668,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19097,0,0,Oldsmobile,Bravada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19098,0,0,Pontiac,Aztek FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19099,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.0,0.0,35.6,0.0,Sport Utility Vehicle - 2WD,2003,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49021,"(CALIF) (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,81,191,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,83,1910,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1986,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19100,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2003,-500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19101,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7,0.0,32.7951,0.0,Sport Utility Vehicle - 2WD,2003,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19102,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.7,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19103,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19104,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,25.45,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19105,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2003,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19106,0,0,Suzuki,Vitara 2 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19107,0,0,Suzuki,Vitara 2 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2003,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19108,0,0,Suzuki,Vitara 4 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19109,0,0,Suzuki,Vitara 4 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.0513,0.0,Sport Utility Vehicle - 2WD,2003,-1000,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44022,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,1911,9,0,Rolls-Royce,Corniche II/Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1986,-22500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19110,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19111,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19112,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2003,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19113,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2003,-3250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19114,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2003,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19115,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,0.0,39.4,0.0,Sport Utility Vehicle - 2WD,2003,500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19116,0,0,Toyota,Sequoia 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,101,19117,0,0,Volvo,XC 90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7,0.0,30.9,0.0,Sport Utility Vehicle - 2WD,2003,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,VTEC,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19118,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6496,0.0,29.399,0.0,Sport Utility Vehicle - 4WD,2003,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19119,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.6,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2003,-5750,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,66010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,78,1912,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1986,2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19120,0,0,Audi,Allroad quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2003,-5750,,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19121,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2003,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19122,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2003,-6750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19123,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2003,-9500,,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19124,0,0,BMW,X5 4.6is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2003,-9500,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19125,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19126,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19127,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19128,0,0,Cadillac,Escalade Ext AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19129,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5345,0.0,23.9752,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,66010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,78,1913,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1986,1500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19130,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19131,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19132,0,0,Chevrolet,Avalanche 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19133,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19134,0,0,Chevrolet,Suburban 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19135,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19136,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19137,0,0,Chevrolet,Tahoe 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19138,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19139,0,0,Chevrolet,Tracker 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(OHV) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,78,1914,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1986,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19140,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19141,0,0,Chevrolet,Tracker 4WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19142,0,0,Chevrolet,Tracker 4WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19143,0,0,Chevrolet,Tracker LT 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19144,0,0,Chevrolet,Tracker ZR2 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19145,0,0,Chevrolet,Tracker ZR2 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19146,0,0,Chevrolet,Tracker ZR2 4WD Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19147,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,26.3,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19148,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19149,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(OHV) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,78,1915,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Subcompact Cars,1986,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19150,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5556,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19151,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19152,0,0,Ford,Escape 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19153,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.3,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19154,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19155,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19156,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19157,0,0,Ford,Explorer Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1159,0.0,25.0181,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19158,0,0,Ford,Explorer Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9833,0.0,23.7591,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19159,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,26.3,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1916,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19160,0,0,GMC,Envoy XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19161,0,0,GMC,Envoy XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19162,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7932,0.0,24.7785,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19163,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19164,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19165,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19166,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19167,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19168,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19169,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1917,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1986,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19170,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,21.0,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19171,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3464,0.0,33.7993,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19172,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19173,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,VTEC,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19174,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9455,0.0,28.5129,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19175,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2995,0.0,30.1433,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19176,0,31,Hyundai,Santa Fe 4WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7435,0.0,26.8387,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19177,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2783,0.0,27.6553,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19178,0,0,Infiniti,FX45 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.4,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19179,0,0,Infiniti,QX4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8617,0.0,24.5025,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,1918,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1986,500,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19180,0,0,Isuzu,Ascender 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,LM7,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19181,0,0,Isuzu,Ascender 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.6,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19182,0,0,Isuzu,Axiom 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19183,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19184,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19185,0,0,Isuzu,Rodeo Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19186,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,26.9231,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19187,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,25.9,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19188,0,0,Jeep,Liberty/Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2003,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19189,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1919,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1986,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19190,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19191,0,0,Jeep,Wrangler/TJ 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19192,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19193,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19194,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19195,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19196,0,0,Land Rover,Freelander 3 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1228,0.0,25.9236,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19197,0,0,Land Rover,Freelander 5 Door,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1442,0.0,26.2534,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,19198,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3498,0.0,19.9499,0.0,Sport Utility Vehicle - 4WD,2003,-13250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,448S,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19199,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5396,0.0,21.4579,0.0,Sport Utility Vehicle - 4WD,2003,-11250,,EMS 3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,192,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(16-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,1920,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1986,-500,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19200,0,0,Lexus,GX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7231,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19201,0,0,Lexus,LX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5062,0.0,21.363,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19202,0,0,Lincoln,Aviator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8,0.0,23.0,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19203,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19204,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.3,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,49,124,19205,0,0,Mercedes-Benz,G500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2003,-13250,,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,49,124,19206,0,0,Mercedes-Benz,G55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2003,-11250,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,41,105,19207,0,0,Mercedes-Benz,ML320,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1994,0.0,23.8993,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,41,105,19208,0,0,Mercedes-Benz,ML350,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,23.1,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,41,105,19209,0,0,Mercedes-Benz,ML500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6,0.0,21.6,0.0,Sport Utility Vehicle - 4WD,2003,-9500,,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,79,1921,12,0,Toyota,Celica,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1986,500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,33,105,19210,0,0,Mercedes-Benz,ML55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6498,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2003,-9500,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19211,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19212,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19213,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2699,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19214,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9554,0.0,25.6916,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19215,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5978,0.0,23.2323,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19216,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.1,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19217,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.5,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,VMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19218,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8617,0.0,24.5025,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19219,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,24.9,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(16-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,1922,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1986,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19220,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7667,0.0,23.231,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19221,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.8727,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19222,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2003,-8000,,,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19223,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,25.6185,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19224,0,0,Oldsmobile,Bravada AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,26.3,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19225,0,0,Pontiac,Aztek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19226,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.2,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19227,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2003,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19228,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19229,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,79,1923,12,0,Toyota,Celica,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1986,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19230,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8768,0.0,34.0395,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19231,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.313,0.0,34.7783,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19232,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19233,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19234,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,25.15,0.0,Sport Utility Vehicle - 4WD,2003,-5250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19235,0,0,Suzuki,Grand Vitara XL7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19236,0,0,Suzuki,Vitara 2 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19237,0,0,Suzuki,Vitara 2 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19238,0,0,Suzuki,Vitara 4 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19239,0,0,Suzuki,Vitara 4 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2003,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57051,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,76,1924,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1986,-3750,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19240,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1995,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2003,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19241,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,24.1,0.0,Sport Utility Vehicle - 4WD,2003,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19242,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2003,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19243,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2003,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19244,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5062,0.0,21.363,0.0,Sport Utility Vehicle - 4WD,2003,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19245,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9379,0.0,34.429,0.0,Sport Utility Vehicle - 4WD,2003,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19246,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2003,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19247,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4485,0.0,22.3996,0.0,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19248,0,0,Volvo,XC 70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2003,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19249,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6356,0.0,30.4496,0.0,Sport Utility Vehicle - 4WD,2003,-4750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,14,76,1925,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1986,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19250,0,0,Volvo,XC 90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),16.8,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2003,-6750,,2MODE CLKUP,T,,,,,, +0.14297200000000002,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,IN COMMENT,-1,2400,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19251,0,0,Ford,F150 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,20.7,0.0,Standard Pickup Trucks 2WD,2003,0,,CLKUP,,,CNG,,,, +0.14297200000000002,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,0,CNG,-1,2400,0,CNG,Natural Gas,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19252,0,0,Dodge,Ram Van 2500 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.5,0.0,24.7,0.0,"Vans, Cargo Type",2003,0,,CLKUP,,,CNG,,,, +21.974,8.153466,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,4250,Gasoline or propane,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,19253,0,0,Ford,F150 Dual-fuel 2WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2003,-6250,,,,,Bifuel (LPG),Propane,270/240/340,, +21.974,8.153466,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3650,4250,Gasoline or propane,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,19254,0,0,Ford,F150 Dual-fuel 4WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2003,-6250,,,,,Bifuel (LPG),Propane,270/240/340,, +16.4805,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,444.35,20,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,16,0.0,0.0,0.0,0.0,0,0,19255,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7988,14.1,33.6333,22.1,Minivan - 2WD,2003,-1750,,CLKUP,,,FFV,E85,280,, +16.4805,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,444.35,20,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,16,0.0,0.0,0.0,0.0,0,0,19256,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2865,14.1,33.064,22.1,Minivan - 2WD,2003,-1750,,CLKUP,,,FFV,E85,280,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,19257,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.1,17.2,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19258,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.8,23.9,17.8,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19259,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.8,23.9,17.8,Sport Utility Vehicle - 2WD,2003,-6250,,CLKUP,,,FFV,E85,310/390,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,77,1926,9,0,Toyota,Corolla Sport,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1986,1500,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,19260,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.1,17.2,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,FFV,E85,310/390,, +20.589638,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,19261,0,0,Ford,Explorer 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,12.2,26.6,18.8,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,FFV,E85,270,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,19262,0,0,Mercury,Mountaineer 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,12.5,26.0,19.6,Sport Utility Vehicle - 4WD,2003,-5250,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,19263,0,0,Ford,Explorer 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,12.4,26.7,19.9,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,FFV,E85,230,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,19264,0,0,Ford,Ranger 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,14.1498,27.2,20.6995,Standard Pickup Trucks 2WD,2003,-4250,,CLKUP,,,FFV,E85,270,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,19265,0,0,Mazda,B3000 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,14.1498,27.2,20.6995,Standard Pickup Trucks 2WD,2003,-4250,,CLKUP,,,FFV,E85,270,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,19266,0,0,Mercury,Mountaineer 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,12.4,26.7,19.9,Sport Utility Vehicle - 2WD,2003,-5250,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,19267,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4761,12.3,24.6473,18.3472,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,19268,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4614,12.3,24.6765,18.3764,Standard Pickup Trucks 2WD,2003,-6250,,CLKUP,,,FFV,E85,310/390,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,19269,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.1,17.2,Sport Utility Vehicle - 2WD,2003,-7750,,CLKUP,,,FFV,E85,310/390,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,77,1927,9,0,Toyota,Corolla Sport,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.3077,0.0,Subcompact Cars,1986,1750,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,19270,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.4,35.3,26.1,Compact Cars,2003,-1000,,,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,19271,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.4,35.3,26.1,Midsize Cars,2003,-1000,,,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,19272,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.4,35.3,26.1,Midsize Cars,2003,-1000,,CLKUP,,,FFV,E85,270,, +13.73375,0.080848,0.0,0.0,21,0.0,20,0.0,0.0,0.0,0.0,-1,-1,305.6521739130435,370.2916666666667,24,0.0,23,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,1350,Gasoline or natural gas,Regular Gasoline,-1,-1,30,0.0,29,0.0,0.0,0.0,0.0,0,0,19273,0,7,Chevrolet,Cavalier Dual-fuel,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0137,25.3499,42.1955,41.4,Subcompact Cars,2003,500,,,,,Bifuel (CNG),Natural Gas,130,, +17.337486000000002,5.758082,0.0,0.0,16,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,19274,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,14.1,31.6,22.1,Minivan - 2WD,2003,-2500,,CLKUP,,,FFV,E85,280,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19275,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19276,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19277,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19278,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,19279,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9702,11.1701,21.5702,15.9,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(16-VALVE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,77,1928,9,0,Toyota,Corolla Sport,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Subcompact Cars,1986,1000,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,19280,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9643,11.1643,21.5644,15.9,Standard Pickup Trucks 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19281,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19282,0,0,Chevrolet,Avalanche 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19283,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19284,0,0,Chevrolet,Suburban 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19285,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +32.961,0.186,0.0,0.0,10,0.0,9,0.0,0.0,0.0,0.0,-1,-1,703.0,888.7,10,0.0,10,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,5500,3150,Gasoline or natural gas,Regular Gasoline,-1,-1,11,0.0,11,0.0,0.0,0.0,0.0,0,0,19286,0,0,Chevrolet,Silverado 2500 2WD (Bifuel),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.6655,11.1376,15.6145,15.3373,Standard Pickup Trucks 2WD,2003,-15500,,2MODE,,,Bifuel (CNG),Natural Gas,180,, +16.4805,4.994,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,19287,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,15.5,34.3,25.6,Midsize Cars,2003,-1750,,CLKUP,,,FFV,E85,290,, +16.4805,4.994,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,19288,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,15.5,34.3,25.6,Large Cars,2003,-1750,,CLKUP,,,FFV,E85,290,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,19289,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,15.0,33.3,24.5,Midsize Station Wagons,2003,-2500,,CLKUP,,,FFV,E85,290,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,1929,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1986,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,19290,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,15.0,33.3,24.5,Midsize Station Wagons,2003,-2500,,CLKUP,,,FFV,E85,290,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,19291,0,0,Chevrolet,Tahoe 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.5,23.3,17.3,Sport Utility Vehicle - 4WD,2003,-7750,,CLKUP,,,FFV,E85,280/380,, +0.06634,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,CNG,-1,1100,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19292,0,7,Honda,Civic CNG,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.2,0.0,43.9,0.0,Compact Cars,2003,6500,,VLKUP,,,CNG,,,, +0.132804,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,502.14285714285717,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG130/170,-1,2250,0,CNG,Natural Gas,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19293,0,21,Ford,Crown Victoria CNG,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,23.6,0.0,Large Cars,2003,750,,CLKUP,,,CNG,,,, +25.336022,0.155,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,683.6153846153846,13,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,BI-FUEL,-1,4250,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,15,0.0,14,0.0,0.0,0.0,0.0,0,0,19294,0,0,Ford,F150 Dual-fuel 2WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,12.9,20.5,19.8,Standard Pickup Trucks 2WD,2003,-9250,,CLKUP,,,Bifuel (CNG),Natural Gas,120,, +27.4675,0.169012,0.0,0.0,11,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,BI-FUEL,-1,4600,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,19295,0,0,Ford,F150 Dual-fuel 4WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2,12.5,19.5,18.3,Standard Pickup Trucks 4WD,2003,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,120,, +0.258,0.0,0.0,0.0,87,0.0,0,0.0,0.0,39.0,0.0,0,-1,0.0,0.0,78,0.0,0,0.0,43.0,0.0,0.0,,,2-Wheel Drive,0,,-1,750,0,Electricity,Electricity,-1,-1,69,0.0,0,0.0,0.0,49.0,0.0,0,0,19296,0,0,Toyota,RAV4 EV,N,false,0,0,95,0.0,0.0,0.0,0.0,,124.8148,0.0,99.1176,0.0,Sport Utility Vehicle - 2WD,2003,8250,,,,,EV,,,50 KW DC, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19297,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.4,0.0,43.8,0.0,Minicompact Cars,2003,0,,,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19298,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5935,0.0,41.039,0.0,Minicompact Cars,2003,0,,2MODE,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19299,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6,0.0,47.1,0.0,Minicompact Cars,2003,1250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,193,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,1930,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1986,-5750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19300,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5,0.0,29.2,0.0,Large Cars,2003,-6750,T,3MODE CLKUP,,,,,,, +8.24025,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,19301,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),52.6,0.0,60.9,0.0,Compact Cars,2003,5000,,VLKUP,,,Hybrid,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,19302,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.8,0.0,Compact Cars,2003,5000,,SIL,,,Hybrid,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19303,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,37.6275,0.0,Two Seaters,2003,-2250,,4MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19304,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8362,0.0,39.8007,0.0,Minicompact Cars,2003,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19305,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,36.9,0.0,Minicompact Cars,2003,-1750,,3MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,19306,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,37.8,0.0,Subcompact Cars,2003,-1000,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19307,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9065,0.0,39.4373,0.0,Subcompact Cars,2003,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19308,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,38.7,0.0,Subcompact Cars,2003,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19309,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9766,0.0,38.2804,0.0,Compact Cars,2003,-2250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,1931,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1986,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19310,0,11,BMW,330xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,37.4,0.0,Compact Cars,2003,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19311,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5679,0.0,37.8656,0.0,Compact Cars,2003,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19312,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9315,0.0,39.0539,0.0,Compact Cars,2003,-1750,,SIL,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,19313,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9065,0.0,39.4373,0.0,Compact Cars,2003,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,19314,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,38.7,0.0,Compact Cars,2003,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,19315,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2667,0.0,37.2918,0.0,Compact Cars,2003,-1750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19316,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8362,0.0,39.8007,0.0,Compact Cars,2003,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19317,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2667,0.0,37.2918,0.0,Compact Cars,2003,-1750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19318,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,31.2,0.0,Compact Cars,2003,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19319,0,17,Toyota,Camry,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,36.0,0.0,Midsize Cars,2003,-1000,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,84,1932,0,0,Toyota,Tercel,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1986,3500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19320,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8362,0.0,39.8007,0.0,Small Station Wagons,2003,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19321,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2667,0.0,37.2918,0.0,Small Station Wagons,2003,-1750,,2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19322,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,0.0,23.7,0.0,Special Purpose Vehicles,2003,-9500,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19323,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3,0.0,23.6,0.0,Special Purpose Vehicles,2003,-9500,,2MODE,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19324,0,0,Aston Martin,DB AR1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.5042,0.0,23.0769,0.0,Two Seaters,2003,-13250,T,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,GUZZLER,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19325,0,0,Aston Martin,DB AR1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.3842,0.0,21.7169,0.0,Two Seaters,2003,-15500,T,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19326,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3716,0.0,37.8783,0.0,Two Seaters,2003,-2250,,4MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19327,0,0,Ferrari,360 Modena/Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.7,0.0,20.9,0.0,Two Seaters,2003,-13250,T,3MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,GUZZLER,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19328,0,15,Audi,RS6,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),16.9,0.0,28.2,0.0,Midsize Cars,2003,-6750,T,3MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19329,0,14,Mercedes-Benz,E55 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9423,0.0,26.6996,0.0,Midsize Cars,2003,-8000,T,EMS 2MODE CLKUP,,S,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,1933,0,0,Toyota,Tercel,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.7179,0.0,Subcompact Cars,1986,2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19330,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2486,0.0,30.234,0.0,Sport Utility Vehicle - 4WD,2003,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19331,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,31.2,0.0,Midsize Station Wagons,2003,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19332,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.4,0.0,31.0,0.0,Two Seaters,2004,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19333,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,31.1,0.0,Two Seaters,2004,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19334,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Two Seaters,2004,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19335,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.226,0.0,36.5285,0.0,Two Seaters,2004,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19336,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,34.2,0.0,Two Seaters,2004,-2250,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19337,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.7,0.0,Two Seaters,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19338,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.9,0.0,35.9,0.0,Two Seaters,2004,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19339,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4989,0.0,37.7865,0.0,Two Seaters,2004,-2250,,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59014,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,73,1934,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19340,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,37.5,0.0,Two Seaters,2004,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19341,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4578,0.0,34.858,0.0,Two Seaters,2004,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19342,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,37.6275,0.0,Two Seaters,2004,-2250,,4MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19343,0,0,Cadillac,XLR,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,31.7,0.0,Two Seaters,2004,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19344,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,32.5,0.0,Two Seaters,2004,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19345,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,35.9,0.0,Two Seaters,2004,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19346,0,0,Chrysler,Crossfire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2004,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19347,0,0,Chrysler,Crossfire,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2004,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19348,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.4,0.0,25.9,0.0,Two Seaters,2004,-11250,G,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19349,0,0,Ferrari,360 Modena/Spider/Challenge,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2004,-15500,G,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59014,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,1935,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1986,0,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19350,0,0,Ferrari,360 Modena/Spider/Challenge,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.7,0.0,20.9,0.0,Two Seaters,2004,-13250,G,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19351,0,0,Ferrari,360 Modena/Spider/Challenge,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.498,0.0,Two Seaters,2004,-15500,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19352,0,0,Ferrari,575 M Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.6,0.0,20.3,0.0,Two Seaters,2004,-15500,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19353,0,0,Ferrari,575 M Maranello,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.2498,0.0,21.4,0.0,Two Seaters,2004,-15500,G,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19354,8,0,Ford,Thunderbird,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,29.4872,0.0,Two Seaters,2004,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19355,8,0,Ford,Thunderbird,Y,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2,0.0,31.3,0.0,Two Seaters,2004,-4750,,CLKUP,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,VTEC,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,19356,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2004,6250,,EMS,,,Hybrid,,,, +6.328512,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,170.90384615384616,52,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,VTEC-E,-1,1050,0,Regular,Regular Gasoline,-1,-1,58,0.0,0,0.0,0.0,0.0,0.0,0,0,19357,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.1,0.0,84.1,0.0,Two Seaters,2004,6750,,SIL EMS,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,VTEC,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19358,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,32.5,0.0,Two Seaters,2004,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,19359,0,0,Lamborghini,L-140/141 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,19.7,0.0,Two Seaters,2004,-18250,G,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59017,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,1936,0,0,Volkswagen,Scirocco 16v,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1986,0,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19360,0,0,Lamborghini,L-140/141 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.6,0.0,21.9,0.0,Two Seaters,2004,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,19361,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.1,0.0,Two Seaters,2004,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,19362,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.6,0.0,Two Seaters,2004,-15500,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19363,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,28.8,0.0,Two Seaters,2004,-6750,G,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19364,0,0,Maserati,Spider Cambiocorsa/Spider GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.2,0.0,Two Seaters,2004,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19365,0,0,Maserati,Spider Cambiocorsa/Spider GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Two Seaters,2004,-13250,G,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19366,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,35.6,0.0,Two Seaters,2004,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19367,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,36.4,0.0,Two Seaters,2004,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19368,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,35.6,0.0,Two Seaters,2004,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,MIATA T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19369,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,33.0,0.0,Two Seaters,2004,-3000,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,12201,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1937,13,0,Bitter Gmbh and Co. Kg,Bitter SC,N,false,194,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Compact Cars,1986,-6750,T,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19370,7,0,Mercedes-Benz,SL500,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,29.1,0.0,Two Seaters,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19371,7,0,Mercedes-Benz,SL55 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7842,0.0,26.9499,0.0,Two Seaters,2004,-8000,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19372,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Two Seaters,2004,-9500,G,EMS 2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19373,10,0,Mercedes-Benz,SLK230,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,35.7,0.0,Two Seaters,2004,-1750,,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19374,10,0,Mercedes-Benz,SLK230,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,37.0,0.0,Two Seaters,2004,-2250,,EMS,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19375,10,0,Mercedes-Benz,SLK32 AMG,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,28.8,0.0,Two Seaters,2004,-5750,,EMS 2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19376,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,33.7,0.0,Two Seaters,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19377,10,0,Mercedes-Benz,SLK320,N,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,33.4,0.0,Two Seaters,2004,-3750,,EMS,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19378,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.0,0.0,33.6,0.0,Two Seaters,2004,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19379,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,32.9,0.0,Two Seaters,2004,-3750,,CLKUP,,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,12050,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1938,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Compact Cars,1986,-1000,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19380,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7691,0.0,33.3444,0.0,Two Seaters,2004,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19381,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9691,0.0,31.6691,0.0,Two Seaters,2004,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19382,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,37.3494,0.0,Two Seaters,2004,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19383,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6707,0.0,33.3481,0.0,Two Seaters,2004,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19384,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,33.8,0.0,Two Seaters,2004,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19385,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1479,0.0,33.6973,0.0,Two Seaters,2004,-4750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19386,0,0,Porsche,Carrera 2 911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7,0.0,29.4,0.0,Two Seaters,2004,-6750,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,10,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19387,0,0,Porsche,Carrera GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.5,0.0,20.2,0.0,Two Seaters,2004,-15500,G,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19388,0,0,Porsche,Turbo 2 911 Gt2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7976,0.0,29.9,0.0,Two Seaters,2004,-6750,G,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19389,2,0,Toyota,MR2,N,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,41.3,0.0,Two Seaters,2004,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1939,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1986,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19390,2,0,Toyota,MR2,N,false,46,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.0,0.0,42.1,0.0,Two Seaters,2004,1500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19391,6,0,Aston Martin,V12 Vanquish,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.5498,0.0,24.4963,0.0,Minicompact Cars,2004,-11250,G,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,65,19392,0,0,Audi,TT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.1,0.0,Minicompact Cars,2004,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,19393,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.226,0.0,36.5285,0.0,Minicompact Cars,2004,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,65,19394,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,0.0,34.1,0.0,Minicompact Cars,2004,-1750,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19395,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,34.5,0.0,Minicompact Cars,2004,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19396,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,33.9,0.0,Minicompact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19397,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0452,0.0,36.3753,0.0,Minicompact Cars,2004,-2250,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19398,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,36.5,0.0,Minicompact Cars,2004,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19399,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,32.5,0.0,Minicompact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49070,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,194,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1940,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19400,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1528,0.0,34.7518,0.0,Minicompact Cars,2004,-3000,,4MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19401,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,29.5431,0.0,Minicompact Cars,2004,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19402,9,0,BMW,M3 Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7191,0.0,28.1243,0.0,Minicompact Cars,2004,-6750,G,6MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19403,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Minicompact Cars,2004,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19404,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1723,0.0,Minicompact Cars,2004,-5750,G,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19405,9,0,Lexus,SC 430,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Minicompact Cars,2004,-4750,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19406,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5935,0.0,41.039,0.0,Minicompact Cars,2004,0,,2MODE,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19407,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6,0.0,47.1,0.0,Minicompact Cars,2004,1250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19408,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3913,0.0,43.773,0.0,Minicompact Cars,2004,0,,,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19409,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,39.2566,0.0,Minicompact Cars,2004,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1941,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Compact Cars,1986,-5250,T,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19410,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.6215,0.0,33.8784,0.0,Minicompact Cars,2004,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,GT/GTS-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19411,7,0,Mitsubishi,Eclipse Spyder,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.4,0.0,Minicompact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19412,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,36.8,0.0,Minicompact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,GT/GTS-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19413,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.7,0.0,34.7,0.0,Minicompact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19414,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Minicompact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19415,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1461,0.0,32.9291,0.0,Minicompact Cars,2004,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19416,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19417,5,0,Porsche,Carrera 2 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19418,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1461,0.0,32.9291,0.0,Minicompact Cars,2004,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19419,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1942,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Compact Cars,1986,-4250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19420,5,0,Porsche,Carrera 2 Coupe Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19421,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8938,0.0,29.7064,0.0,Minicompact Cars,2004,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19422,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19423,5,0,Porsche,Carrera 4 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19424,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8938,0.0,29.7064,0.0,Minicompact Cars,2004,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19425,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19426,5,0,Porsche,Carrera 4 S Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19427,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8938,0.0,29.7064,0.0,Minicompact Cars,2004,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19428,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19429,5,0,Porsche,Carrera 4 S Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7944,0.0,30.3,0.0,Minicompact Cars,2004,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,1943,0,13,BMW,7 Series,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Compact Cars,1986,-6250,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19430,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1461,0.0,32.9291,0.0,Minicompact Cars,2004,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19431,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19432,5,0,Porsche,Targa Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7784,0.0,33.6382,0.0,Minicompact Cars,2004,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19433,5,0,Porsche,Turbo 4 911,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0498,0.0,28.2986,0.0,Minicompact Cars,2004,-6750,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19434,5,0,Porsche,Turbo 4 911,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,28.3,0.0,Minicompact Cars,2004,-6750,G,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19435,5,0,Porsche,Turbo 4 911 Cab,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6994,0.0,27.7996,0.0,Minicompact Cars,2004,-8000,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19436,5,0,Porsche,Turbo 4 911 Cab,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,28.7,0.0,Minicompact Cars,2004,-6750,G,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19437,5,0,Porsche,Turbo 4 911 Cab Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6994,0.0,27.7996,0.0,Minicompact Cars,2004,-8000,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19438,5,0,Porsche,Turbo 4 911 Cab Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,28.7,0.0,Minicompact Cars,2004,-6750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19439,5,0,Porsche,Turbo 4 911 Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0498,0.0,28.2986,0.0,Minicompact Cars,2004,-6750,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,1944,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Compact Cars,1986,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19440,5,0,Porsche,Turbo 4 911 Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,28.3,0.0,Minicompact Cars,2004,-6750,G,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19441,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6419,0.0,39.8887,0.0,Minicompact Cars,2004,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19442,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,36.9,0.0,Minicompact Cars,2004,-1750,,3MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19443,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5459,0.0,38.938,0.0,Minicompact Cars,2004,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19444,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,39.4,0.0,Minicompact Cars,2004,-500,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,81,19445,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2,0.0,42.8,0.0,Subcompact Cars,2004,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,81,19446,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,39.9,0.0,Subcompact Cars,2004,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,19447,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),28.2,0.0,43.2,0.0,Subcompact Cars,2004,1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19448,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,38.6,0.0,Subcompact Cars,2004,-1000,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19449,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.645,0.0,34.415,0.0,Subcompact Cars,2004,-2250,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,83,1945,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Compact Cars,1986,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19450,0,10,Audi,A4 Cabriolet quattro,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3534,0.0,32.5077,0.0,Subcompact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19451,0,10,Audi,S4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5,0.0,27.2,0.0,Subcompact Cars,2004,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19452,0,10,Audi,S4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,29.7,0.0,Subcompact Cars,2004,-4750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19453,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Subcompact Cars,2004,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19454,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5624,0.0,34.9976,0.0,Subcompact Cars,2004,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19455,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3162,0.0,38.8644,0.0,Subcompact Cars,2004,-1750,,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19456,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.15,0.0,37.934,0.0,Subcompact Cars,2004,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19457,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4578,0.0,34.858,0.0,Subcompact Cars,2004,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19458,9,0,BMW,330ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Subcompact Cars,2004,-2250,,4MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19459,13,0,BMW,645ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,32.4,0.0,Subcompact Cars,2004,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,83,1946,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Compact Cars,1986,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19460,13,0,BMW,645ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1374,0.0,33.7,0.0,Subcompact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19461,13,0,BMW,645ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1978,0.0,31.2077,0.0,Subcompact Cars,2004,-5750,,4MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19462,10,0,BMW,645ci Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,29.4,0.0,Subcompact Cars,2004,-6750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19463,10,0,BMW,645ci Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Subcompact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19464,10,0,BMW,645ci Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5462,0.0,28.5247,0.0,Subcompact Cars,2004,-6750,G,4MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19465,9,0,BMW,M3,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.9,0.0,Subcompact Cars,2004,-5750,G,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19466,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3217,0.0,29.4788,0.0,Subcompact Cars,2004,-5750,G,6MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19467,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.604,0.0,34.5178,0.0,Subcompact Cars,2004,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19468,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,37.3,0.0,Subcompact Cars,2004,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19469,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,33.8,0.0,Subcompact Cars,2004,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4211,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,83,1947,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,36.0,0.0,Compact Cars,1986,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19470,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3644,0.0,37.4527,0.0,Subcompact Cars,2004,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,2 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19471,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8207,0.0,29.5282,0.0,Subcompact Cars,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4 VALVE,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19472,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Subcompact Cars,2004,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,2 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19473,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,31.9,0.0,Subcompact Cars,2004,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4 VALVE,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19474,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7499,0.0,32.6997,0.0,Subcompact Cars,2004,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19475,11,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6,0.0,30.4,0.0,Subcompact Cars,2004,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19476,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2,0.0,37.2,0.0,Subcompact Cars,2004,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19477,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,38.7,0.0,Subcompact Cars,2004,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19478,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,33.4,0.0,Subcompact Cars,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19479,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,33.7,0.0,Subcompact Cars,2004,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,83,1948,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1986,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19480,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.9,0.0,Subcompact Cars,2004,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19481,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Subcompact Cars,2004,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19482,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1723,0.0,Subcompact Cars,2004,-5750,G,2MODE CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19483,5,0,Maserati,Coupe Cambiocorsa/Coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.2,0.0,Subcompact Cars,2004,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19484,5,0,Maserati,Coupe Cambiocorsa/Coupe GT,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7263,0.0,21.5958,0.0,Subcompact Cars,2004,-13250,G,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19485,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,30.9,0.0,Subcompact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19486,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S4),20.3,0.0,31.7,0.0,Subcompact Cars,2004,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19487,10,0,Mercedes-Benz,CLK320,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,33.7,0.0,Subcompact Cars,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19488,9,0,Mercedes-Benz,CLK320 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,33.7,0.0,Subcompact Cars,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19489,10,0,Mercedes-Benz,CLK500,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,28.8,0.0,Subcompact Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,83,1949,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1986,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19490,9,0,Mercedes-Benz,CLK500 (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,28.8,0.0,Subcompact Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19491,10,0,Mercedes-Benz,CLK55 AMG,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,28.1,0.0,Subcompact Cars,2004,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19492,9,0,Mercedes-Benz,CLK55 AMG (Cabriolet),N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,28.1,0.0,Subcompact Cars,2004,-6750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,19493,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2734,0.0,35.2523,0.0,Subcompact Cars,2004,-1000,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,79,19494,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6764,0.0,39.7193,0.0,Subcompact Cars,2004,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,19495,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.274,0.0,35.2544,0.0,Subcompact Cars,2004,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,GTS-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,19496,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.4,0.0,Subcompact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,79,19497,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.1,0.0,Subcompact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,GTS-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,19498,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.9,0.0,34.6,0.0,Subcompact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,19499,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Subcompact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49061,"(CALIF) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,195,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,1950,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19500,9,0,Roush Performance,Stage 3 Mustang,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,32.1,0.0,Subcompact Cars,2004,-4750,,EMS,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19501,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4682,0.0,37.4357,0.0,Subcompact Cars,2004,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19502,12,0,Saab,9-3 Convertible,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,38.9,0.0,Subcompact Cars,2004,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19503,12,0,Saab,9-3 Convertible,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1702,0.0,35.6924,0.0,Subcompact Cars,2004,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19504,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.372,0.0,32.709,0.0,Subcompact Cars,2004,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19505,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9866,0.0,34.5379,0.0,Subcompact Cars,2004,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19506,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4921,0.0,36.0461,0.0,Subcompact Cars,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19507,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,36.2,0.0,Subcompact Cars,2004,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19508,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,30.5,0.0,Subcompact Cars,2004,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19509,12,0,Toyota,Camry Solara Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.5,0.0,37.1,0.0,Compact Cars,2004,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4240,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1951,13,15,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,41.0,0.0,Compact Cars,1986,0,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,78,19510,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1,0.0,46.0,0.0,Subcompact Cars,2004,2250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,19511,0,0,Toyota,Celica,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,42.8,0.0,Subcompact Cars,2004,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,19512,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.2,0.0,41.7,0.0,Subcompact Cars,2004,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,78,19513,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),27.6708,0.0,39.7484,0.0,Subcompact Cars,2004,-500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,86,19514,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.4,0.0,48.3,0.0,Subcompact Cars,2004,2750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,86,19515,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.3,0.0,Subcompact Cars,2004,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,19516,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,37.8,0.0,Subcompact Cars,2004,-1000,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19517,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.874,0.0,39.6363,0.0,Subcompact Cars,2004,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19518,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,38.7,0.0,Subcompact Cars,2004,-1000,,,T,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,12,85,19519,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.8691,0.0,59.583,0.0,Subcompact Cars,2004,3750,,,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4241,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,1952,13,15,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,43.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,12,85,19520,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),39.9,0.0,53.3,0.0,Subcompact Cars,2004,3000,,3MODE,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19521,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7465,0.0,38.5338,0.0,Subcompact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,19522,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5922,0.0,39.3543,0.0,Subcompact Cars,2004,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,86,19523,0,0,Volkswagen,R32,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,33.5,0.0,Subcompact Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19524,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,32.0,0.0,Subcompact Cars,2004,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19525,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,33.5,0.0,Subcompact Cars,2004,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19526,8,0,Volvo,C70 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,0.0,34.4482,0.0,Subcompact Cars,2004,-3750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19527,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0,0.0,37.3,0.0,Compact Cars,2004,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19528,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),25.3,0.0,40.5,0.0,Compact Cars,2004,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19529,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,37.8,0.0,Compact Cars,2004,-1000,,3MODE,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1953,13,15,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19530,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,40.1,0.0,Compact Cars,2004,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19531,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.3,0.0,35.9,0.0,Compact Cars,2004,-2250,,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19532,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,38.2,0.0,Compact Cars,2004,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19533,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4603,0.0,36.4194,0.0,Compact Cars,2004,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19534,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,33.851,0.0,Compact Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19535,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3534,0.0,32.5077,0.0,Compact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19536,0,13,Audi,S4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5324,0.0,27.1131,0.0,Compact Cars,2004,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19537,0,13,Audi,S4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5,0.0,30.3,0.0,Compact Cars,2004,-4750,,3MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19538,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5498,0.0,22.7,0.0,Compact Cars,2004,-13250,G,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19539,0,11,BMW,325i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Compact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,1954,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Compact Cars,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19540,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5624,0.0,34.9976,0.0,Compact Cars,2004,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19541,0,11,BMW,325i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3162,0.0,38.8644,0.0,Compact Cars,2004,-1750,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19542,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.7,0.0,Compact Cars,2004,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19543,0,11,BMW,325xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Compact Cars,2004,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19544,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.15,0.0,37.934,0.0,Compact Cars,2004,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19545,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4578,0.0,34.858,0.0,Compact Cars,2004,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19546,0,11,BMW,330i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Compact Cars,2004,-2250,,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19547,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,37.4,0.0,Compact Cars,2004,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19548,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1,0.0,32.2,0.0,Compact Cars,2004,-3750,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19549,0,12,Chevrolet,Aveo,Y,false,0,77,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9986,0.0,43.3,0.0,Compact Cars,2004,1500,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1955,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19550,0,12,Chevrolet,Aveo,Y,false,0,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2004,1750,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19551,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,43.5,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19552,13,13,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,47.0,0.0,Compact Cars,2004,1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19553,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19554,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19555,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2004,-1000,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19556,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2004,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19557,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.5,0.0,Compact Cars,2004,-2250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19558,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6041,0.0,36.8086,0.0,Compact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19559,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Compact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1956,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19560,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Compact Cars,2004,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19561,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8465,0.0,Compact Cars,2004,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19562,0,12,Daewoo,Kalos,N,false,0,77,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9986,0.0,43.3,0.0,Compact Cars,2004,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19563,0,12,Daewoo,Kalos,N,false,0,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2004,1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19564,0,12,Daewoo,Lacetti,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19565,0,12,Daewoo,Lacetti,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19566,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,41.3,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19567,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,45.7,0.0,Compact Cars,2004,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19568,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.5,0.0,Compact Cars,2004,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19569,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2004,-1000,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1957,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1986,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19570,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2004,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19571,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.5,0.0,Compact Cars,2004,-2250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19572,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6041,0.0,36.8086,0.0,Compact Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19573,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Compact Cars,2004,-2250,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,21,95,19574,0,9,Ford,Focus,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.1,0.0,41.6,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,21,95,19575,0,9,Ford,Focus,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4499,0.0,38.8499,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,2-VALVE,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,21,95,19576,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.5499,0.0,45.5991,0.0,Compact Cars,2004,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,21,95,19577,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.1,0.0,Compact Cars,2004,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,19578,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,35.7,0.0,Compact Cars,2004,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,21,95,19579,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6524,0.0,38.5002,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,1958,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1986,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,4-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,21,95,19580,0,9,Ford,Focus,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,41.8,0.0,Compact Cars,2004,1000,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC-E,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,19581,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.5,0.0,51.6,0.0,Compact Cars,2004,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,19582,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7,0.0,48.4,0.0,Compact Cars,2004,2500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,19583,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.9,0.0,49.3,0.0,Compact Cars,2004,2750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,19584,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.7,0.0,Compact Cars,2004,2750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,19585,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.1,0.0,47.4,0.0,Compact Cars,2004,2750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC-E,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,16,85,19586,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.2,0.0,56.2,0.0,Compact Cars,2004,4000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,19587,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,39.5,0.0,Compact Cars,2004,1000,,,,,,,,, +8.24025,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,19588,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),52.6,0.0,60.9,0.0,Compact Cars,2004,5000,,EMS,,,Hybrid,,,, +8.02051,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,LEAN BURN,-1,1350,0,Regular,Regular Gasoline,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,19589,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),53.2,0.0,60.5,0.0,Compact Cars,2004,5250,,EMS,,,Hybrid,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,1959,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.8889,0.0,42.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,19590,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.8,0.0,Compact Cars,2004,5000,,SIL EMS,,,Hybrid,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,LEAN BURN,-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,19591,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.2,0.0,64.9,0.0,Compact Cars,2004,5250,,SIL EMS,,,Hybrid,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,I4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19592,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5,0.0,45.4,0.0,Compact Cars,2004,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,I4,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19593,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,45.9,0.0,Compact Cars,2004,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19594,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.3,0.0,44.7,0.0,Compact Cars,2004,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19595,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,42.8,0.0,Compact Cars,2004,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19596,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,41.1,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19597,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,43.2,0.0,Compact Cars,2004,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19598,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8403,0.0,34.0073,0.0,Compact Cars,2004,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,COUPE,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19599,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8403,0.0,34.0073,0.0,Compact Cars,2004,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49071,"(CALIF) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,196,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-4750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,1960,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19600,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2931,0.0,32.7132,0.0,Compact Cars,2004,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19601,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3,0.0,30.3,0.0,Compact Cars,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,COUPE,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19602,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2931,0.0,32.7132,0.0,Compact Cars,2004,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19603,0,13,Infiniti,M45,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2791,0.0,30.037,0.0,Compact Cars,2004,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19604,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1489,0.0,32.8851,0.0,Compact Cars,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19605,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4499,0.0,32.3,0.0,Compact Cars,2004,-4750,,EMS 2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,25,88,19606,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,41.5,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,25,88,19607,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3398,0.0,40.296,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,25,88,19608,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,41.7,0.0,Compact Cars,2004,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,25,88,19609,0,9,Kia,Rio,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.02,0.0,40.2,0.0,Compact Cars,2004,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,1961,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,31.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,93,19610,0,10,Kia,Spectra 1.8L,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,38.0,0.0,Compact Cars,2004,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,93,19611,0,10,Kia,Spectra 1.8L,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,40.6,0.0,Compact Cars,2004,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,89,19612,0,10,Lexus,IS 300,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7385,0.0,31.5854,0.0,Compact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,89,19613,0,10,Lexus,IS 300,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.864,0.0,31.1669,0.0,Compact Cars,2004,-4750,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,95,19614,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.7,0.0,44.4951,0.0,Compact Cars,2004,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,95,19615,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.6074,0.0,43.3076,0.0,Compact Cars,2004,1500,,DC/FW,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,95,19616,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.6538,0.0,43.3076,0.0,Compact Cars,2004,1500,,DC/FW,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,19617,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2623,0.0,41.1099,0.0,Compact Cars,2004,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,95,19618,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),26.5801,0.0,36.8213,0.0,Compact Cars,2004,0,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19619,0,12,Mercedes-Benz,C240,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,33.0,0.0,Compact Cars,2004,-3750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,1962,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19620,0,12,Mercedes-Benz,C320 4matic Sedan,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Compact Cars,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19621,0,12,Mercedes-Benz,C230 Kompressor,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.5,0.0,39.1,0.0,Compact Cars,2004,-1000,,EMS 2MODE CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19622,0,12,Mercedes-Benz,C230 Kompressor,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,38.4,0.0,Compact Cars,2004,-1000,,EMS,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,19623,0,0,Mercedes-Benz,C230 Kompressor Sports Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.5,0.0,39.1,0.0,Compact Cars,2004,-1000,,EMS 2MODE CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,85,19624,0,0,Mercedes-Benz,C230 Kompressor Sports Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,38.4,0.0,Compact Cars,2004,-1000,,EMS,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19625,0,12,Mercedes-Benz,C240,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,31.1,0.0,Compact Cars,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19626,0,12,Mercedes-Benz,C240 4matic,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Compact Cars,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19627,0,12,Mercedes-Benz,C32 AMG,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,26.9,0.0,Compact Cars,2004,-6750,G,EMS 2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19628,0,12,Mercedes-Benz,C320,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,33.4,0.0,Compact Cars,2004,-3750,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,19629,0,0,Mercedes-Benz,C320 Sports Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,33.4,0.0,Compact Cars,2004,-3750,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,1963,0,14,Chevrolet,Nova,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,41.0256,0.0,Compact Cars,1986,1500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19630,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Compact Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19631,12,0,Mercedes-Benz,CL55 AMG,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7842,0.0,26.9499,0.0,Compact Cars,2004,-8000,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19632,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Compact Cars,2004,-9500,G,EMS 2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19633,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8344,0.0,39.7517,0.0,Compact Cars,2004,500,,CMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19634,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9796,0.0,44.917,0.0,Compact Cars,2004,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19635,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,35.8,0.0,Compact Cars,2004,-500,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19636,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.3,0.0,Compact Cars,2004,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19637,0,11,Mitsubishi,Lancer Evolution,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5,0.0,32.7,0.0,Compact Cars,2004,-3750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19638,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.4443,0.0,44.2777,0.0,Compact Cars,2004,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19639,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.2,0.0,Compact Cars,2004,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,1964,0,14,Chevrolet,Nova,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1986,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19640,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6127,0.0,35.7746,0.0,Compact Cars,2004,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19641,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,37.7,0.0,Compact Cars,2004,0,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19642,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,43.5,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19643,14,14,Oldsmobile,Alero,N,false,93,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,47.0,0.0,Compact Cars,2004,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19644,14,14,Oldsmobile,Alero,Y,false,93,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2004,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19645,0,14,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,43.5,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19646,0,14,Pontiac,Grand Am,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,47.0,0.0,Compact Cars,2004,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19647,0,14,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2004,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19648,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,27.4,0.0,Compact Cars,2004,-5750,G,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19649,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,36.7,0.0,Compact Cars,2004,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1965,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1986,-3250,,2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19650,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,43.5,0.0,Compact Cars,2004,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19651,12,13,Pontiac,Sunfire,N,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,47.0,0.0,Compact Cars,2004,1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207L,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19652,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6964,0.0,42.8495,0.0,Compact Cars,2004,500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19653,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1594,0.0,38.5881,0.0,Compact Cars,2004,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19654,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,35.4,0.0,Compact Cars,2004,-2250,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207L,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19655,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6272,0.0,38.4372,0.0,Compact Cars,2004,-500,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,B207R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19656,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),22.7037,0.0,37.5169,0.0,Compact Cars,2004,-2250,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19657,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,36.8,0.0,Compact Cars,2004,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19658,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5,0.0,40.8,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19659,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.5,0.0,41.5,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1966,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19660,14,15,Saturn,Ion,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,44.8718,0.0,Compact Cars,2004,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19661,0,12,Subaru,Legacy/Outback AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9641,0.0,35.1166,0.0,Compact Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19662,0,12,Subaru,Legacy/Outback AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7061,0.0,35.5227,0.0,Compact Cars,2004,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19663,0,12,Subaru,Legacy/Outback AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S4),22.7597,0.0,35.179,0.0,Compact Cars,2004,-1000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19664,0,12,Subaru,Legacy/Outback AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1238,0.0,32.7009,0.0,Compact Cars,2004,-3750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,19665,0,15,Suzuki,Aerio,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9527,0.0,39.5,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,19666,0,15,Suzuki,Aerio,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.625,0.0,Compact Cars,2004,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,91,19667,0,12,Suzuki,Aerio AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3994,0.0,36.6495,0.0,Compact Cars,2004,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19668,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19669,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2004,-500,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38035,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1967,0,11,Nissan,Stanza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Compact Cars,1986,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19670,0,12,Suzuki,Swift,N,false,0,77,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.9986,0.0,43.3,0.0,Compact Cars,2004,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19671,0,12,Suzuki,Swift,N,false,0,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2004,1750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19672,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8154,0.0,40.7781,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19673,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Compact Cars,2004,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19674,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,37.5,0.0,Compact Cars,2004,-1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,19675,0,14,Toyota,Corolla,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.2,0.0,48.3,0.0,Compact Cars,2004,2250,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,19676,0,14,Toyota,Corolla,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.9542,0.0,51.4497,0.0,Compact Cars,2004,3000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,19677,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.7399,0.0,50.3196,0.0,Compact Cars,2004,3000,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,19678,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.1987,0.0,54.5382,0.0,Compact Cars,2004,3750,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,18,88,19679,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.8692,0.0,59.5832,0.0,Compact Cars,2004,3750,,,T,,Diesel,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38035,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1968,0,11,Nissan,Stanza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Compact Cars,1986,1000,,,,,,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,18,88,19680,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),35.8652,0.0,55.6253,0.0,Compact Cars,2004,2750,,3MODE CLKUP,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,19681,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7465,0.0,38.5338,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,19682,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5922,0.0,39.3543,0.0,Compact Cars,2004,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,19683,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.874,0.0,39.6363,0.0,Compact Cars,2004,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,19684,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2528,0.0,37.2883,0.0,Compact Cars,2004,-1750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,19685,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.668,0.0,37.8585,0.0,Compact Cars,2004,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19686,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6419,0.0,39.8887,0.0,Compact Cars,2004,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19687,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,37.3,0.0,Compact Cars,2004,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19688,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2528,0.0,37.2883,0.0,Compact Cars,2004,-1750,,2MODE CLKUP,T,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,19689,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.8692,0.0,59.5832,0.0,Compact Cars,2004,3750,,,T,,Diesel,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,1969,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,50.0,0.0,Compact Cars,1986,2750,,SIL,,,,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,19690,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),35.8652,0.0,55.6253,0.0,Compact Cars,2004,2750,,3MODE CLKUP,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19691,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7465,0.0,38.5338,0.0,Compact Cars,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19692,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5922,0.0,39.3543,0.0,Compact Cars,2004,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19693,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.668,0.0,37.8585,0.0,Compact Cars,2004,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19694,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,38.8,0.0,Compact Cars,2004,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19695,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3949,0.0,36.4516,0.0,Compact Cars,2004,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19696,0,11,Volkswagen,Passat 4motion,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6969,0.0,33.5505,0.0,Compact Cars,2004,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19697,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,31.2,0.0,Compact Cars,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19698,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Compact Cars,2004,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19699,0,13,Volvo,S40 FWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.1807,0.0,37.7741,0.0,Compact Cars,2004,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,197,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,85,1970,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Compact Cars,1986,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19700,0,16,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.3,0.0,38.6,0.0,Compact Cars,2004,-1750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19701,0,16,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,39.8,0.0,Compact Cars,2004,-1000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19702,0,14,Volvo,S60 AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3022,0.0,35.0035,0.0,Compact Cars,2004,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19703,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,34.7,0.0,Compact Cars,2004,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19704,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,35.7,0.0,Compact Cars,2004,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19705,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3819,0.0,39.2349,0.0,Compact Cars,2004,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19706,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.0,0.0,Compact Cars,2004,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19707,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.0,0.0,38.4,0.0,Compact Cars,2004,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19708,0,14,Volvo,S60 R AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,32.1,0.0,Compact Cars,2004,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19709,0,14,Volvo,S60 R AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),19.886,0.0,32.3738,0.0,Compact Cars,2004,-3750,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,1971,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1986,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19710,0,15,Acura,3.5RL,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,30.5,0.0,Midsize Cars,2004,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19711,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,38.5,0.0,Midsize Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19712,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,36.5,0.0,Midsize Cars,2004,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19713,0,15,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.645,0.0,34.415,0.0,Midsize Cars,2004,-2250,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19714,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,32.5,0.0,Midsize Cars,2004,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19715,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8916,0.0,32.2042,0.0,Midsize Cars,2004,-3750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19716,0,15,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3534,0.0,32.5077,0.0,Midsize Cars,2004,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19717,0,15,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1,0.0,31.1,0.0,Midsize Cars,2004,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,19718,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Midsize Cars,2004,-15500,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19719,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.0,0.0,36.2,0.0,Midsize Cars,2004,-3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,1972,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19720,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.2,0.0,Midsize Cars,2004,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19721,0,14,BMW,530i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.15,0.0,37.934,0.0,Midsize Cars,2004,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19722,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Midsize Cars,2004,-2250,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19723,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4981,0.0,36.8989,0.0,Midsize Cars,2004,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19724,0,14,BMW,545i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,32.4,0.0,Midsize Cars,2004,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19725,0,14,BMW,545i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1374,0.0,33.7,0.0,Midsize Cars,2004,-3750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19726,0,14,BMW,545i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1978,0.0,31.2077,0.0,Midsize Cars,2004,-5750,,4MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19727,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,38.2,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19728,0,17,Buick,Regal,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19729,0,17,Buick,Regal,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Midsize Cars,2004,-3000,,CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,85,1973,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19730,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1782,0.0,32.4784,0.0,Midsize Cars,2004,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19731,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,33.6,0.0,Midsize Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19732,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.513,0.0,35.2989,0.0,Midsize Cars,2004,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19733,0,13,Cadillac,CTS-V,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,32.0513,0.0,Midsize Cars,2004,-5750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19734,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.9,0.0,Midsize Cars,2004,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,STS/DTS,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19735,0,15,Cadillac,Seville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.9,0.0,Midsize Cars,2004,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19736,0,13,Chevrolet,Epica,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.1997,0.0,Midsize Cars,2004,-1750,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19737,0,16,Chevrolet,Classic,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6,0.0,43.5,0.0,Midsize Cars,2004,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19738,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.7,0.0,Midsize Cars,2004,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19739,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2,0.0,40.9,0.0,Midsize Cars,2004,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,85,1974,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Compact Cars,1986,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19740,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,40.8,0.0,Midsize Cars,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19741,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19742,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Midsize Cars,2004,-3000,,CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19743,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2004,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19744,0,13,Daewoo,Magnus,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.1997,0.0,Midsize Cars,2004,-1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19745,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2004,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19746,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,34.8465,0.0,Midsize Cars,2004,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19747,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.5646,0.0,43.1985,0.0,Midsize Cars,2004,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19748,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6566,0.0,42.9768,0.0,Midsize Cars,2004,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19749,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.1347,0.0,37.9075,0.0,Midsize Cars,2004,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,1975,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1986,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19750,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,37.9,0.0,Midsize Cars,2004,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,95,19751,0,0,Hyundai,Elantra Hatchback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1,0.0,44.0,0.0,Midsize Cars,2004,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19752,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.5494,0.0,Midsize Cars,2004,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19753,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,39.1,0.0,Midsize Cars,2004,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19754,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2958,0.0,35.2499,0.0,Midsize Cars,2004,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19755,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.7,0.0,Midsize Cars,2004,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19756,0,15,Hyundai,XG350,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8471,0.0,33.0988,0.0,Midsize Cars,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19757,0,15,Infiniti,I35,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6393,0.0,33.5396,0.0,Midsize Cars,2004,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19758,0,14,Infiniti,Q45,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2791,0.0,30.037,0.0,Midsize Cars,2004,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19759,0,12,Jaguar,S-Type 3.0 Litre,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1995,0.0,33.4997,0.0,Midsize Cars,2004,-3750,,2MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,1976,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,50.0,0.0,Compact Cars,1986,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19760,0,12,Jaguar,S-Type 3.0 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.2,0.0,Midsize Cars,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19761,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Midsize Cars,2004,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19762,0,12,Jaguar,S-Type R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2488,0.0,31.2499,0.0,Midsize Cars,2004,-4750,,2MODE CLKUP,,S,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,98,19763,0,12,Kia,Spectra 2.0L,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1379,0.0,44.0149,0.0,Midsize Cars,2004,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,98,19764,0,12,Kia,Spectra 2.0L,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9639,0.0,40.8051,0.0,Midsize Cars,2004,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19765,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9474,0.0,38.4499,0.0,Midsize Cars,2004,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19766,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,38.4,0.0,Midsize Cars,2004,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19767,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.449,0.0,34.9997,0.0,Midsize Cars,2004,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19768,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,35.6,0.0,Midsize Cars,2004,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19769,0,15,Lexus,ES 330,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6,0.0,37.5,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,1977,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19770,0,15,Lexus,GS 300/GS 430,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9726,0.0,31.8922,0.0,Midsize Cars,2004,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19771,0,15,Lexus,GS 300/GS 430,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Midsize Cars,2004,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19772,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,33.2,0.0,Midsize Cars,2004,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19773,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,34.9,0.0,Midsize Cars,2004,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19774,0,13,Lincoln,LS,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,29.4872,0.0,Midsize Cars,2004,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19775,0,13,Lincoln,LS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2,0.0,31.3,0.0,Midsize Cars,2004,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19776,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,33.6,0.0,Midsize Cars,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4-VALVE,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19777,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,34.6,0.0,Midsize Cars,2004,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,22,96,19778,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.024,0.0,40.8859,0.0,Midsize Cars,2004,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,96,19779,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),24.8486,0.0,36.5359,0.0,Midsize Cars,2004,-500,,DC/FW,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3131,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,1978,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,36.0,0.0,Compact Cars,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,96,19780,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4622,0.0,33.866,0.0,Midsize Cars,2004,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,96,19781,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8905,0.0,33.7929,0.0,Midsize Cars,2004,-2500,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19782,0,14,Mercedes-Benz,E320,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Midsize Cars,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19783,0,14,Mercedes-Benz,E320 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,31.2,0.0,Midsize Cars,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19784,0,14,Mercedes-Benz,E500,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,30.5,0.0,Midsize Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19785,0,14,Mercedes-Benz,E500 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8,0.0,26.1,0.0,Midsize Cars,2004,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19786,0,14,Mercedes-Benz,E55 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7842,0.0,26.9499,0.0,Midsize Cars,2004,-8000,G,EMS 2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19787,0,14,Mitsubishi,Diamante Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,32.1,0.0,Midsize Cars,2004,-4750,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19788,0,14,Mitsubishi,Diamante Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),18.9,0.0,32.1,0.0,Midsize Cars,2004,-4750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19789,0,13,Mitsubishi,Galant,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6,0.0,38.3279,0.0,Midsize Cars,2004,0,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3132,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,1979,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19790,0,13,Mitsubishi,Galant,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6222,0.0,34.1639,0.0,Midsize Cars,2004,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19791,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2804,0.0,37.2809,0.0,Midsize Cars,2004,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19792,0,16,Nissan,Altima,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1984,0.0,38.5,0.0,Midsize Cars,2004,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19793,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3,0.0,Midsize Cars,2004,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19794,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,33.2,0.0,Midsize Cars,2004,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19795,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4499,0.0,35.1,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19796,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,37.8,0.0,Midsize Cars,2004,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19797,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0,0.0,36.4,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19798,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,2-MODE,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19799,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.4,0.0,Midsize Cars,2004,-3750,,CLKUP,,S,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2011,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,77,198,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,51.0,0.0,Subcompact Cars,1985,2750,,SIL,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,16,85,1980,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Compact Cars,1986,3250,,SIL,,,Diesel,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19800,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Midsize Cars,2004,-3000,,CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19801,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,0.0,23.8,0.0,Midsize Cars,2004,-11250,G,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235L,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19802,0,16,Saab,9-5,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.09,0.0,38.2832,0.0,Midsize Cars,2004,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19803,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,37.3,0.0,Midsize Cars,2004,-2250,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235L,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19804,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.0226,0.0,36.3744,0.0,Midsize Cars,2004,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19805,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2499,0.0,35.5494,0.0,Midsize Cars,2004,-3000,,2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19806,0,18,Saturn,L300,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.7,0.0,Midsize Cars,2004,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19807,0,18,Saturn,L300,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5222,0.0,35.6298,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19808,0,13,Suzuki,Verona,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,35.1997,0.0,Midsize Cars,2004,-1750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19809,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8154,0.0,40.7781,0.0,Midsize Cars,2004,500,,CLKUP,,,,,,, +10.038726,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(NO-CAT),-1,1550,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,16,85,1981,0,0,Ford,Escort FS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.0,0.0,63.0,0.0,Compact Cars,1986,4250,,SIL,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19810,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Midsize Cars,2004,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19811,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,37.1,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19812,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6207,0.0,37.4039,0.0,Midsize Cars,2004,-1000,,CLKUP,,,,,,, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,19813,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2004,6000,,,,,Hybrid,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19814,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Cars,2004,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19815,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Cars,2004,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19816,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Cars,2004,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19817,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Cars,2004,-3000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19818,0,15,Volvo,S80 AWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3022,0.0,35.0035,0.0,Midsize Cars,2004,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19819,0,15,Volvo,S80/S80 Premier,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,35.7,0.0,Midsize Cars,2004,-2250,,CLKUP,T,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,1982,13,13,Ford,Tempo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Compact Cars,1986,3250,,SIL,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19820,0,15,Volvo,S80/S80 Premier,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.3732,0.0,Midsize Cars,2004,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19821,0,15,Volvo,S80/S80 Premier,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),20.8,0.0,33.5,0.0,Midsize Cars,2004,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19822,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,31.2,0.0,Large Cars,2004,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,19823,0,13,Bentley,Arnage LWB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Large Cars,2004,-15500,G,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19824,0,18,BMW,745i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Large Cars,2004,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19825,0,18,BMW,745li,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Large Cars,2004,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19826,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3486,0.0,28.9986,0.0,Large Cars,2004,-6750,G,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19827,0,18,Buick,LeSabre,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19828,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19829,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Large Cars,2004,-3000,,CLKUP,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3330,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,1983,13,13,Ford,Tempo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19830,0,0,Cadillac,Armored Deville,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6037,0.0,25.0628,0.0,Large Cars,2004,-6250,G,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19831,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.9,0.0,Large Cars,2004,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,STS/DTS,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19832,0,19,Cadillac,DeVille,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.9,0.0,Large Cars,2004,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19833,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,25.0,0.0,Large Cars,2004,-6250,G,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19834,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,27.3,0.0,Large Cars,2004,-5250,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19835,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,40.8,0.0,Large Cars,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19836,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Large Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19837,0,18,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Large Cars,2004,-3000,,CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,23,105,19838,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,38.4615,0.0,Large Cars,2004,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19839,0,17,Chrysler,300 M,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.4441,0.0,Large Cars,2004,-2500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3331,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,1984,13,13,Ford,Tempo,Y,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.8974,0.0,Compact Cars,1986,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19840,0,19,Chrysler,Concorde/LHS,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.3,0.0,Large Cars,2004,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19841,0,19,Chrysler,Concorde/LHS,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,34.9,0.0,Large Cars,2004,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19842,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,37.3,0.0,Large Cars,2004,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19843,0,18,Dodge,Intrepid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,34.9,0.0,Large Cars,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19844,0,18,Dodge,Intrepid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.4441,0.0,Large Cars,2004,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19845,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8006,0.0,31.8896,0.0,Large Cars,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19846,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,34.6,0.0,Large Cars,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19847,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,33.6,0.0,Large Cars,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19848,0,16,Jaguar,Vdp 4.2 Litre,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Large Cars,2004,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19849,0,16,Jaguar,XJ8 4.2 Litre,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Large Cars,2004,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3351,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,1985,13,13,Ford,Tempo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Compact Cars,1986,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19850,0,16,Jaguar,XJR 4.2 Litre,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2488,0.0,31.2499,0.0,Large Cars,2004,-4750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19851,0,15,Kia,Amanti,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.339,0.0,31.7493,0.0,Large Cars,2004,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19852,0,16,Lexus,LS 430,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8381,0.0,32.0673,0.0,Large Cars,2004,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19853,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8006,0.0,31.8896,0.0,Large Cars,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19854,0,21,Mercury,Marauder,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,29.8,0.0,Large Cars,2004,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19855,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8006,0.0,31.8896,0.0,Large Cars,2004,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19856,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.3,0.0,22.2,0.0,Large Cars,2004,-11250,,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19857,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.1,0.0,22.0,0.0,Large Cars,2004,-11250,,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19858,0,15,Mercedes-Benz,S430,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.6,0.0,33.5,0.0,Large Cars,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19859,0,15,Mercedes-Benz,S430 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,28.5,0.0,Large Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3363,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1986,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1986,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19860,0,15,Mercedes-Benz,S500,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Large Cars,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19861,0,15,Mercedes-Benz,S500 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,27.6,0.0,Large Cars,2004,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19862,0,15,Mercedes-Benz,S55 AMG,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7842,0.0,26.9499,0.0,Large Cars,2004,-8000,G,EMS 2MODE CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19863,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,23.9,0.0,Large Cars,2004,-11250,G,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19864,0,16,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2004,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19865,0,16,Pontiac,Bonneville,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4725,0.0,35.7807,0.0,Large Cars,2004,-3000,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19866,0,16,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,2004,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19867,0,16,Toyota,Avalon,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,37.3,0.0,Large Cars,2004,-500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19868,0,13,Volkswagen,Phaeton,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4,0.0,28.5986,0.0,Large Cars,2004,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19869,0,13,Volkswagen,Phaeton,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S5),13.6,0.0,24.0,0.0,Large Cars,2004,-11250,G,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3360,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1987,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1986,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19870,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6,0.0,38.9,0.0,Small Station Wagons,2004,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19871,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4603,0.0,36.4194,0.0,Small Station Wagons,2004,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19872,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,33.851,0.0,Small Station Wagons,2004,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19873,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3534,0.0,32.5077,0.0,Small Station Wagons,2004,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19874,0,28,Audi,S4 Avant,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5324,0.0,27.1131,0.0,Small Station Wagons,2004,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19875,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5,0.0,30.3,0.0,Small Station Wagons,2004,-4750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19876,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Small Station Wagons,2004,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19877,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5624,0.0,34.9976,0.0,Small Station Wagons,2004,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19878,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3162,0.0,38.8644,0.0,Small Station Wagons,2004,-1750,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19879,0,26,BMW,325xi Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,33.7,0.0,Small Station Wagons,2004,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1988,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1986,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19880,0,26,BMW,325xi Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Small Station Wagons,2004,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19881,0,31,Mercedes-Benz,C240 (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,32.6,0.0,Small Station Wagons,2004,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19882,0,31,Mercedes-Benz,C240 (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,31.5,0.0,Small Station Wagons,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19883,0,31,Mercedes-Benz,C240 4matic (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Small Station Wagons,2004,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19884,0,31,Mercedes-Benz,C320 4matic (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Small Station Wagons,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,25,94,19885,0,0,Mitsubishi,Lancer Sportback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9759,0.0,36.4735,0.0,Small Station Wagons,2004,-500,,CMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19886,0,22,Pontiac,Vibe,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,43.0,0.0,Small Station Wagons,2004,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19887,0,22,Pontiac,Vibe,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2004,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19888,0,22,Pontiac,Vibe,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.7,0.0,46.2,0.0,Small Station Wagons,2004,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19889,0,22,Pontiac,Vibe,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.7,0.0,40.6,0.0,Small Station Wagons,2004,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3603,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1989,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19890,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.372,0.0,32.709,0.0,Small Station Wagons,2004,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19891,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9866,0.0,34.5379,0.0,Small Station Wagons,2004,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19892,0,18,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4921,0.0,36.0461,0.0,Small Station Wagons,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19893,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1706,0.0,35.6869,0.0,Small Station Wagons,2004,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19894,0,13,Suzuki,Aerio SX,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,39.1,0.0,Small Station Wagons,2004,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19895,0,13,Suzuki,Aerio SX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6,0.0,Small Station Wagons,2004,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19896,0,10,Suzuki,Aerio SX AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Small Station Wagons,2004,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19897,0,22,Toyota,Matrix,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6441,0.0,42.8397,0.0,Small Station Wagons,2004,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19898,0,22,Toyota,Matrix,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2004,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,19899,0,22,Toyota,Matrix,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.7,0.0,46.2,0.0,Small Station Wagons,2004,2250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,77,199,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,51.0,0.0,Subcompact Cars,1985,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3707,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1990,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,19900,0,22,Toyota,Matrix,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5489,0.0,40.4276,0.0,Small Station Wagons,2004,-500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19901,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.2,0.0,43.8,0.0,Small Station Wagons,2004,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19902,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.3,0.0,45.1,0.0,Small Station Wagons,2004,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19903,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6419,0.0,39.8887,0.0,Small Station Wagons,2004,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19904,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2528,0.0,37.2883,0.0,Small Station Wagons,2004,-1750,,2MODE CLKUP,T,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1700,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,19905,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.5,0.0,60.2,0.0,Small Station Wagons,2004,3500,,,T,,Diesel,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,19906,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),35.8652,0.0,55.6253,0.0,Small Station Wagons,2004,2750,,3MODE CLKUP,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19907,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.6754,0.0,38.2619,0.0,Small Station Wagons,2004,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19908,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5459,0.0,38.938,0.0,Small Station Wagons,2004,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,33,89,19909,0,0,Volvo,V40,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.1807,0.0,37.7741,0.0,Small Station Wagons,2004,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,26060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,1991,0,14,Acura,Legend,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19910,0,36,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3534,0.0,32.5077,0.0,Midsize Station Wagons,2004,-3750,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19911,0,36,Ford,Focus Station Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4499,0.0,38.8499,0.0,Midsize Station Wagons,2004,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,19912,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.7,0.0,45.0499,0.0,Midsize Station Wagons,2004,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,4-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19913,0,36,Ford,Focus Station Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,42.1,0.0,Midsize Station Wagons,2004,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,4-VALVE,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19914,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6524,0.0,38.5002,0.0,Midsize Station Wagons,2004,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,4-VALVE,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,19915,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,41.8,0.0,Midsize Station Wagons,2004,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19916,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5995,0.0,32.8973,0.0,Midsize Station Wagons,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19917,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.9,0.0,Midsize Station Wagons,2004,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19918,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5995,0.0,32.8973,0.0,Midsize Station Wagons,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2-VALVE,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19919,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.9,0.0,Midsize Station Wagons,2004,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,26060,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,1992,0,14,Acura,Legend,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19920,0,34,Mazda,6 Sport Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4622,0.0,33.866,0.0,Midsize Station Wagons,2004,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19921,0,34,Mazda,6 Sport Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8905,0.0,33.7929,0.0,Midsize Station Wagons,2004,-2500,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19922,0,41,Mercedes-Benz,E320 (Wagon),Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.1,0.0,Midsize Station Wagons,2004,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19923,0,41,Mercedes-Benz,E320 4matic (Wagon),Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,29.9,0.0,Midsize Station Wagons,2004,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19924,0,41,Mercedes-Benz,E500 (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Midsize Station Wagons,2004,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19925,0,41,Mercedes-Benz,E500 4matic (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,27.6,0.0,Midsize Station Wagons,2004,-6750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235L,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19926,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.428,0.0,35.8763,0.0,Midsize Station Wagons,2004,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19927,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.8,0.0,Midsize Station Wagons,2004,-2250,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,LPT,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19928,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,37.7,0.0,Midsize Station Wagons,2004,-500,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235L,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19929,0,37,Saab,9-5 Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4566,0.0,36.6456,0.0,Midsize Station Wagons,2004,-1750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,34101,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1993,0,25,Lambda Control Systems,300E,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Compact Cars,1986,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B235R,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19930,0,37,Saab,9-5 Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5471,0.0,35.6482,0.0,Midsize Station Wagons,2004,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,LPT,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19931,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.449,0.0,35.8955,0.0,Midsize Station Wagons,2004,-1750,,2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,19932,0,34,Saturn,LW300,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,43.7,0.0,Midsize Station Wagons,2004,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19933,0,34,Saturn,LW300,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5222,0.0,35.6298,0.0,Midsize Station Wagons,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19934,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8985,0.0,35.518,0.0,Midsize Station Wagons,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19935,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.684,0.0,35.4988,0.0,Midsize Station Wagons,2004,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19936,0,34,Subaru,Legacy/Outback Wagon AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),22.2299,0.0,33.979,0.0,Midsize Station Wagons,2004,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19937,0,34,Subaru,Legacy/Outback Wagon AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1238,0.0,32.7009,0.0,Midsize Station Wagons,2004,-3750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19938,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Station Wagons,2004,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19939,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Station Wagons,2004,-1750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3363,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,1994,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1986,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19940,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Station Wagons,2004,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,19941,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Station Wagons,2004,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,19942,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,38.8,0.0,Midsize Station Wagons,2004,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,19943,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3949,0.0,36.4516,0.0,Midsize Station Wagons,2004,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19944,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6969,0.0,33.5505,0.0,Midsize Station Wagons,2004,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19945,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,31.2,0.0,Midsize Station Wagons,2004,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19946,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Midsize Station Wagons,2004,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,19947,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3022,0.0,35.0035,0.0,Midsize Station Wagons,2004,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,19948,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,33.5,0.0,Midsize Station Wagons,2004,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,19949,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,32.0,0.0,Midsize Station Wagons,2004,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3360,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1995,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1986,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,36,98,19950,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9624,0.0,38.7734,0.0,Midsize Station Wagons,2004,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,19951,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.0,0.0,Midsize Station Wagons,2004,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,19952,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,35.7,0.0,Midsize Station Wagons,2004,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,19953,0,0,Volvo,V70 R AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,32.1,0.0,Midsize Station Wagons,2004,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,19954,0,0,Volvo,V70 R AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.886,0.0,32.3738,0.0,Midsize Station Wagons,2004,-3750,,2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19955,0,0,Chevrolet,SSR Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.6,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19956,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19957,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0791,0.0,25.6734,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19958,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.7,0.0,Standard Pickup Trucks 2WD,2004,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19959,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,1996,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19960,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2004,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19961,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.476,0.0,24.569,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19962,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.4499,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19963,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.6728,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19964,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7537,0.0,34.0611,0.0,Standard Pickup Trucks 2WD,2004,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19965,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4769,0.0,30.2926,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19966,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4472,0.0,32.3041,0.0,Standard Pickup Trucks 2WD,2004,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19967,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19968,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,34.1,0.0,Standard Pickup Trucks 2WD,2004,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,19969,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,30.2,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3603,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1997,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19970,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6648,0.0,28.2051,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19971,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8327,0.0,28.0134,0.0,Standard Pickup Trucks 2WD,2004,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19972,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6717,0.0,25.5725,0.0,Standard Pickup Trucks 2WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19973,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2475,0.0,25.5,0.0,Standard Pickup Trucks 2WD,2004,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19974,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.9,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19975,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6323,0.0,26.8933,0.0,Standard Pickup Trucks 2WD,2004,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19976,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3907,0.0,23.8747,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19977,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.6,0.0,23.8465,0.0,Standard Pickup Trucks 2WD,2004,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,19978,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0979,0.0,23.0769,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,19979,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.4734,0.0,18.7,0.0,Standard Pickup Trucks 2WD,2004,-18250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3707,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,1998,15,0,Mercury,Cougar,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19980,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4994,0.0,24.5499,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19981,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,26.1,0.0,Standard Pickup Trucks 2WD,2004,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19982,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6656,0.0,24.5467,0.0,Standard Pickup Trucks 2WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19983,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6879,0.0,24.493,0.0,Standard Pickup Trucks 2WD,2004,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,SUPERCHRGD,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,19984,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.1,0.0,Standard Pickup Trucks 2WD,2004,-11250,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,19985,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2416,0.0,33.4997,0.0,Standard Pickup Trucks 2WD,2004,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,19986,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1535,0.0,37.1214,0.0,Standard Pickup Trucks 2WD,2004,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19987,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5499,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19988,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8998,0.0,29.1004,0.0,Standard Pickup Trucks 2WD,2004,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19989,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,1999,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1986,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,19990,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,19991,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.2,0.0,Standard Pickup Trucks 2WD,2004,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19992,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19993,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19994,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.7,0.0,Standard Pickup Trucks 2WD,2004,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19995,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,25.9,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,19996,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2004,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,19997,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4129,0.0,24.4969,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,19998,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.4499,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,19999,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.661,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,12710,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2,0,0,Bertone,X1/9,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1985,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,(GUZZLER) (TURBO),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,25.0,0.0,Two Seaters,1985,-7750,T,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,77,200,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Subcompact Cars,1985,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,2000,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,50.0,0.0,Compact Cars,1986,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20000,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8311,0.0,34.0417,0.0,Standard Pickup Trucks 2WD,2004,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20001,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4841,0.0,30.3013,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20002,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4338,0.0,32.3312,0.0,Standard Pickup Trucks 2WD,2004,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20003,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20004,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,34.1,0.0,Standard Pickup Trucks 2WD,2004,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20005,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,30.2,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20006,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2416,0.0,33.4997,0.0,Standard Pickup Trucks 2WD,2004,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20007,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1535,0.0,37.1214,0.0,Standard Pickup Trucks 2WD,2004,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20008,0,0,Mazda,B3000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5499,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20009,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8061,0.0,29.2835,0.0,Standard Pickup Trucks 2WD,2004,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,2001,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20010,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20011,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.2,0.0,Standard Pickup Trucks 2WD,2004,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20012,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2004,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20013,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,34.1,0.0,Standard Pickup Trucks 2WD,2004,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20014,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.2418,0.0,Standard Pickup Trucks 2WD,2004,-8000,,CLKUP,T,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20015,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,27.1846,0.0,Standard Pickup Trucks 2WD,2004,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20016,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,23.5,0.0,Standard Pickup Trucks 2WD,2004,-8000,,,T,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20017,0,0,Nissan,Frontier V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8446,0.0,25.9356,0.0,Standard Pickup Trucks 2WD,2004,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20018,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4739,0.0,23.7416,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20019,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0148,0.0,31.7429,0.0,Standard Pickup Trucks 2WD,2004,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3133,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,2002,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.8974,0.0,Compact Cars,1986,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20020,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,34.9,0.0,Standard Pickup Trucks 2WD,2004,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20021,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7807,0.0,27.5731,0.0,Standard Pickup Trucks 2WD,2004,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20022,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4003,0.0,25.7003,0.0,Standard Pickup Trucks 2WD,2004,-5250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20023,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2004,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20024,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2138,0.0,25.0204,0.0,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20025,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2,0.0,25.3,0.0,Standard Pickup Trucks 2WD,2004,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20026,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7921,0.0,22.6836,0.0,Standard Pickup Trucks 2WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20027,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20028,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2004,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20029,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.3,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3132,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,2003,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20030,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2004,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20031,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20032,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2004,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20033,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Standard Pickup Trucks 4WD,2004,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20034,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,23.9,0.0,Standard Pickup Trucks 4WD,2004,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20035,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0958,0.0,23.6312,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20036,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.9822,0.0,23.7233,0.0,Standard Pickup Trucks 4WD,2004,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20037,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20038,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4,0.0,22.6,0.0,Standard Pickup Trucks 4WD,2004,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20039,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2442,0.0,23.2924,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,16,85,2004,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Compact Cars,1986,3250,,SIL,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20040,0,0,Chevrolet,Silverado 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,21.2,0.0,Standard Pickup Trucks 4WD,2004,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20041,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20042,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20043,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6002,0.0,25.641,0.0,Standard Pickup Trucks 4WD,2004,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20044,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6243,0.0,23.6012,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20045,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,23.9,0.0,Standard Pickup Trucks 4WD,2004,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20046,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0071,0.0,21.7949,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20047,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.9993,0.0,22.2898,0.0,Standard Pickup Trucks 4WD,2004,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20048,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5598,0.0,22.3367,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20049,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9535,0.0,23.8223,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,2005,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Compact Cars,1986,3250,,SIL,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20050,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2004,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20051,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7498,0.0,23.5187,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20052,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6895,0.0,20.2486,0.0,Standard Pickup Trucks 4WD,2004,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,3-VALVE,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20053,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8063,0.0,23.5,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20054,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2004,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20055,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,26.3,0.0,Standard Pickup Trucks 4WD,2004,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20056,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20057,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,23.8,0.0,Standard Pickup Trucks 4WD,2004,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20058,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20059,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2004,-2500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3330,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2006,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20060,0,0,GMC,Canyon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.3,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20061,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2004,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20062,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20063,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2004,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20064,0,0,GMC,Canyon Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Standard Pickup Trucks 4WD,2004,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20065,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,23.9,0.0,Standard Pickup Trucks 4WD,2004,-5250,,CLKUP,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20066,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7327,0.0,23.0335,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20067,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.8779,0.0,23.4803,0.0,Standard Pickup Trucks 4WD,2004,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20068,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20069,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.4,0.0,22.6,0.0,Standard Pickup Trucks 4WD,2004,-7750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3331,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2007,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.8974,0.0,Compact Cars,1986,0,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20070,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2747,0.0,23.3331,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20071,0,0,GMC,Sierra 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Standard Pickup Trucks 4WD,2004,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20072,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.3,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20073,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,23.8,0.0,Standard Pickup Trucks 4WD,2004,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20074,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4756,0.0,23.6193,0.0,Standard Pickup Trucks 4WD,2004,-8000,,CLKUP,T,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20075,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1409,0.0,26.1163,0.0,Standard Pickup Trucks 4WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20076,0,0,Nissan,Frontier V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,23.3,0.0,Standard Pickup Trucks 4WD,2004,-8000,,,T,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20077,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7913,0.0,25.7398,0.0,Standard Pickup Trucks 4WD,2004,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20078,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1563,0.0,23.413,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20079,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3158,0.0,26.8,0.0,Standard Pickup Trucks 4WD,2004,-3250,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3351,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2008,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Compact Cars,1986,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20080,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7502,0.0,27.1503,0.0,Standard Pickup Trucks 4WD,2004,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20081,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2004,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20082,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2004,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20083,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2049,0.0,23.4148,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20084,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9974,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2004,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20085,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6518,0.0,22.0362,0.0,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20086,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.8,0.0,"Vans, Cargo Type",2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20087,0,0,Chevrolet,Astro 2WD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.4,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20088,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20089,0,0,Chevrolet,Astro AWD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3362,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,17,90,2009,0,0,Merkur,XR4Ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1986,-3250,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20090,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.8,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20091,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20092,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6993,0.0,25.3985,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20093,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3508,0.0,23.2904,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20094,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20095,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7037,0.0,23.1787,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20096,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,24.3,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20097,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.3,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20098,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.6,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20099,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.8,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,201,0,0,Plymouth,Turismo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3361,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,90,2010,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20100,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20101,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6972,0.0,25.3943,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20102,0,0,GMC,Savana 1500/2500 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3975,0.0,23.3444,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20103,0,0,GMC,Savana 15/25 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20104,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7361,0.0,23.1721,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20105,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.8,0.0,"Vans, Cargo Type",2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20106,0,0,GMC,Safari 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.4,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20107,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20108,0,0,GMC,Safari AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20109,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.9,0.0,"Vans, Passenger Type",2004,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,88,2011,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Compact Cars,1986,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20110,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20111,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.2,0.0,"Vans, Passenger Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20112,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,"Vans, Passenger Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20113,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,"Vans, Passenger Type",2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20114,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.6,0.0,"Vans, Passenger Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20115,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,22.4,0.0,"Vans, Passenger Type",2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20116,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,25.2,0.0,"Vans, Passenger Type",2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20117,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,"Vans, Passenger Type",2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20118,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,"Vans, Passenger Type",2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20119,0,0,GMC,Safari 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,25.9,0.0,"Vans, Passenger Type",2004,-5250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,2012,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1986,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20120,0,0,GMC,Safari AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2004,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20121,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3333,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20122,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.5481,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20123,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5829,0.0,32.8499,0.0,Minivan - 2WD,2004,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20124,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8499,0.0,31.7499,0.0,Minivan - 2WD,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20125,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.5481,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20126,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8068,0.0,33.1253,0.0,Minivan - 2WD,2004,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20127,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8499,0.0,31.7499,0.0,Minivan - 2WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20128,0,0,Ford,Freestar Cargo Van FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.8,0.0,Minivan - 2WD,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20129,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,29.4,0.0,Minivan - 2WD,2004,-4250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,88,2013,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Compact Cars,1986,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20130,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.8478,0.0,Minivan - 2WD,2004,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20131,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1234,0.0,32.193,0.0,Minivan - 2WD,2004,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20132,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,28.7,0.0,Minivan - 2WD,2004,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20133,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7891,0.0,31.5189,0.0,Minivan - 2WD,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20134,0,0,Mercury,Monterey Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.8478,0.0,Minivan - 2WD,2004,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20135,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,33.1,0.0,Minivan - 2WD,2004,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20136,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,32.1,0.0,Minivan - 2WD,2004,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20137,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3333,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20138,0,0,Pontiac,Montana FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3333,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20139,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,34.2,0.0,Minivan - 2WD,2004,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56041,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,89,2014,13,14,Mazda,626,Y,false,88,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Compact Cars,1986,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20140,0,0,Chevrolet,Venture AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Minivan - 4WD,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20141,0,0,Chrysler,Town and Country/Voyager/Grand Voy. AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7499,0.0,29.6499,0.0,Minivan - 4WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20142,0,0,Dodge,Caravan/Grand Caravan AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7499,0.0,29.6499,0.0,Minivan - 4WD,2004,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20143,0,0,Oldsmobile,Silhouette AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Minivan - 4WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20144,0,0,Pontiac,Montana AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Minivan - 4WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20145,0,0,Toyota,Sienna 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9899,0.0,31.159,0.0,Minivan - 4WD,2004,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20146,0,0,Buick,Rainier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20147,0,0,Buick,Rainier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20148,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20149,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56041,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,89,2015,13,14,Mazda,626,Y,false,88,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20150,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0994,0.0,29.6459,0.0,Sport Utility Vehicle - 2WD,2004,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20151,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7463,0.0,26.3864,0.0,Sport Utility Vehicle - 2WD,2004,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20152,0,0,Chevrolet,Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,26.8,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20153,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20154,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20155,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20156,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,24.3,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20157,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20158,0,0,Chevrolet,Tracker 2WD Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20159,0,0,Chevrolet,Tracker LT 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56040,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,89,2016,13,14,Mazda,626,N,false,88,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Compact Cars,1986,-500,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20160,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20161,0,0,Chevrolet,TrailBlazer Ext 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20162,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20163,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6499,0.0,29.526,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20164,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2004,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20165,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20166,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2004,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20167,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2004,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20168,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20169,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,0.0,23.9,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2017,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1986,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20170,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20171,0,0,Ford,Escape 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2004,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20172,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2004,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20173,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20174,0,0,Ford,Expedition 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,22.4,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20175,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2753,0.0,25.0503,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20176,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,24.3,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20177,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20178,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20179,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2018,0,15,Mercedes-Benz,300E,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1986,-3750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20180,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20181,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20182,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20183,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20184,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,33.7,0.0,Sport Utility Vehicle - 2WD,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20185,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2004,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20186,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0959,0.0,34.6767,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20187,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20188,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5472,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20189,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3193,0.0,28.2827,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CMODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20060,(GUZZLER) (FFS) (MPFI),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2019,15,0,Mercedes-Benz,560SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Compact Cars,1986,-11250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20190,0,0,Infiniti,FX35 RWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.7394,0.0,29.9786,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20191,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8,0.0,24.3,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20192,0,0,Isuzu,Ascender 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20193,0,0,Isuzu,Ascender 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20194,0,0,Isuzu,Ascender 5-passenger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20195,0,0,Isuzu,Axiom 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,29.9,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20196,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20197,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.0,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,V-6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20198,0,0,Isuzu,Rodeo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,29.9,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20199,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,19,77,202,0,0,Plymouth,Turismo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,47.0,0.0,Subcompact Cars,1985,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49050,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2020,0,12,Mitsubishi,Galant,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Compact Cars,1986,-1750,,VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20200,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2067,0.0,25.641,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20201,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3981,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2004,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20202,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.2051,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20203,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.865,0.0,28.2468,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20204,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,24.5,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20205,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.6,0.0,24.8,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20206,0,0,Lexus,RX 330 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7829,0.0,32.8499,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20207,0,0,Lexus,RX 330 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.7983,0.0,32.9023,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20208,0,0,Lincoln,Aviator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7,0.0,23.2,0.0,Sport Utility Vehicle - 2WD,2004,-9500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20209,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0993,0.0,22.6996,0.0,Sport Utility Vehicle - 2WD,2004,-11250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4240,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2021,13,13,Oldsmobile,Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,41.0,0.0,Compact Cars,1986,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20210,0,0,Mazda,Tribute 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2004,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20211,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2004,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20212,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2753,0.0,25.0503,0.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20213,0,0,Mitsubishi,Endeavor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.2397,0.0,29.6187,0.0,Sport Utility Vehicle - 2WD,2004,-4750,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20214,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,SOHC,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20215,0,0,Mitsubishi,Nativa 2WD(Puerto Rico Only),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20216,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2004,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20217,0,0,Nissan,Murano 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20218,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9579,0.0,26.6192,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20219,0,0,Nissan,Pathfinder Armada 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9634,0.0,24.3679,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4241,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2022,13,13,Oldsmobile,Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,43.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20220,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2004,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20221,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.2418,0.0,Sport Utility Vehicle - 2WD,2004,-8000,,CLKUP,T,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20222,0,0,Nissan,Xterra V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,27.1846,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20223,0,0,Nissan,Xterra V6 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8446,0.0,25.9356,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20224,0,0,Oldsmobile,Bravada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,26.6,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20225,0,0,Pontiac,Aztek FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20226,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.0,0.0,35.6,0.0,Sport Utility Vehicle - 2WD,2004,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20227,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2004,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20228,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2004,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20229,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2023,13,13,Oldsmobile,Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20230,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,28.5,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20231,0,0,Suzuki,Grand Vitara XL7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.8,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20232,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2004,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20233,0,0,Suzuki,Vitara 4 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20234,0,0,Suzuki,Vitara 4 Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,28.5,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20235,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2004,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20236,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20237,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2004,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20238,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2004,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20239,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,37.2,0.0,Sport Utility Vehicle - 2WD,2004,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,84,2024,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Compact Cars,1986,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20240,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5499,0.0,38.3,0.0,Sport Utility Vehicle - 2WD,2004,0,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20241,0,0,Toyota,Sequoia 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,101,20242,0,0,Volvo,XC 90 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,2004,-3750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20243,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,29.3,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20244,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.6,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20245,0,0,Audi,Allroad quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20246,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.8,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20247,0,0,BMW,X3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20248,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.5,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20249,0,0,BMW,X3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,2025,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Compact Cars,1986,-3000,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20250,0,0,BMW,X3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.7,0.0,29.8,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20251,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20252,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20253,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20254,0,0,Buick,Rainier AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,26.4981,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20255,0,0,Buick,Rainier AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20256,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20257,0,0,Buick,Rendezvous AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6601,0.0,32.5994,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20258,0,0,Cadillac,Escalade AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20259,0,0,Cadillac,Escalade ESV AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4211,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,2026,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,36.0,0.0,Compact Cars,1986,-2250,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20260,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20261,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5994,0.0,28.6457,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20262,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6462,0.0,26.2385,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20263,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5804,0.0,24.1155,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20264,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20265,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20266,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20267,0,0,Chevrolet,Suburban 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20268,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20269,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,2027,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1986,1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20270,0,0,Chevrolet,Tahoe 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20271,0,0,Chevrolet,Tracker 4WD Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20272,0,0,Chevrolet,Tracker LT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20273,0,0,Chevrolet,Tracker ZR2 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20274,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,26.4981,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20275,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20276,0,0,Chevrolet,TrailBlazer Ext 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20277,0,0,Chrysler,Pacifica AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3995,0.0,28.0996,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20278,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20279,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5361,0.0,22.4657,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,2028,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1986,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20280,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0526,0.0,30.0809,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20281,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20282,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,21.8,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20283,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1258,0.0,24.7773,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20284,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,26.4981,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20285,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.349,0.0,25.4796,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20286,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1405,0.0,23.154,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20287,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20288,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20289,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,2029,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20290,0,0,GMC,Yukon 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20291,0,0,GMC,Yukon 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20292,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20293,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20294,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.6,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20295,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20296,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20297,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2004,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20298,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2488,0.0,30.345,0.0,Sport Utility Vehicle - 4WD,2004,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20299,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8703,0.0,28.4966,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,19,77,203,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,47.0,0.0,Subcompact Cars,1985,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,2030,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20300,0,31,Hyundai,Santa Fe 4WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2995,0.0,30.1433,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20301,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7435,0.0,26.8387,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20302,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2783,0.0,27.6553,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20303,0,0,Infiniti,FX45 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.4,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20304,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20305,0,0,Isuzu,Ascender 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20306,0,0,Isuzu,Ascender 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.1,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20307,0,0,Isuzu,Ascender 5-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8902,0.0,26.4594,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20308,0,0,Isuzu,Axiom 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9979,0.0,27.0996,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20309,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.1,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,2031,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20310,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20311,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9979,0.0,27.0996,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20312,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,26.9231,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20313,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20314,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.8959,0.0,30.8987,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20315,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3673,0.0,26.9231,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20316,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.347,0.0,27.7898,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20317,0,0,Jeep,Wrangler/TJ 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20318,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20319,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5977,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2032,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20320,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20321,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20322,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20323,0,0,Land Rover,Freelander,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5145,0.0,26.2985,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,20324,0,0,Land Rover,Discovery Series II,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3498,0.0,19.9499,0.0,Sport Utility Vehicle - 4WD,2004,-13250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,448S,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20325,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.9409,0.0,20.6691,0.0,Sport Utility Vehicle - 4WD,2004,-13250,,EMS 3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20326,0,0,Lexus,GX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6922,0.0,23.7249,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20327,0,0,Lexus,LX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5054,0.0,21.3672,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20328,0,0,Lexus,RX 330 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5138,0.0,30.8635,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20329,0,0,Lexus,RX 330 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.52,0.0,30.8943,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2033,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20330,0,0,Lincoln,Aviator 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4498,0.0,22.249,0.0,Sport Utility Vehicle - 4WD,2004,-11250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20331,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20332,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0526,0.0,30.0809,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,20333,0,49,Mercedes-Benz,G500,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2004,-13250,,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,20334,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2004,-11250,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20335,0,41,Mercedes-Benz,ML350,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,23.1,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20336,0,41,Mercedes-Benz,ML500,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,22.1,0.0,Sport Utility Vehicle - 4WD,2004,-9500,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20337,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1258,0.0,24.7773,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20338,0,0,Mitsubishi,Endeavor,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.8397,0.0,27.6968,0.0,Sport Utility Vehicle - 4WD,2004,-5750,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20339,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.6,0.0,24.8,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2034,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Compact Cars,1986,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,SOHC,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20340,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20341,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.5,0.0,32.7,0.0,Sport Utility Vehicle - 4WD,2004,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20342,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2004,-1750,,VMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20343,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8794,0.0,24.6191,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20344,0,0,Nissan,Pathfinder Armada 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5387,0.0,23.096,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20345,0,0,Nissan,Xterra V6 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4321,0.0,23.591,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,CLKUP,T,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20346,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9312,0.0,26.1262,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20347,0,0,Nissan,Xterra V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7065,0.0,25.6926,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20348,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9027,0.0,26.4981,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20349,0,0,Pontiac,Aztek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2035,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1986,-3750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20350,0,0,Porsche,Cayenne,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20351,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2004,-9500,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20352,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2004,-9500,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20353,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20354,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20355,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,35.4,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20356,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20357,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,34.2,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20358,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20359,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2004,-3750,,CLKUP,T,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41030,"(DSL,TRBO) (MPFI) (NO-CAT)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2036,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,34.0,0.0,Compact Cars,1986,-1500,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20360,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9801,0.0,35.0201,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20361,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20362,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7061,0.0,35.5227,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20363,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20364,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20365,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20366,0,0,Suzuki,Grand Vitara XL7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20367,0,0,Suzuki,Vitara 4 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20368,0,0,Suzuki,Vitara 4 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2004,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20369,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1995,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2004,-4250,,CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41030,"(DSL,TRBO) (MPFI) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2037,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Compact Cars,1986,500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20370,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,24.1,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20371,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2004,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20372,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2004,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20373,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5054,0.0,21.3672,0.0,Sport Utility Vehicle - 4WD,2004,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20374,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,34.0,0.0,Sport Utility Vehicle - 4WD,2004,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20375,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2004,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20376,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4248,0.0,22.1353,0.0,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20377,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.6,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2004,-8000,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20378,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,23.4473,0.0,Sport Utility Vehicle - 4WD,2004,-9500,,3MODE CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20379,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2004,-4500,,3MODE CLKUP,T,,Diesel,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,2038,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,50.0,0.0,Compact Cars,1986,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20380,0,0,Volvo,XC 70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2004,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20381,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6573,0.0,30.2905,0.0,Sport Utility Vehicle - 4WD,2004,-4750,,2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20382,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),16.8,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,2MODE CLKUP,T,,,,,, +0.14297200000000002,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=250,-1,2400,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20383,0,0,Ford,F150 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,20.7,0.0,Standard Pickup Trucks 2WD,2004,0,,CLKUP,,,CNG,,,, +27.4675,0.155,0.0,0.0,11,0.0,10,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,740.5833333333334,12,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=120,-1,4600,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,14,0.0,0.0,0.0,0.0,0,0,20384,0,0,Ford,F150 Dual-fuel 2WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.422,12.6781,19.9407,18.9505,Standard Pickup Trucks 2WD,2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,120,, +27.4675,0.169012,0.0,0.0,11,0.0,10,0.0,0.0,0.0,0.0,-1,-1,639.0909090909091,740.5833333333334,12,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,RNG=120,-1,4600,2850,Gasoline or natural gas,Regular Gasoline,-1,-1,14,0.0,13,0.0,0.0,0.0,0.0,0,0,20385,0,0,Ford,F150 Dual-fuel 4WD (CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2,12.5,19.5,18.3,Standard Pickup Trucks 4WD,2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,120,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,20386,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.113,11.4129,22.0,16.5,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,20387,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3399,12.3,24.4196,18.3599,Standard Pickup Trucks 2WD,2004,-6250,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,20388,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3399,12.3,24.4196,18.3599,Standard Pickup Trucks 2WD,2004,-6250,,CLKUP,,,FFV,E85,310/390,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,20389,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,11.4,22.0,16.5,Standard Pickup Trucks 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2200,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,85,2039,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Compact Cars,1986,1750,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20390,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.1,17.4,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,FFV,E85,310/390,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20391,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.1,17.4,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20392,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,12.0,23.9,18.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,FFV,E85,310/390,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20393,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,12.0,23.9,18.0,Sport Utility Vehicle - 2WD,2004,-6250,,CLKUP,,,FFV,E85,310/390,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20394,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.1,17.4,Sport Utility Vehicle - 2WD,2004,-7750,,CLKUP,,,FFV,E85,310/390,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20395,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20396,0,0,Chevrolet,Avalanche 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20397,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20398,0,0,Chevrolet,Suburban 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20399,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,77,204,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Subcompact Cars,1985,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,2040,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1986,0,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20400,0,0,Chevrolet,Tahoe 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20401,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20402,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20403,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,20404,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,11.6,23.5,17.5,Sport Utility Vehicle - 4WD,2004,-7750,,CLKUP,,,FFV,E85,280/380,, +13.73375,0.080848,0.0,0.0,21,0.0,20,0.0,0.0,0.0,0.0,-1,-1,305.6521739130435,370.2916666666667,24,0.0,23,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,1350,Gasoline or natural gas,Regular Gasoline,-1,-1,29,0.0,29,0.0,0.0,0.0,0.0,0,0,20405,0,7,Chevrolet,Cavalier Dual-fuel,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1455,25.7476,41.4,41.0,Subcompact Cars,2004,500,,,,,Bifuel (CNG),Natural Gas,130,, +0.06634,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,200,-1,1100,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20406,0,7,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.2,0.0,43.9,0.0,Compact Cars,2004,6500,,,,,CNG,,,, +0.186,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,703.0,10,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,CNG,Natural Gas,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,20407,0,0,Chevrolet,Silverado 2500 HD 2WD CNG,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1,0.0,15.5,0.0,Standard Pickup Trucks 2WD,2004,-3750,,2MODE,,,CNG,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,20408,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5983,17.2,35.9931,26.0,Compact Cars,2004,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,20409,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Compact Cars,2004,-1000,,CLKUP,,,FFV,E85,270,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2400,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,2041,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,20410,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.3,26.0,Midsize Cars,2004,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,20411,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2004,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,20412,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5983,17.2,35.9931,26.0,Midsize Cars,2004,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,20413,0,16,Dodge,Stratus 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5983,17.2,35.9931,26.0,Midsize Cars,2004,-1000,,2MODE CLKUP,,,FFV,E85,270,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,20414,0,0,Ford,Explorer Sport Trac 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5646,12.8824,27.211,19.9287,Standard Pickup Trucks 2WD,2004,-5250,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,20415,0,0,Ford,Explorer Sport Trac 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0987,12.8,25.5955,19.495,Standard Pickup Trucks 4WD,2004,-5250,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,20416,0,0,Ford,Explorer 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0987,12.8,25.5955,19.495,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,20417,0,0,Ford,Explorer 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5646,12.8824,27.211,19.9287,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,20418,0,0,Mercury,Mountaineer 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5646,12.8824,27.211,19.9287,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,FFV,E85,290,, +16.4805,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,GAS 360,-1,3000,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,20419,0,12,Mercedes-Benz,C240 FFV,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8,16.0,32.0,23.8,Compact Cars,2004,-3000,,EMS 2MODE CLKUP,,,FFV,E85,260,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4240,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2042,13,13,Pontiac,Grand Am,N,false,92,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,41.0,0.0,Compact Cars,1986,0,,,,,,,,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GAS 360,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,20420,0,12,Mercedes-Benz,C320 FFV,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,16.2,33.7,24.8,Compact Cars,2004,-3000,,EMS 2MODE CLKUP,,,FFV,E85,260,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,16,85,20421,0,0,Mercedes-Benz,C320 Sports Coupe FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,16.2,33.7,24.8,Compact Cars,2004,-3000,,EMS 2MODE CLKUP,,,FFV,E85,260,, +16.4805,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,GAS 360,-1,3000,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,20422,0,31,Mercedes-Benz,C240 FFV (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8,16.0,32.4,23.8,Small Station Wagons,2004,-3000,,EMS 2MODE CLKUP,,,FFV,E85,260,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,GAS 360,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,20423,0,31,Mercedes-Benz,C320 FFV (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,16.2,33.7,24.8,Small Station Wagons,2004,-3000,,EMS 2MODE CLKUP,,,FFV,E85,260,, +21.974,8.153466,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,4250,Gasoline or propane,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,20424,0,0,Ford,F150 Dual-fuel 2WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 2WD,2004,-6250,,,,,Bifuel (LPG),Propane,270/240/340,, +21.974,8.153466,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,525.5454545454545,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3650,4250,Gasoline or propane,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,20425,0,0,Ford,F150 Dual-fuel 4WD (LPG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Standard Pickup Trucks 4WD,2004,-6250,,,,,Bifuel (LPG),Propane,270/240/340,, +27.4675,0.155,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,740.5833333333334,12,0.0,12,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,15,0.0,15,0.0,0.0,0.0,0.0,0,0,20426,0,0,Chevrolet,Express Cargo (Bi-fuel),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Cargo Type",2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,170,, +27.4675,0.155,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,740.5833333333334,12,0.0,12,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,15,0.0,15,0.0,0.0,0.0,0.0,0,0,20427,0,0,Chevrolet,Express Passenger (Bi-fuel),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Passenger Type",2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,170,, +27.4675,0.155,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,740.5833333333334,12,0.0,12,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,15,0.0,15,0.0,0.0,0.0,0.0,0,0,20428,0,0,GMC,Savana (cargo) (Bi-fuel),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Cargo Type",2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,170,, +27.4675,0.155,0.0,0.0,11,0.0,11,0.0,0.0,0.0,0.0,-1,-1,585.8333333333334,740.5833333333334,12,0.0,12,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4600,2600,Gasoline or natural gas,Regular Gasoline,-1,-1,15,0.0,15,0.0,0.0,0.0,0.0,0,0,20429,0,0,GMC,Savana Passenger (Bi-fuel),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Passenger Type",2004,-11000,,CLKUP,,,Bifuel (CNG),Natural Gas,170,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4241,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2043,13,13,Pontiac,Grand Am,N,false,92,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,43.0,0.0,Compact Cars,1986,500,,SIL,,,,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20430,0,0,Chevrolet,Express Cargo (dedicated CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Cargo Type",2004,-1000,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20431,0,0,Chevrolet,Express Passenger (dedicated CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Passenger Type",2004,-1000,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20432,0,0,GMC,Savana Cargo (dedicated CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Cargo Type",2004,-1000,,CLKUP,,,CNG,,,, +0.155,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,585.8333333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,CNG,Natural Gas,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20433,0,0,GMC,Savana Passenger (dedicated CNG),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,"Vans, Passenger Type",2004,-1000,,CLKUP,,,CNG,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,20434,0,0,Mercury,Mountaineer 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4765,12.4764,24.7288,18.4526,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,FFV,E85,270,, +0.132804,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,502.14285714285717,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,2250,0,CNG,Natural Gas,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20435,0,21,Ford,Crown Victoria CNG,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,23.5,0.0,Large Cars,2004,750,,CLKUP,,,CNG,,,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,20436,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.3,34.8,25.8,Midsize Cars,2004,-1750,,CLKUP,,,FFV,E85,310,, +17.337486000000002,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,467.7368421052632,19,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3050,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,20437,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,16.1,33.0,25.1,Midsize Station Wagons,2004,-2500,,CLKUP,,,FFV,E85,290,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,20438,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.3,34.8,25.8,Large Cars,2004,-1750,,CLKUP,,,FFV,E85,310,, +17.337486000000002,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,467.7368421052632,19,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3050,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,20439,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,16.1,33.0,25.1,Midsize Station Wagons,2004,-2500,,CLKUP,,,FFV,E85,290,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2044,13,13,Pontiac,Grand Am,N,false,92,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,20440,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Standard Pickup Trucks 2WD,2004,-11000,,CLKUP,,,FFV,E85,260,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,20441,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Standard Pickup Trucks 4WD,2004,-11000,,CLKUP,,,FFV,E85,260,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20442,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3162,0.0,38.8644,0.0,Midsize Cars,2004,-1750,,4MODE,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,20443,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),29.9,0.0,48.4,0.0,Midsize Cars,2004,1000,,3MODE CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20444,0,18,BMW,760i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3486,0.0,28.9986,0.0,Large Cars,2004,-6750,G,3MODE CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,20445,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),29.9,0.0,48.4,0.0,Midsize Station Wagons,2004,1000,,3MODE CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20446,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3682,0.0,26.8199,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20447,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3682,0.0,26.8199,0.0,Sport Utility Vehicle - 2WD,2004,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20448,0,0,BMW,X5 4.8IS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2004,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20449,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2004,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,84,2045,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Compact Cars,1986,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20450,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2004,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,DOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20451,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.4,0.0,31.0,0.0,Two Seaters,2005,-4750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,DOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20452,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,31.1,0.0,Two Seaters,2005,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20453,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Two Seaters,2005,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20454,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1726,0.0,36.5686,0.0,Two Seaters,2005,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20455,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6641,0.0,32.5215,0.0,Two Seaters,2005,-3750,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20456,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.7,0.0,Two Seaters,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20457,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.9,0.0,35.9,0.0,Two Seaters,2005,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20458,0,0,BMW,Z4 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,37.5,0.0,Two Seaters,2005,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20459,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2536,0.0,34.5372,0.0,Two Seaters,2005,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,2046,13,13,Pontiac,Sunbird,Y,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Compact Cars,1986,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20460,0,0,BMW,Z4 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,37.6275,0.0,Two Seaters,2005,-2250,,4MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20461,0,0,Cadillac,XLR,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.4,0.0,31.7,0.0,Two Seaters,2005,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20462,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,33.3333,0.0,Two Seaters,2005,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20463,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.4,0.0,Two Seaters,2005,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20464,0,0,Chrysler,Crossfire Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2005,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20465,0,0,Chrysler,Crossfire Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.9,0.0,Two Seaters,2005,-4750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20466,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2005,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20467,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2005,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20468,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.9,0.0,Two Seaters,2005,-4750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20469,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2005,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4211,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,2047,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,36.0,0.0,Compact Cars,1986,-2250,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20470,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.4,0.0,25.9,0.0,Two Seaters,2005,-11250,G,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20471,0,0,Ferrari,360 Modena/Spider/Challenge,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.9,0.0,20.2,0.0,Two Seaters,2005,-15500,G,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20472,0,0,Ferrari,360 Modena/Spider/Challenge,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6498,0.0,20.498,0.0,Two Seaters,2005,-15500,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20473,0,0,Ferrari,575 M Maranello and Superamerica,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.6,0.0,20.3,0.0,Two Seaters,2005,-15500,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20474,0,0,Ferrari,575 M Maranello and Superamerica,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.2498,0.0,21.4,0.0,Two Seaters,2005,-15500,G,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20475,0,0,Ford,GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.4444,0.0,26.9,0.0,Two Seaters,2005,-9500,G,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20476,8,0,Ford,Thunderbird,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,30.8,0.0,Two Seaters,2005,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20477,8,0,Ford,Thunderbird,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3468,0.0,31.1,0.0,Two Seaters,2005,-4750,,CLKUP,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,HEV,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,20478,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2005,6250,,EMS,,,Hybrid,,,, +6.328512,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,170.90384615384616,52,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,HEV,-1,1050,0,Regular,Regular Gasoline,-1,-1,58,0.0,0,0.0,0.0,0.0,0.0,0,0,20479,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.7,0.0,84.4,0.0,Two Seaters,2005,6750,,SIL EMS,,,Hybrid,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,2048,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1986,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20480,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,32.5,0.0,Two Seaters,2005,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,20481,0,0,Lamborghini,L-140/141 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,19.7,0.0,Two Seaters,2005,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20482,0,0,Lamborghini,L-140/141 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.6,0.0,21.9,0.0,Two Seaters,2005,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,20483,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.1,0.0,Two Seaters,2005,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,20484,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.6,0.0,Two Seaters,2005,-15500,G,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20485,0,0,Lotus,Elise/exige,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8,0.0,34.9,0.0,Two Seaters,2005,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20486,0,0,Maserati,Spyder Cambiocorsa/GT/90 ANV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.2,0.0,Two Seaters,2005,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20487,0,0,Maserati,Spyder Cambiocorsa/GT/90 ANV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.9755,0.0,21.9403,0.0,Two Seaters,2005,-13250,G,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20488,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,35.6,0.0,Two Seaters,2005,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20489,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,36.4,0.0,Two Seaters,2005,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,2049,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20490,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,35.6,0.0,Two Seaters,2005,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,MIATA T/C,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20491,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,33.0,0.0,Two Seaters,2005,-3000,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20492,10,0,Mercedes-Benz,SLR,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1746,0.0,22.541,0.0,Two Seaters,2005,-11250,G,EMS 2MODE CLKUP,,S,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20493,7,0,Mercedes-Benz,SL500,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,29.1,0.0,Two Seaters,2005,-5750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20494,7,0,Mercedes-Benz,SL55 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.0974,0.0,25.2964,0.0,Two Seaters,2005,-9500,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20495,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.3,0.0,Two Seaters,2005,-9500,G,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20496,7,0,Mercedes-Benz,SL65 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.7193,0.0,24.545,0.0,Two Seaters,2005,-11250,G,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20497,7,0,Mercedes-Benz,SLK350,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,32.6,0.0,Two Seaters,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20498,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,32.5,0.0,Two Seaters,2005,-3750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20499,7,0,Mercedes-Benz,SLK55 AMG,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.4,0.0,28.1,0.0,Two Seaters,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4222,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,205,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,41.0256,0.0,Subcompact Cars,1985,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,88,2050,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1986,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20500,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9307,0.0,33.6614,0.0,Two Seaters,2005,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,DVVT,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20501,0,0,Nissan,350z,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5596,0.0,32.6894,0.0,Two Seaters,2005,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20502,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1,0.0,32.7,0.0,Two Seaters,2005,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20503,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,33.1666,0.0,Two Seaters,2005,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20504,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5304,0.0,31.7653,0.0,Two Seaters,2005,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20505,0,0,Porsche,Carrera 2 911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7007,0.0,29.3824,0.0,Two Seaters,2005,-6750,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,10,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20506,0,0,Porsche,Carrera GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.5093,0.0,20.2159,0.0,Two Seaters,2005,-15500,G,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20507,0,0,Porsche,Turbo 2 911 GT2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.833,0.0,29.93,0.0,Two Seaters,2005,-6750,G,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20508,2,0,Toyota,MR2,N,false,46,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,41.3,0.0,Two Seaters,2005,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,20509,2,0,Toyota,MR2,N,false,46,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.0,0.0,42.1,0.0,Two Seaters,2005,1500,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,16,88,2051,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.8889,0.0,53.0,0.0,Compact Cars,1986,3750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20510,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.6012,0.0,24.4345,0.0,Minicompact Cars,2005,-11250,G,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20511,5,0,Aston Martin,DB9 Volante,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9288,0.0,23.3504,0.0,Minicompact Cars,2005,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20512,6,0,Aston Martin,V12 Vanquish S,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.1251,0.0,21.9955,0.0,Minicompact Cars,2005,-13250,G,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,65,20513,0,0,Audi,TT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.1,0.0,Minicompact Cars,2005,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,20514,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1726,0.0,36.5686,0.0,Minicompact Cars,2005,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,65,20515,0,0,Audi,TT Coupe quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2571,0.0,33.2283,0.0,Minicompact Cars,2005,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20516,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,34.5,0.0,Minicompact Cars,2005,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20517,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,33.9,0.0,Minicompact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20518,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,36.5,0.0,Minicompact Cars,2005,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20519,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,32.5,0.0,Minicompact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS) (SPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,88,2052,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,49.0,0.0,Compact Cars,1986,2750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20520,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1528,0.0,34.7518,0.0,Minicompact Cars,2005,-3000,,4MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20521,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,29.5431,0.0,Minicompact Cars,2005,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20522,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7191,0.0,28.1243,0.0,Minicompact Cars,2005,-6750,G,6MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20523,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Minicompact Cars,2005,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20524,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1723,0.0,Minicompact Cars,2005,-5750,G,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20525,9,0,Lexus,SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Minicompact Cars,2005,-4750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20526,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9,0.0,44.2,0.0,Minicompact Cars,2005,500,,2MODE,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,20527,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1,0.0,46.7,0.0,Minicompact Cars,2005,1250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,20528,7,0,MINI,Cooper Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8,0.0,41.9,0.0,Minicompact Cars,2005,0,,2MODE,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20529,7,0,MINI,Cooper Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,45.2,0.0,Minicompact Cars,2005,750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS) (SPFI),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,88,2053,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Compact Cars,1986,3000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20530,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3735,0.0,41.0299,0.0,Minicompact Cars,2005,-500,,,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20531,7,0,MINI,Cooper S Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3735,0.0,41.0299,0.0,Minicompact Cars,2005,-500,,,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20532,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,39.2589,0.0,Minicompact Cars,2005,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20533,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.6205,0.0,33.8793,0.0,Minicompact Cars,2005,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20534,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,36.8,0.0,Minicompact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20535,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,36.5,0.0,Minicompact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20536,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Minicompact Cars,2005,-2250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VIS,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20537,7,0,Mitsubishi,Eclipse Spyder,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.2465,0.0,34.3393,0.0,Minicompact Cars,2005,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,new body style,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20538,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8149,0.0,33.7593,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20539,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1100,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,2054,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20540,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20541,5,0,Porsche,Carrera 2 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20542,5,0,Porsche,Carrera 2 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,new body style,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20543,5,0,Porsche,Carrera 2 Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9314,0.0,33.9237,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20544,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1683,0.0,32.7973,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20545,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,33.4,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20546,5,0,Porsche,Carrera 2 Coupe Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1683,0.0,32.7973,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20547,5,0,Porsche,Carrera 2 Coupe Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,33.4,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20548,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1111,0.0,33.3333,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20549,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9597,0.0,33.3333,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1100,(FFS) (SPFI),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,88,2055,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1986,2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20550,5,0,Porsche,Carrera 2 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5677,0.0,32.8016,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20551,5,0,Porsche,Carrera 2 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.863,0.0,32.9215,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20552,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2005,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20553,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20554,5,0,Porsche,Carrera 4 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2005,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20555,5,0,Porsche,Carrera 4 Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20556,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2005,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20557,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20558,5,0,Porsche,Carrera 4 S Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9277,0.0,29.9987,0.0,Minicompact Cars,2005,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20559,5,0,Porsche,Carrera 4 S Cabriolet Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44022,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,2056,14,0,Rolls-Royce,Camargue,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Compact Cars,1986,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20560,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8276,0.0,29.1492,0.0,Minicompact Cars,2005,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20561,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20562,5,0,Porsche,Carrera 4 S Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8276,0.0,29.1492,0.0,Minicompact Cars,2005,-5750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20563,5,0,Porsche,Carrera 4 S Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,30.3,0.0,Minicompact Cars,2005,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20564,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20565,5,0,Porsche,Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20566,5,0,Porsche,Targa Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.135,0.0,32.9952,0.0,Minicompact Cars,2005,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20567,5,0,Porsche,Targa Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,33.8,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20568,5,0,Porsche,Turbo 4 911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0257,0.0,28.2799,0.0,Minicompact Cars,2005,-6750,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20569,5,0,Porsche,Turbo 4 911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5805,0.0,28.3585,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,110,2057,14,14,Saab,900,N,false,103,103,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1986,-3250,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20570,5,0,Porsche,Turbo 4 911 Cab,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7187,0.0,27.7531,0.0,Minicompact Cars,2005,-8000,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20571,5,0,Porsche,Turbo 4 911 Cab,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7753,0.0,28.6776,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20572,5,0,Porsche,Turbo 4 911 Cab Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7187,0.0,27.7531,0.0,Minicompact Cars,2005,-8000,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20573,5,0,Porsche,Turbo 4 911 Cab Kit,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7753,0.0,28.6776,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20574,5,0,Porsche,Turbo 4 911 Turbo Cab S,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7187,0.0,27.7531,0.0,Minicompact Cars,2005,-8000,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20575,5,0,Porsche,Turbo 4 911 Turbo Cab S,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7753,0.0,28.6776,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20576,5,0,Porsche,Turbo 4 911 Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0257,0.0,28.2799,0.0,Minicompact Cars,2005,-6750,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20577,5,0,Porsche,Turbo 4 911 Kit,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.62,0.0,28.3386,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20578,5,0,Porsche,Turbo 4 911 S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0257,0.0,28.2799,0.0,Minicompact Cars,2005,-6750,G,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20579,5,0,Porsche,Turbo 4 911 S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.62,0.0,28.3386,0.0,Minicompact Cars,2005,-6750,G,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,110,2058,14,14,Saab,900,N,false,103,103,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1986,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20580,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,38.6,0.0,Minicompact Cars,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20581,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.4057,0.0,38.6291,0.0,Minicompact Cars,2005,-1750,,3MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20582,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5131,0.0,38.907,0.0,Minicompact Cars,2005,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20583,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,39.4,0.0,Minicompact Cars,2005,-500,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,20584,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,43.3,0.0,Subcompact Cars,2005,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,81,20585,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,39.7,0.0,Subcompact Cars,2005,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,20586,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),28.0,0.0,43.3,0.0,Subcompact Cars,2005,1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20587,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,38.6,0.0,Subcompact Cars,2005,-1000,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20588,0,10,Audi,A4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.1,0.0,36.6,0.0,Subcompact Cars,2005,-2250,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20589,0,10,Audi,A4 Cabriolet quattro,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2445,0.0,32.9971,0.0,Subcompact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,16-VALVE (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,110,2059,14,14,Saab,900,N,false,103,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20590,0,10,Audi,S4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5,0.0,27.2,0.0,Subcompact Cars,2005,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20591,0,10,Audi,S4 Cabriolet,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8366,0.0,28.3951,0.0,Subcompact Cars,2005,-6750,G,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20592,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Subcompact Cars,2005,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20593,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3158,0.0,34.7275,0.0,Subcompact Cars,2005,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20594,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1254,0.0,38.153,0.0,Subcompact Cars,2005,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20595,9,0,BMW,330ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2536,0.0,34.5372,0.0,Subcompact Cars,2005,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20596,9,0,BMW,330ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Subcompact Cars,2005,-2250,,4MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20597,13,0,BMW,645ci,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,32.4,0.0,Subcompact Cars,2005,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20598,13,0,BMW,645ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1469,0.0,33.7,0.0,Subcompact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20599,13,0,BMW,645ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1978,0.0,31.2077,0.0,Subcompact Cars,2005,-5750,,4MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4223,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,206,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1985,-500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,110,2060,14,14,Saab,900,N,false,103,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1986,-1750,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20600,10,0,BMW,645ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,29.4,0.0,Subcompact Cars,2005,-6750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20601,10,0,BMW,645ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Subcompact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20602,10,0,BMW,645ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5462,0.0,28.5247,0.0,Subcompact Cars,2005,-6750,G,4MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20603,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.9,0.0,Subcompact Cars,2005,-5750,G,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20604,9,0,BMW,M3,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3217,0.0,29.6138,0.0,Subcompact Cars,2005,-5750,G,6MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20605,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,37.2,0.0,Subcompact Cars,2005,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20606,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,2005,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20607,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.5897,0.0,Subcompact Cars,2005,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20608,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8875,0.0,32.2362,0.0,Subcompact Cars,2005,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20609,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3,0.0,36.3,0.0,Subcompact Cars,2005,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,110,2061,14,14,Saab,900,N,false,103,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1986,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20610,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5145,0.0,29.9156,0.0,Subcompact Cars,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20611,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,31.5,0.0,Subcompact Cars,2005,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20612,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1325,0.0,37.9239,0.0,Subcompact Cars,2005,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20613,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,38.7,0.0,Subcompact Cars,2005,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20614,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0924,0.0,33.2499,0.0,Subcompact Cars,2005,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20615,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,33.7,0.0,Subcompact Cars,2005,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20616,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.9,0.0,Subcompact Cars,2005,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20617,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Subcompact Cars,2005,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20618,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5722,0.0,29.1723,0.0,Subcompact Cars,2005,-5750,G,2MODE CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20619,5,0,Maserati,Coupe and Gransport,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,21.2,0.0,Subcompact Cars,2005,-13250,G,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(OHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,83,2062,0,14,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20620,5,0,Maserati,Coupe and Gransport,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.9755,0.0,21.9403,0.0,Subcompact Cars,2005,-13250,G,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20621,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2005,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20622,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S4),19.9,0.0,30.9,0.0,Subcompact Cars,2005,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20623,10,0,Mercedes-Benz,CLK320,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,35.7,0.0,Subcompact Cars,2005,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20624,9,0,Mercedes-Benz,CLK320 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,33.8,0.0,Subcompact Cars,2005,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20625,10,0,Mercedes-Benz,CLK500,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2005,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20626,9,0,Mercedes-Benz,CLK500 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2005,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20627,10,0,Mercedes-Benz,CLK55 AMG,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.6992,0.0,28.7,0.0,Subcompact Cars,2005,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20628,9,0,Mercedes-Benz,CLK55 AMG (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.3632,0.0,28.5997,0.0,Subcompact Cars,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,20629,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2774,0.0,35.2661,0.0,Subcompact Cars,2005,-1000,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,83,2063,0,14,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Compact Cars,1986,-1000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,79,20630,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6256,0.0,39.5837,0.0,Subcompact Cars,2005,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,20631,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.2783,0.0,35.2691,0.0,Subcompact Cars,2005,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,79,20632,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.1,0.0,Subcompact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,79,20633,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,37.0,0.0,Subcompact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,20634,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Subcompact Cars,2005,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC-VIS,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,79,20635,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.8,0.0,35.3,0.0,Subcompact Cars,2005,-2250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20636,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,36.3,0.0,Subcompact Cars,2005,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20637,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6,0.0,34.2,0.0,Subcompact Cars,2005,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20638,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3632,0.0,32.8686,0.0,Subcompact Cars,2005,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20639,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9711,0.0,34.4961,0.0,Subcompact Cars,2005,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66025,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,2064,0,14,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Compact Cars,1986,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20640,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8623,0.0,36.2274,0.0,Subcompact Cars,2005,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20641,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0837,0.0,38.2256,0.0,Subcompact Cars,2005,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20642,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,30.5,0.0,Subcompact Cars,2005,-4750,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,78,20643,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1,0.0,46.0,0.0,Subcompact Cars,2005,2250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,20644,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,42.8,0.0,Subcompact Cars,2005,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,78,20645,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.2,0.0,41.7,0.0,Subcompact Cars,2005,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,78,20646,0,0,Toyota,Celica,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),27.6708,0.0,39.7484,0.0,Subcompact Cars,2005,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,20647,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,38.3997,0.0,Subcompact Cars,2005,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,20648,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,37.3,0.0,Subcompact Cars,2005,-500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,86,20649,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.8,0.0,49.1,0.0,Subcompact Cars,2005,2750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,83,2065,0,14,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Compact Cars,1986,500,,,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,86,20650,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3,0.0,47.5,0.0,Subcompact Cars,2005,2750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,20651,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,38.8,0.0,Subcompact Cars,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,20652,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.4057,0.0,38.6291,0.0,Subcompact Cars,2005,-1750,,3MODE CLKUP,T,,,,,, +10.905012000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,12,85,20653,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.7052,0.0,59.0861,0.0,Subcompact Cars,2005,3500,,,T,,Diesel,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,12,85,20654,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),39.1083,0.0,53.5772,0.0,Subcompact Cars,2005,3000,,3MODE,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,20655,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6264,0.0,39.4047,0.0,Subcompact Cars,2005,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,20656,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.9,0.0,Subcompact Cars,2005,0,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20657,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.8,0.0,38.0,0.0,Compact Cars,2005,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20658,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),24.6,0.0,39.2,0.0,Compact Cars,2005,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20659,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.1,0.0,37.6,0.0,Compact Cars,2005,-1000,,3MODE,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66024,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,83,2066,0,0,Subaru,3 Door 4WD Turbo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Compact Cars,1986,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20660,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,40.1,0.0,Compact Cars,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20661,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.8,0.0,36.9,0.0,Compact Cars,2005,-1750,,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20662,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,38.2,0.0,Compact Cars,2005,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20663,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4655,0.0,36.8743,0.0,Compact Cars,2005,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20664,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3754,0.0,33.4805,0.0,Compact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20665,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2445,0.0,32.9971,0.0,Compact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20666,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5105,0.0,27.1174,0.0,Compact Cars,2005,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20667,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0836,0.0,29.3724,0.0,Compact Cars,2005,-6750,G,3MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20668,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5498,0.0,22.7,0.0,Compact Cars,2005,-13250,G,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20669,0,11,BMW,325i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Compact Cars,2005,-2250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,54520,(GUZZLER) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2067,15,0,Texas Coach Company,500 SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Compact Cars,1986,-11000,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20670,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3158,0.0,34.7275,0.0,Compact Cars,2005,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20671,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,34.7,0.0,Compact Cars,2005,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20672,0,11,BMW,325xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Compact Cars,2005,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20673,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1254,0.0,38.153,0.0,Compact Cars,2005,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20674,0,11,BMW,330i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2536,0.0,34.5372,0.0,Compact Cars,2005,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20675,0,11,BMW,330i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Compact Cars,2005,-2250,,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20676,0,11,BMW,330xi,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,37.4,0.0,Compact Cars,2005,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20677,0,11,BMW,330xi,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1,0.0,32.2,0.0,Compact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20678,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20679,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +13.172643,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,"(DSL,TRBO) (NO-CAT)",-1,2050,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,89,2068,0,14,Toyota,Camry,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,46.0,0.0,Compact Cars,1986,1750,,,T,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20680,0,12,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20681,0,12,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20682,13,14,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,43.6063,0.0,Compact Cars,2005,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,20683,13,14,Chevrolet,Cavalier,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,46.5883,0.0,Compact Cars,2005,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20684,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20685,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20686,0,9,Chevrolet,Optra 5,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20687,0,9,Chevrolet,Optra 5,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20688,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2005,-1000,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20689,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2005,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,89,2069,0,14,Toyota,Camry,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0256,0.0,Compact Cars,1986,1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20690,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.5,0.0,Compact Cars,2005,-2250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20691,16,0,Chrysler,Sebring,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8829,0.0,37.4028,0.0,Compact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20692,16,0,Chrysler,Sebring,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Compact Cars,2005,-2250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20693,0,0,Chrysler,Sebring Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Compact Cars,2005,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20694,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.1,0.0,41.3,0.0,Compact Cars,2005,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20695,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,45.7,0.0,Compact Cars,2005,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20696,0,13,Dodge,Neon/SRT-4/SX 2.0,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.5,0.0,Compact Cars,2005,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20697,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.5,0.0,36.3,0.0,Compact Cars,2005,-1000,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20698,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,40.9,0.0,Compact Cars,2005,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20699,16,0,Dodge,Stratus,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,35.5,0.0,Compact Cars,2005,-2250,,CMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4223,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,84,207,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57041,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,89,2070,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Compact Cars,1986,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20700,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8829,0.0,37.4028,0.0,Compact Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20701,16,0,Dodge,Stratus,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.3,0.0,35.5,0.0,Compact Cars,2005,-2250,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,94,20702,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5595,0.0,40.6,0.0,Compact Cars,2005,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,94,20703,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,44.4,0.0,Compact Cars,2005,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,94,20704,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,39.8424,0.0,Compact Cars,2005,0,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,LEAN BURN,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,20705,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.5,0.0,51.6,0.0,Compact Cars,2005,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,20706,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7,0.0,48.4,0.0,Compact Cars,2005,2500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,20707,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.9,0.0,49.3,0.0,Compact Cars,2005,2750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,20708,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.7,0.0,Compact Cars,2005,2750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,LEAN BURN,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,16,85,20709,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.2,0.0,56.2,0.0,Compact Cars,2005,4000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,85,2071,0,13,Toyota,Corolla,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Compact Cars,1986,1500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,VTEC,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,20710,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.1,0.0,47.4,0.0,Compact Cars,2005,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,20711,13,10,Honda,Civic,Y,false,86,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,39.4,0.0,Compact Cars,2005,1000,,,,,,,,, +8.24025,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,20712,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),52.6,0.0,60.9,0.0,Compact Cars,2005,5000,,EMS,,,Hybrid,,,, +8.02051,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV LB,-1,1350,0,Regular,Regular Gasoline,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,20713,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),53.2,0.0,60.5,0.0,Compact Cars,2005,5250,,EMS,,,Hybrid,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,20714,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.8,0.0,Compact Cars,2005,5000,,SIL EMS,,,Hybrid,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV LB,-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,20715,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.2,0.0,64.9,0.0,Compact Cars,2005,5250,,SIL EMS,,,Hybrid,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,I4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,88,20716,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5,0.0,45.4,0.0,Compact Cars,2005,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,I4,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,88,20717,0,12,Hyundai,Accent/Brio,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4,0.0,45.9,0.0,Compact Cars,2005,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,88,20718,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.3,0.0,44.7,0.0,Compact Cars,2005,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,88,20719,0,12,Hyundai,Accent/Brio,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2,0.0,42.8,0.0,Compact Cars,2005,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,85,2072,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,44.8718,0.0,Compact Cars,1986,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20720,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,33.6,0.0,Compact Cars,2005,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20721,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3661,0.0,32.6551,0.0,Compact Cars,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20722,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3,0.0,30.3,0.0,Compact Cars,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,COUPE,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20723,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3661,0.0,32.6551,0.0,Compact Cars,2005,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20724,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1489,0.0,32.8851,0.0,Compact Cars,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20725,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,35.3,0.0,Compact Cars,2005,-3000,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20726,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4499,0.0,32.3,0.0,Compact Cars,2005,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20727,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,35.3,0.0,Compact Cars,2005,-3750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,25,88,20728,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3398,0.0,40.296,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,25,88,20729,0,9,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0199,0.0,40.2,0.0,Compact Cars,2005,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,20,85,2073,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Compact Cars,1986,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,89,20730,0,10,Lexus,IS 300,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.816,0.0,31.7575,0.0,Compact Cars,2005,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,89,20731,0,10,Lexus,IS 300,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9275,0.0,31.3085,0.0,Compact Cars,2005,-4750,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,95,20732,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6472,0.0,44.5071,0.0,Compact Cars,2005,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,95,20733,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.6555,0.0,43.3385,0.0,Compact Cars,2005,1500,,DC/FW,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,20734,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.19,0.0,41.0324,0.0,Compact Cars,2005,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,95,20735,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),26.5407,0.0,36.835,0.0,Compact Cars,2005,0,,DC/FW,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20736,0,12,Mercedes-Benz,C230 Kompressor,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.4,0.0,41.4,0.0,Compact Cars,2005,-500,,EMS 2MODE CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20737,0,12,Mercedes-Benz,C230 Kompressor,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.4,0.0,40.5,0.0,Compact Cars,2005,-1000,,EMS,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,20738,0,0,Mercedes-Benz,C230 Kompressor Sports Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.0,0.0,40.4,0.0,Compact Cars,2005,-500,,EMS 2MODE CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,20739,0,0,Mercedes-Benz,C230 Kompressor Sports Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0,0.0,39.7,0.0,Compact Cars,2005,-1000,,EMS,,S,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2074,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Compact Cars,1986,-4750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20740,0,12,Mercedes-Benz,C240 4matic,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Compact Cars,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20741,0,12,Mercedes-Benz,C320,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,33.4,0.0,Compact Cars,2005,-3750,,EMS,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20742,0,12,Mercedes-Benz,C320 4matic,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,32.8,0.0,Compact Cars,2005,-3000,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,16,85,20743,0,0,Mercedes-Benz,C320 Sports Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,30.8,0.0,Compact Cars,2005,-4750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20744,0,12,Mercedes-Benz,C55 AMG,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5989,0.0,27.8,0.0,Compact Cars,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20745,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Compact Cars,2005,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20746,12,0,Mercedes-Benz,CL55 AMG,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.8943,0.0,27.9499,0.0,Compact Cars,2005,-8000,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20747,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Compact Cars,2005,-9500,G,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20748,12,0,Mercedes-Benz,CL65 AMG,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.5816,0.0,24.8996,0.0,Compact Cars,2005,-11250,G,EMS 2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20749,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7802,0.0,39.5386,0.0,Compact Cars,2005,500,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57051,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2075,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Compact Cars,1986,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20750,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.3436,0.0,43.6448,0.0,Compact Cars,2005,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20751,0,11,Mitsubishi,Lancer,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,35.9774,0.0,Compact Cars,2005,-500,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20752,0,11,Mitsubishi,Lancer,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7369,0.0,37.3379,0.0,Compact Cars,2005,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20753,0,10,Mitsubishi,Lancer Evolution,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9,0.0,32.9,0.0,Compact Cars,2005,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20754,0,10,Mitsubishi,Lancer Evolution,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8,0.0,32.7,0.0,Compact Cars,2005,-3750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20755,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0202,0.0,43.8573,0.0,Compact Cars,2005,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20756,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.2,0.0,Compact Cars,2005,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20757,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9181,0.0,35.727,0.0,Compact Cars,2005,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20758,0,12,Nissan,Sentra,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,37.4,0.0,Compact Cars,2005,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20759,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,41.3,0.0,Compact Cars,2005,0,,CLKUP,,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59008,(NO-CAT),-1,1700,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,87,2076,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,57.0,0.0,Compact Cars,1986,3500,,SIL,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20760,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),23.3,0.0,36.6,0.0,Compact Cars,2005,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20761,0,15,Pontiac,Grand Am,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.6149,0.0,43.6063,0.0,Compact Cars,2005,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20762,0,15,Pontiac,Grand Am,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.1795,0.0,Compact Cars,2005,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20763,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3466,0.0,32.0,0.0,Compact Cars,2005,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20764,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,43.6063,0.0,Compact Cars,2005,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20765,12,13,Pontiac,Sunfire,Y,false,87,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1741,0.0,45.766,0.0,Compact Cars,2005,1500,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20766,0,12,Pontiac,Wave,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20767,0,12,Pontiac,Wave,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20768,0,12,Pontiac,Wave 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20769,0,12,Pontiac,Wave 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,87,2077,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1986,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20770,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,40.4,0.0,Compact Cars,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20771,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,38.5,0.0,Compact Cars,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20772,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,36.4,0.0,Compact Cars,2005,-1750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,LK9,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20773,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,39.9,0.0,Compact Cars,2005,-500,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20774,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,37.2,0.0,Compact Cars,2005,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20775,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0256,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20776,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1741,0.0,44.8718,0.0,Compact Cars,2005,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20777,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0991,0.0,32.3197,0.0,Compact Cars,2005,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20778,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0241,0.0,38.1096,0.0,Compact Cars,2005,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20779,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S4),24.9993,0.0,38.1044,0.0,Compact Cars,2005,0,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,87,2078,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20780,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2491,0.0,32.1107,0.0,Compact Cars,2005,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,20781,0,15,Suzuki,Aerio,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8973,0.0,39.5,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,20782,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6581,0.0,Compact Cars,2005,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,91,20783,0,12,Suzuki,Aerio AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Compact Cars,2005,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20784,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20785,0,12,Suzuki,Forenza,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,20786,0,9,Suzuki,Reno,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5996,0.0,38.4958,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,9,95,20787,0,9,Suzuki,Reno,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,38.1,0.0,Compact Cars,2005,-500,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20788,0,12,Suzuki,Swift,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20789,0,12,Suzuki,Swift,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,87,2079,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20790,0,12,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,43.3,0.0,Compact Cars,2005,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20791,0,12,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,45.5,0.0,Compact Cars,2005,1750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20792,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9,0.0,40.6,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,20793,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Compact Cars,2005,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20794,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.8,0.0,37.8,0.0,Compact Cars,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20795,12,0,Toyota,Camry Solara Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,36.8,0.0,Compact Cars,2005,-1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,20796,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5463,0.0,49.0495,0.0,Compact Cars,2005,2500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,20797,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.7499,0.0,52.5496,0.0,Compact Cars,2005,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20798,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,43.1,0.0,Compact Cars,2005,0,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,20799,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.7599,0.0,50.3796,0.0,Compact Cars,2005,3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4145,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,208,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59009,"(DSL,TRBO) (NO-CAT)",-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,2080,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Compact Cars,1986,3250,,SIL,T,,Diesel,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,20800,14,14,Toyota,Echo,Y,false,87,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.1838,0.0,54.263,0.0,Compact Cars,2005,3750,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,18,88,20801,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.7052,0.0,59.0861,0.0,Compact Cars,2005,3500,,,T,,Diesel,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,18,88,20802,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),35.6943,0.0,55.3104,0.0,Compact Cars,2005,2750,,3MODE CLKUP,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,20803,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7596,0.0,38.5009,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,88,20804,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6264,0.0,39.4047,0.0,Compact Cars,2005,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,88,20805,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,40.1,0.0,Compact Cars,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,20806,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2363,0.0,37.2843,0.0,Compact Cars,2005,-1750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,20807,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0,0.0,37.4,0.0,Compact Cars,2005,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20808,0,13,Volkswagen,Jetta,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,39.994,0.0,Compact Cars,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20809,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4,0.0,37.3,0.0,Compact Cars,2005,-1750,,,T,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59008,(NO-CAT),-1,1700,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,2081,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,57.0,0.0,Compact Cars,1986,3500,,SIL,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20810,0,13,Volkswagen,Jetta,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2363,0.0,37.2843,0.0,Compact Cars,2005,-1750,,2MODE CLKUP,T,,,,,, +10.905012000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,20811,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.7052,0.0,59.0861,0.0,Compact Cars,2005,3500,,,T,,Diesel,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,20812,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S5),35.6943,0.0,55.3104,0.0,Compact Cars,2005,2750,,3MODE CLKUP,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20813,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7596,0.0,38.5009,0.0,Compact Cars,2005,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20814,0,13,Volkswagen,Jetta,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6264,0.0,39.4047,0.0,Compact Cars,2005,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20815,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,38.8,0.0,Compact Cars,2005,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20816,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3518,0.0,36.7895,0.0,Compact Cars,2005,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20817,0,11,Volkswagen,Passat 4motion,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),20.578,0.0,33.5211,0.0,Compact Cars,2005,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20818,0,14,Volvo,S40 AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,34.4,0.0,Compact Cars,2005,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20819,0,14,Volvo,S40 AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,34.6,0.0,Compact Cars,2005,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2082,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1986,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20820,0,14,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Compact Cars,2005,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20821,0,14,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.0179,0.0,37.8481,0.0,Compact Cars,2005,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20822,0,14,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.1,0.0,40.0,0.0,Compact Cars,2005,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20823,0,14,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6,0.0,37.9,0.0,Compact Cars,2005,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20824,0,14,Volvo,S60 AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4725,0.0,33.4684,0.0,Compact Cars,2005,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20825,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.6,0.0,37.1,0.0,Compact Cars,2005,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20826,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Compact Cars,2005,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20827,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,35.6,0.0,Compact Cars,2005,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20828,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.8,0.0,37.0,0.0,Compact Cars,2005,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20829,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.6,0.0,37.9,0.0,Compact Cars,2005,-1750,,CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2083,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Compact Cars,1986,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20830,0,14,Volvo,S60 R AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Compact Cars,2005,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20831,0,14,Volvo,S60 R AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),19.766,0.0,31.162,0.0,Compact Cars,2005,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20832,0,13,Acura,RL,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,33.0439,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC 4,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20833,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5,0.0,37.0,0.0,Midsize Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,SOHC 4,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20834,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.7,0.0,Midsize Cars,2005,-2250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20836,0,15,Audi,A8,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4975,0.0,31.1008,0.0,Midsize Cars,2005,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,20837,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Midsize Cars,2005,-15500,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20838,0,14,BMW,525i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.0,0.0,36.2,0.0,Midsize Cars,2005,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20839,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.2,0.0,Midsize Cars,2005,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2084,17,17,Volkswagen,Jetta GLI,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Compact Cars,1986,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20840,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1254,0.0,38.153,0.0,Midsize Cars,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20841,0,14,BMW,530i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2354,0.0,37.2131,0.0,Midsize Cars,2005,-2250,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20842,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4981,0.0,36.8989,0.0,Midsize Cars,2005,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20843,0,14,BMW,545i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,32.4,0.0,Midsize Cars,2005,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20844,0,14,BMW,545i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1469,0.0,33.7,0.0,Midsize Cars,2005,-3750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20845,0,14,BMW,545i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1978,0.0,31.2077,0.0,Midsize Cars,2005,-5750,,4MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20846,0,17,Buick,Century,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,38.2,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20847,0,16,Buick,Lacrosse/Allure,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.8,0.0,Midsize Cars,2005,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20848,0,16,Buick,Lacrosse/Allure,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20849,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,34.5,0.0,Midsize Cars,2005,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2085,17,17,Volkswagen,Jetta GLI,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1986,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20850,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.513,0.0,35.1989,0.0,Midsize Cars,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20851,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5,0.0,34.0,0.0,Midsize Cars,2005,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20852,0,13,Cadillac,CTS-V,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6318,0.0,29.2945,0.0,Midsize Cars,2005,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20853,0,13,Cadillac,STS 2WD,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3,0.0,31.4,0.0,Midsize Cars,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20854,0,13,Cadillac,STS 2WD,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),18.4995,0.0,32.6958,0.0,Midsize Cars,2005,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20855,0,13,Cadillac,STS AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),17.6994,0.0,28.7986,0.0,Midsize Cars,2005,-5750,G,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20856,0,16,Chevrolet,Classic,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.6149,0.0,43.6063,0.0,Midsize Cars,2005,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20857,0,13,Chevrolet,Epica,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,35.4,0.0,Midsize Cars,2005,-1000,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,20858,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,44.4,0.0,Midsize Cars,2005,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20859,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,41.3,0.0,Midsize Cars,2005,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2086,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Compact Cars,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20860,16,0,Chevrolet,Monte Carlo,Y,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,40.5,0.0,Midsize Cars,2005,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20861,16,0,Chevrolet,Monte Carlo,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Midsize Cars,2005,-3000,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20862,16,0,Chevrolet,Monte Carlo,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20863,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2005,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20864,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2005,-500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,20865,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.8,0.0,21.3,0.0,Midsize Cars,2005,-13250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20866,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.3991,0.0,21.5499,0.0,Midsize Cars,2005,-15500,G,3MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20867,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.3641,0.0,43.3201,0.0,Midsize Cars,2005,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20868,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.9914,0.0,43.5319,0.0,Midsize Cars,2005,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC 4,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20869,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4385,0.0,38.4844,0.0,Midsize Cars,2005,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2087,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1986,-2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC 4,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20870,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,38.1,0.0,Midsize Cars,2005,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,95,20871,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,41.4,0.0,Midsize Cars,2005,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,95,20872,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.7459,0.0,43.5963,0.0,Midsize Cars,2005,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20873,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.4,0.0,Midsize Cars,2005,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20874,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,39.1,0.0,Midsize Cars,2005,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20875,0,13,Hyundai,Sonata,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,35.2,0.0,Midsize Cars,2005,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20876,0,13,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.7,0.0,Midsize Cars,2005,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20877,0,15,Hyundai,XG350,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,33.3,0.0,Midsize Cars,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20878,0,14,Infiniti,Q45,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4092,0.0,30.1121,0.0,Midsize Cars,2005,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20879,0,12,Jaguar,S-Type 3.0 Litre,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1995,0.0,33.4997,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2088,0,14,Volvo,240 DL/240 GL,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Compact Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20880,0,12,Jaguar,S-Type 3.0 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.2,0.0,Midsize Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20881,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20882,0,12,Jaguar,S-Type R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2488,0.0,31.2499,0.0,Midsize Cars,2005,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20883,0,24,Jaguar,X-Type Sport Brake,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8995,0.0,33.6988,0.0,Midsize Cars,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20884,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.9,0.0,Midsize Cars,2005,-3000,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20885,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7995,0.0,31.3,0.0,Midsize Cars,2005,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20886,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.4,0.0,34.3,0.0,Midsize Cars,2005,-3750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20887,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,38.5,0.0,Midsize Cars,2005,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20888,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,38.4,0.0,Midsize Cars,2005,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20889,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,35.1,0.0,Midsize Cars,2005,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2089,0,14,Volvo,240 DL/240 GL,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1986,-500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20890,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,35.6,0.0,Midsize Cars,2005,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,98,20891,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7501,0.0,43.4688,0.0,Midsize Cars,2005,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,20892,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,41.7,0.0,Midsize Cars,2005,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20893,0,15,Lexus,ES 330,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,37.8,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20894,0,15,Lexus,GS 300/GS 430,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9726,0.0,31.8922,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20895,0,15,Lexus,GS 300/GS 430,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4718,0.0,29.9479,0.0,Midsize Cars,2005,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20896,0,13,Lincoln,LS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7,0.0,33.8,0.0,Midsize Cars,2005,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20897,0,13,Lincoln,LS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),21.7,0.0,33.8,0.0,Midsize Cars,2005,-3000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20898,0,13,Lincoln,LS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,30.8,0.0,Midsize Cars,2005,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20899,0,13,Lincoln,LS,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3468,0.0,31.1,0.0,Midsize Cars,2005,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4145,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,209,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48101,"(FFS,TRBO) (MPFI)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,2090,0,0,Dodge,GLH-S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Compact Cars,1986,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20900,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,34.6,0.0,Midsize Cars,2005,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20901,0,16,Mercury,Sable,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,34.6,0.0,Midsize Cars,2005,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,96,20902,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0349,0.0,39.8387,0.0,Midsize Cars,2005,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,96,20903,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0942,0.0,35.8974,0.0,Midsize Cars,2005,-500,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,96,20904,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2925,0.0,33.9386,0.0,Midsize Cars,2005,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,20905,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,34.823,0.0,Midsize Cars,2005,-1750,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20906,0,14,Mercedes-Benz,E320,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,35.6,0.0,Midsize Cars,2005,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20907,0,14,Mercedes-Benz,E320 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,31.8,0.0,Midsize Cars,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,20908,0,14,Mercedes-Benz,E320 Cdi,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.5,0.0,47.1,0.0,Midsize Cars,2005,1000,,EMS 2MODE CLKUP,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20909,0,14,Mercedes-Benz,E500,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Midsize Cars,2005,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64001,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2091,0,17,Audi,5000 CS quattro,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize Cars,1986,-3250,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20910,0,14,Mercedes-Benz,E500 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8,0.0,26.1,0.0,Midsize Cars,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20911,0,14,Mercedes-Benz,E55 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),15.7842,0.0,26.9499,0.0,Midsize Cars,2005,-8000,G,EMS 2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20912,0,14,Mitsubishi,Diamante Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,32.1,0.0,Midsize Cars,2005,-4750,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20913,0,13,Mitsubishi,Galant,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3423,0.0,38.0843,0.0,Midsize Cars,2005,0,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20914,0,13,Mitsubishi,Galant,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6177,0.0,34.158,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20915,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0375,0.0,37.7502,0.0,Midsize Cars,2005,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20916,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,40.2,0.0,Midsize Cars,2005,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20917,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,34.8,0.0,Midsize Cars,2005,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20918,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.2,0.0,Midsize Cars,2005,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20919,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,38.7,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2092,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20920,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,37.7,0.0,Midsize Cars,2005,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20921,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.5,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20922,0,16,Pontiac,Grand Prix,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Midsize Cars,2005,-3000,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20923,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0747,0.0,38.2058,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20924,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.0349,0.0,34.1053,0.0,Midsize Cars,2005,-3750,,CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20925,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7238,0.0,23.8,0.0,Midsize Cars,2005,-11250,G,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20926,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1079,0.0,38.642,0.0,Midsize Cars,2005,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20927,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.0232,0.0,36.4234,0.0,Midsize Cars,2005,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20928,0,18,Saturn,L300,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,35.9,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20929,0,13,Suzuki,Verona,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,35.4,0.0,Midsize Cars,2005,-1000,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64002,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2093,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1986,-3250,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,20930,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.9016,0.0,43.4403,0.0,Midsize Cars,2005,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,20931,0,17,Toyota,Camry,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Midsize Cars,2005,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20932,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,36.2,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20933,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,37.8,0.0,Midsize Cars,2005,-1000,,CLKUP,,,,,,, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,HEV,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,20934,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2005,6000,,,,,Hybrid,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20935,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Cars,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20936,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Cars,2005,-1750,,2MODE CLKUP,T,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,20937,0,15,Volkswagen,Passat,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),29.9,0.0,48.4,0.0,Midsize Cars,2005,1000,,3MODE CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20938,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Cars,2005,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20939,0,15,Volkswagen,Passat,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Cars,2005,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2094,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1986,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20940,0,15,Volvo,S80 AWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,33.2,0.0,Midsize Cars,2005,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20941,0,15,Volvo,S80 FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2,0.0,38.0,0.0,Midsize Cars,2005,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20942,0,15,Volvo,S80 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),20.294,0.0,33.6827,0.0,Midsize Cars,2005,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20943,0,15,Audi,A8 L,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4975,0.0,31.1008,0.0,Large Cars,2005,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,20944,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3,0.0,26.3,0.0,Large Cars,2005,-8000,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,20945,0,13,Bentley,Arnage LWB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Large Cars,2005,-15500,G,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20946,0,18,BMW,745i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Large Cars,2005,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20947,0,18,BMW,745li,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,33.5,0.0,Large Cars,2005,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20948,0,18,BMW,760i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2814,0.0,28.9089,0.0,Large Cars,2005,-6750,G,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20949,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2814,0.0,28.9089,0.0,Large Cars,2005,-6750,G,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64002,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2095,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20950,0,18,Buick,LeSabre,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20951,0,19,Buick,Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Large Cars,2005,-3000,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20952,0,19,Buick,Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20953,0,0,Cadillac,Armored Deville,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7183,0.0,25.3807,0.0,Large Cars,2005,-6250,G,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20954,0,19,Cadillac,DeVille,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300HP,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20955,0,19,Cadillac,DeVille,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,33.9,0.0,Large Cars,2005,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,20956,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7183,0.0,25.3807,0.0,Large Cars,2005,-6250,G,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20957,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,27.2,0.0,Large Cars,2005,-5250,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,20958,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,40.5,0.0,Large Cars,2005,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20959,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Large Cars,2005,-3000,,CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2096,16,16,Buick,Century,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Midsize Cars,1986,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20960,0,18,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0259,0.0,37.9399,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,23,106,20961,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,38.4615,0.0,Large Cars,2005,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20962,0,24,Chrysler,300C AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2005,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20963,0,24,Chrysler,300C AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2005,-3250,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20964,0,24,Chrysler,300C/SRT-8,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2005,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20965,0,24,Chrysler,300C/SRT-8,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2005,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20966,0,24,Chrysler,300C/SRT-8,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7979,0.0,31.4992,0.0,Large Cars,2005,-3250,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20967,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8831,0.0,32.0675,0.0,Large Cars,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20968,0,21,Ford,Five Hundred AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.1499,0.0,32.6972,0.0,Large Cars,2005,-2500,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20969,0,21,Ford,Five Hundred FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.0,0.0,35.2,0.0,Large Cars,2005,-1750,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2097,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20970,0,21,Ford,Five Hundred FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20971,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,34.6,0.0,Large Cars,2005,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20972,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,34.6,0.0,Large Cars,2005,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20973,0,15,Jaguar,Super V8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2488,0.0,31.2499,0.0,Large Cars,2005,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20974,0,15,Jaguar,Vdp Lwb,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6995,0.0,34.4988,0.0,Large Cars,2005,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20975,0,16,Jaguar,XJ8 4.2 Litre,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Large Cars,2005,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20976,0,15,Jaguar,XJ8l,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4499,0.0,35.4997,0.0,Large Cars,2005,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20977,0,16,Jaguar,XJR 4.2 Litre,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.2499,0.0,Large Cars,2005,-4750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20978,0,15,Kia,Amanti,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,31.9,0.0,Large Cars,2005,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20979,0,16,Lexus,LS 430,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7581,0.0,31.8074,0.0,Large Cars,2005,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2098,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20980,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8831,0.0,32.0675,0.0,Large Cars,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20981,0,21,Mercury,Montego AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.1499,0.0,32.6972,0.0,Large Cars,2005,-2500,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,20982,0,21,Mercury,Montego FWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.0,0.0,35.2,0.0,Large Cars,2005,-1750,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20983,0,21,Mercury,Montego FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,20984,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8831,0.0,32.0675,0.0,Large Cars,2005,-2500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,20985,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,0.0,19.8499,0.0,Large Cars,2005,-13250,G,3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20986,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.3,0.0,22.2,0.0,Large Cars,2005,-11250,,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,20987,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.4,0.0,21.9,0.0,Large Cars,2005,-11250,,EMS 2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,20988,0,15,Mercedes-Benz,S430,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4,0.0,33.5,0.0,Large Cars,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20989,0,15,Mercedes-Benz,S430 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,28.5,0.0,Large Cars,2005,-5750,G,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4402,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2099,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20990,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Large Cars,2005,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20991,0,15,Mercedes-Benz,S500 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,27.6,0.0,Large Cars,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,20992,0,15,Mercedes-Benz,S55 AMG,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S5),15.8943,0.0,27.9499,0.0,Large Cars,2005,-8000,G,EMS 2MODE CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20993,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,23.9,0.0,Large Cars,2005,-11250,G,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,20994,0,18,Pontiac,Bonneville,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.8,0.0,Large Cars,2005,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,20995,0,18,Pontiac,Bonneville,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,2005,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,20996,0,13,Volkswagen,Phaeton,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4,0.0,28.5986,0.0,Large Cars,2005,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,20997,0,13,Volkswagen,Phaeton,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S5),13.6,0.0,24.0,0.0,Large Cars,2005,-11250,G,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,20998,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6,0.0,38.9,0.0,Small Station Wagons,2005,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,20999,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4655,0.0,36.8743,0.0,Small Station Wagons,2005,-2250,,3MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,Rear-Wheel Drive,56010,(ROTARY),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Two Seaters,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,210,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4405,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2100,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21000,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3754,0.0,33.4805,0.0,Small Station Wagons,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21001,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2445,0.0,32.9971,0.0,Small Station Wagons,2005,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21002,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5105,0.0,27.1174,0.0,Small Station Wagons,2005,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21003,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0836,0.0,29.3724,0.0,Small Station Wagons,2005,-6750,G,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21004,0,26,BMW,325i Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Small Station Wagons,2005,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21005,0,26,BMW,325i Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3158,0.0,34.7275,0.0,Small Station Wagons,2005,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21006,0,26,BMW,325xi Sport Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1,0.0,33.7,0.0,Small Station Wagons,2005,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21007,0,26,BMW,325xi Sport Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,33.4,0.0,Small Station Wagons,2005,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21008,0,12,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,35.9,0.0,Small Station Wagons,2005,-1000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21009,0,12,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.9,0.0,Small Station Wagons,2005,-1000,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4404,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2101,16,0,Buick,Regal,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1986,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21010,0,31,Mercedes-Benz,C240 4matic (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,30.2,0.0,Small Station Wagons,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,25,94,21011,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8441,0.0,36.6055,0.0,Small Station Wagons,2005,-500,,CMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21012,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.7,0.0,43.8,0.0,Small Station Wagons,2005,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21013,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2005,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,21014,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,46.6,0.0,Small Station Wagons,2005,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21015,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.3,0.0,41.1,0.0,Small Station Wagons,2005,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,E2.0LAA,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21016,0,18,Saab,9-2x Wagon AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0943,0.0,31.8538,0.0,Small Station Wagons,2005,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,E2.0LMA,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21017,0,18,Saab,9-2x Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6982,0.0,33.6772,0.0,Small Station Wagons,2005,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,E2.5CAB,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21018,0,18,Saab,9-2x Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,37.0,0.0,Small Station Wagons,2005,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,E2.5CMB,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21019,0,18,Saab,9-2x Wagon AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,37.7,0.0,Small Station Wagons,2005,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2102,16,0,Buick,Regal,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1986,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21020,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3632,0.0,32.8686,0.0,Small Station Wagons,2005,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21021,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9711,0.0,34.4961,0.0,Small Station Wagons,2005,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21022,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8623,0.0,36.2274,0.0,Small Station Wagons,2005,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21023,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0241,0.0,38.1096,0.0,Small Station Wagons,2005,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21024,0,13,Suzuki,Aerio SX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,0.0,39.1,0.0,Small Station Wagons,2005,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21025,0,13,Suzuki,Aerio SX,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6,0.0,Small Station Wagons,2005,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21026,0,10,Suzuki,Aerio SX AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Small Station Wagons,2005,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21027,0,12,Suzuki,Forenza Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,35.9,0.0,Small Station Wagons,2005,-1000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21028,0,12,Suzuki,Forenza Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.7,0.0,37.9,0.0,Small Station Wagons,2005,-1000,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21029,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6145,0.0,43.6936,0.0,Small Station Wagons,2005,1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4304,(307) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2103,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21030,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,40.3,0.0,Small Station Wagons,2005,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,21031,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.36,0.0,46.4691,0.0,Small Station Wagons,2005,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21032,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1804,0.0,40.3986,0.0,Small Station Wagons,2005,0,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21033,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.6,0.0,44.7,0.0,Small Station Wagons,2005,2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21034,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.3,0.0,43.5,0.0,Small Station Wagons,2005,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21035,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,39.994,0.0,Small Station Wagons,2005,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21036,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2363,0.0,37.2843,0.0,Small Station Wagons,2005,-1750,,2MODE CLKUP,T,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,21037,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0012,0.0,55.1223,0.0,Small Station Wagons,2005,3250,,,T,,Diesel,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,21038,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),35.6943,0.0,55.3104,0.0,Small Station Wagons,2005,2750,,3MODE CLKUP,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21039,0,34,Volkswagen,Jetta Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2981,0.0,37.637,0.0,Small Station Wagons,2005,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2104,14,0,Buick,Riviera,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21040,0,34,Volkswagen,Jetta Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5131,0.0,38.907,0.0,Small Station Wagons,2005,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,32,93,21041,0,0,Volvo,V50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,34.4,0.0,Small Station Wagons,2005,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,32,93,21042,0,0,Volvo,V50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4725,0.0,33.4684,0.0,Small Station Wagons,2005,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,21043,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Small Station Wagons,2005,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,21044,0,0,Volvo,V50 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.0179,0.0,37.8481,0.0,Small Station Wagons,2005,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,93,21045,0,0,Volvo,V50 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.1,0.0,40.0,0.0,Small Station Wagons,2005,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,21046,0,0,Volvo,V50 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6,0.0,37.9,0.0,Small Station Wagons,2005,-1750,,2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21047,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5595,0.0,40.6,0.0,Midsize Station Wagons,2005,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21048,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,44.4,0.0,Midsize Station Wagons,2005,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21049,0,39,Ford,Taurus Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,32.6,0.0,Midsize Station Wagons,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2105,14,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21050,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,34.1,0.0,Midsize Station Wagons,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,2V,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21051,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,32.6,0.0,Midsize Station Wagons,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,4V,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21052,0,39,Mercury,Sable Wagon,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,34.1,0.0,Midsize Station Wagons,2005,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21053,0,34,Mazda,6 Sport Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2925,0.0,33.9386,0.0,Midsize Station Wagons,2005,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21054,0,34,Mazda,6 Sport Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,34.823,0.0,Midsize Station Wagons,2005,-1750,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21055,0,41,Mercedes-Benz,E320 (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,35.3,0.0,Midsize Station Wagons,2005,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21056,0,41,Mercedes-Benz,E320 4matic (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,30.8,0.0,Midsize Station Wagons,2005,-3750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21057,0,41,Mercedes-Benz,E500 4matic (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,25.5,0.0,Midsize Station Wagons,2005,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21058,0,41,Mercedes-Benz,E55 AMG (Wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),15.9975,0.0,26.6454,0.0,Midsize Station Wagons,2005,-8000,G,EMS 2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21059,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1079,0.0,38.642,0.0,Midsize Station Wagons,2005,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2106,0,14,Cadillac,Seville,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21060,0,37,Saab,9-5 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.0232,0.0,36.4234,0.0,Midsize Station Wagons,2005,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21061,0,34,Saturn,LW300,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,35.9,0.0,Midsize Station Wagons,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21062,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0991,0.0,32.3197,0.0,Midsize Station Wagons,2005,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21063,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0241,0.0,38.1096,0.0,Midsize Station Wagons,2005,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21064,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),24.9993,0.0,38.1044,0.0,Midsize Station Wagons,2005,0,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21065,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9863,0.0,31.499,0.0,Midsize Station Wagons,2005,-3750,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21066,0,39,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,39.7,0.0,Midsize Station Wagons,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21067,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8,0.0,38.9,0.0,Midsize Station Wagons,2005,-1750,,2MODE CLKUP,T,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,21068,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),29.9,0.0,48.4,0.0,Midsize Station Wagons,2005,1000,,3MODE CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21069,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.1,0.0,Midsize Station Wagons,2005,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2107,16,16,Chevrolet,Celebrity,Y,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Midsize Cars,1986,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21070,0,39,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,34.5,0.0,Midsize Station Wagons,2005,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21071,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,38.8,0.0,Midsize Station Wagons,2005,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21072,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3518,0.0,36.7895,0.0,Midsize Station Wagons,2005,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21073,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.578,0.0,33.5211,0.0,Midsize Station Wagons,2005,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,21074,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4725,0.0,33.4684,0.0,Midsize Station Wagons,2005,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,21075,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.0978,0.0,36.097,0.0,Midsize Station Wagons,2005,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,21076,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Midsize Station Wagons,2005,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,21077,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8,0.0,33.6,0.0,Midsize Station Wagons,2005,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,21078,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,33.3,0.0,Midsize Station Wagons,2005,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,21079,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.2,0.0,38.0,0.0,Midsize Station Wagons,2005,-1750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4243,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2108,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,40.0,0.0,Midsize Cars,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,21080,0,0,Volvo,V70 R AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Midsize Station Wagons,2005,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,36,98,21081,0,0,Volvo,V70 R AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.766,0.0,31.162,0.0,Midsize Station Wagons,2005,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21082,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.6,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21083,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8402,0.0,26.9497,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21084,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7999,0.0,27.6999,0.0,Standard Pickup Trucks 2WD,2005,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21085,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2996,0.0,26.7837,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21086,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks 2WD,2005,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21087,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.437,0.0,26.2294,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21088,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2005,-8000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21089,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7416,0.0,31.6318,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2109,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21090,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0526,0.0,33.9768,0.0,Standard Pickup Trucks 2WD,2005,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21091,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0972,0.0,29.9958,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21092,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3407,0.0,32.2173,0.0,Standard Pickup Trucks 2WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21093,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21094,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,33.9,0.0,Standard Pickup Trucks 2WD,2005,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21095,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21096,0,0,Chevrolet,SSR Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2005,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21097,0,0,Chevrolet,SSR Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.5,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2005,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21098,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21099,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.8427,0.0,Standard Pickup Trucks 2WD,2005,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,211,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,31.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2110,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21100,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5,0.0,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21101,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21102,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.0967,0.0,Standard Pickup Trucks 2WD,2005,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21103,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3907,0.0,23.8693,0.0,Standard Pickup Trucks 2WD,2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21104,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0979,0.0,23.0769,0.0,Standard Pickup Trucks 2WD,2005,-7750,,CLKUP,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,6700,0,Premium,Premium Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,21105,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.0,0.0,15.7,0.0,Standard Pickup Trucks 2WD,2005,-21500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,21106,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.4734,0.0,18.7,0.0,Standard Pickup Trucks 2WD,2005,-18250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21107,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21108,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.4,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2005,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21109,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3124,0.0,24.2686,0.0,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2111,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21110,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8603,0.0,23.9027,0.0,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21111,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2416,0.0,33.4997,0.0,Standard Pickup Trucks 2WD,2005,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21112,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1399,0.0,37.0781,0.0,Standard Pickup Trucks 2WD,2005,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21113,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7006,0.0,28.7013,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21114,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8998,0.0,29.1004,0.0,Standard Pickup Trucks 2WD,2005,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21115,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21116,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,29.3,0.0,Standard Pickup Trucks 2WD,2005,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21117,0,0,GMC,Sierra 15 Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.6,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21118,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21119,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2005,-5250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2112,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21120,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2996,0.0,26.8128,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21121,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks 2WD,2005,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21122,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4477,0.0,26.2379,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21123,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2005,-8000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21124,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7508,0.0,31.5951,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21125,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1316,0.0,34.0164,0.0,Standard Pickup Trucks 2WD,2005,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21126,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1224,0.0,30.0223,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21127,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3341,0.0,32.2305,0.0,Standard Pickup Trucks 2WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21128,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21129,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,33.9,0.0,Standard Pickup Trucks 2WD,2005,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2113,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21130,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21131,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2416,0.0,33.4997,0.0,Standard Pickup Trucks 2WD,2005,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21132,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1399,0.0,37.0781,0.0,Standard Pickup Trucks 2WD,2005,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21133,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6574,0.0,28.6723,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21134,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7918,0.0,29.3118,0.0,Standard Pickup Trucks 2WD,2005,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21135,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4722,0.0,23.7749,0.0,Standard Pickup Trucks 2WD,2005,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21136,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.006,0.0,33.9082,0.0,Standard Pickup Trucks 2WD,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21137,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4996,0.0,34.6,0.0,Standard Pickup Trucks 2WD,2005,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21138,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21139,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7,0.0,26.3,0.0,Standard Pickup Trucks 2WD,2005,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2114,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21140,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.372,0.0,28.4087,0.0,Standard Pickup Trucks 2WD,2005,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21141,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5538,0.0,25.7778,0.0,Standard Pickup Trucks 2WD,2005,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21142,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4727,0.0,23.6358,0.0,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21143,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21144,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21145,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.7,0.0,Standard Pickup Trucks 4WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21146,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,30.6,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21147,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21148,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21149,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.8,0.0,Standard Pickup Trucks 4WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4173,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2115,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21150,0,0,Chevrolet,Silverado 15 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21151,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8013,0.0,23.1462,0.0,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21152,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.485,0.0,25.0228,0.0,Standard Pickup Trucks 4WD,2005,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21153,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.435,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21154,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2005,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21155,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4097,0.0,23.783,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21156,0,0,Chevrolet,Silverado 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,20.7329,0.0,Standard Pickup Trucks 4WD,2005,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21157,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9094,0.0,24.5096,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21158,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1978,0.0,25.7452,0.0,Standard Pickup Trucks 4WD,2005,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21159,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1735,0.0,22.832,0.0,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2116,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21160,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4742,0.0,21.7949,0.0,Standard Pickup Trucks 4WD,2005,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21161,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2135,0.0,22.5054,0.0,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21162,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,22.9,0.0,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21163,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9994,0.0,25.5965,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21164,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9979,0.0,26.3491,0.0,Standard Pickup Trucks 4WD,2005,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21165,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2328,0.0,25.1826,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21166,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2669,0.0,24.1445,0.0,Standard Pickup Trucks 4WD,2005,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21167,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21168,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21169,0,0,GMC,Canyon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,28.7,0.0,Standard Pickup Trucks 4WD,2005,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2117,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21170,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,30.6,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21171,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.4,0.0,Standard Pickup Trucks 4WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21172,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2005,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21173,0,0,GMC,Canyon Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.8,0.0,Standard Pickup Trucks 4WD,2005,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21174,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21175,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1275,0.0,23.6835,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21176,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.582,0.0,25.1393,0.0,Standard Pickup Trucks 4WD,2005,-6250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21177,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5993,0.0,24.8017,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21178,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2005,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21179,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4606,0.0,23.8213,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2118,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21180,0,0,GMC,Sierra 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,20.7329,0.0,Standard Pickup Trucks 4WD,2005,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21181,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2328,0.0,25.1826,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21182,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.2669,0.0,24.1445,0.0,Standard Pickup Trucks 4WD,2005,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21183,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0,0.0,23.2217,0.0,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21184,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,29.3,0.0,Standard Pickup Trucks 4WD,2005,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21185,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2517,0.0,27.2833,0.0,Standard Pickup Trucks 4WD,2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21186,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2005,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21187,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6154,0.0,22.8704,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21188,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,28.1,0.0,"Vans, Cargo Type",2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21189,0,0,Chevrolet,Astro 2WD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.6,0.0,"Vans, Cargo Type",2005,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,96,2119,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21190,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21191,0,0,Chevrolet,Astro AWD (cargo) Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21192,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.5,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21193,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.9,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21194,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4797,0.0,26.2164,0.0,"Vans, Cargo Type",2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21195,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8269,0.0,25.6272,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21196,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21197,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.7,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21198,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.7,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21199,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.2,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4180,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,212,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,96,2120,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21200,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.1,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21201,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.5,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21202,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.9,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21203,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0679,0.0,25.5035,0.0,"Vans, Cargo Type",2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21204,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8355,0.0,25.6359,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21205,0,0,GMC,Savana 15/25 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21206,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.7,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21207,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,28.1,0.0,"Vans, Cargo Type",2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21208,0,0,GMC,Safari 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.6,0.0,"Vans, Cargo Type",2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21209,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,"Vans, Cargo Type",2005,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,96,2121,0,0,Chrysler,LeBaron GTS,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize Cars,1986,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21210,0,0,GMC,Safari AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Cargo Type",2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21211,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.1,0.0,"Vans, Passenger Type",2005,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21212,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21213,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.7,0.0,"Vans, Passenger Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21214,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.9,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21215,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21216,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,24.1,0.0,"Vans, Passenger Type",2005,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21217,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.3,0.0,"Vans, Passenger Type",2005,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21218,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.7,0.0,"Vans, Passenger Type",2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21219,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,0.0,22.9,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,2122,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Midsize Cars,1986,-3000,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21220,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21221,0,0,GMC,Safari 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.1,0.0,"Vans, Passenger Type",2005,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21222,0,0,GMC,Safari AWD (Passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,22.0,0.0,"Vans, Passenger Type",2005,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21223,0,0,Buick,Terraza FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.3,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21224,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.3,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21225,0,0,Chevrolet,Venture FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.4,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21226,0,0,Chrysler,Voyager/Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6615,0.0,32.9467,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21227,0,0,Chrysler,Voyager/Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21228,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.5481,0.0,Minivan - 2WD,2005,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21229,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,33.8482,0.0,Minivan - 2WD,2005,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,96,2123,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21230,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21231,0,0,Ford,Freestar Cargo Van FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.9,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21232,0,0,Ford,Freestar Cargo Van FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3105,0.0,29.115,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21233,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,29.9,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21234,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2845,0.0,29.0712,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21235,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7,0.0,36.1,0.0,Minivan - 2WD,2005,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VTEC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21236,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,32.5,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21237,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,28.7,0.0,Minivan - 2WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21238,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9828,0.0,31.7766,0.0,Minivan - 2WD,2005,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21239,0,0,Mercury,Monterey Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3105,0.0,29.115,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,96,2124,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Midsize Cars,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21240,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21241,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2346,0.0,32.3398,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21242,0,0,Pontiac,Monterey Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.4,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21243,0,0,Pontiac,Montana SVX FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.3,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21244,0,0,Saturn,Relay FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,31.3,0.0,Minivan - 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21245,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,33.5,0.0,Minivan - 2WD,2005,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21246,0,0,Buick,Terraza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2005,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21247,0,0,Chevrolet,Uplander AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2005,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21248,0,0,Pontiac,Montana SVX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2005,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21249,0,0,Saturn,Relay AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2125,0,13,Chrysler,Limousine,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21250,0,0,Toyota,Sienna 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2308,0.0,30.5213,0.0,Minivan - 4WD,2005,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21251,0,0,Buick,Rainier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,27.4,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21252,0,0,Buick,Rainier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,26.2,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21253,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21254,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21255,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21256,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.9,0.0,Sport Utility Vehicle - 2WD,2005,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21257,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2995,0.0,29.9459,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21258,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.7,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2005,-6750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21259,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2126,17,17,Chrysler,New Yorker,N,false,95,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21260,0,0,Chevrolet,Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21261,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21262,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21263,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21264,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,27.4,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21265,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21266,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5498,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21267,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6499,0.0,29.526,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21268,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21269,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2005,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2127,17,17,Chrysler,New Yorker,N,false,95,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21270,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21271,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2005,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21272,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2005,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21273,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2005,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21274,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21275,0,0,Chrysler,PT Cruiser Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2005,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21276,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2005,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21277,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21278,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,0.0,23.9,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21279,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2700,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2128,0,16,Chrysler,Newport/Fifth Avenue,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1986,-6750,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21280,0,0,Dodge,Magnum 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21281,0,0,Dodge,Magnum 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21282,0,0,Dodge,Magnum 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7979,0.0,31.4992,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21283,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21284,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2005,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21285,0,0,Ford,Escape 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,HEV,-1,1900,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21286,0,0,Ford,Escape Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6,0.0,39.4423,0.0,Sport Utility Vehicle - 2WD,2005,2500,,VLKUP,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21287,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,24.4,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21288,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2832,0.0,26.4494,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21289,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1716,0.0,25.0612,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2129,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.8974,0.0,Midsize Cars,1986,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21290,0,0,Ford,Freestyle FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.4,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,VMODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21291,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21292,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21293,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,27.4,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21294,0,0,GMC,Envoy XL 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21295,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5498,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21296,0,0,GMC,Envoy XUV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,DOD,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21297,0,0,GMC,Envoy XUV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,26.5,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21298,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.6,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2005,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21299,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.8,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,213,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1985,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2460,(POLICE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2130,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,I4,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21300,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21301,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21302,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21303,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2005,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21304,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,35.2,0.0,Sport Utility Vehicle - 2WD,2005,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21305,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21306,0,0,Infiniti,FX35 RWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8389,0.0,30.0776,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21307,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8,0.0,24.3,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21308,0,0,Isuzu,Ascender 5-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,27.4,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21309,0,0,Isuzu,Ascender 7-passenger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2131,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize Cars,1986,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21310,0,0,Isuzu,Ascender 7-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5498,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21311,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,28.5,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21312,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21313,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21314,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21315,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21316,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21317,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21318,0,0,Lexus,RX 330 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6294,0.0,32.3305,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21319,0,0,Lexus,RX 330 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2560,(POLICE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2132,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21320,0,0,Lincoln,Aviator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,22.9,0.0,Sport Utility Vehicle - 2WD,2005,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21321,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.1,0.0,22.8,0.0,Sport Utility Vehicle - 2WD,2005,-11250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21322,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21323,0,0,Mazda,Tribute 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2005,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21324,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21325,0,0,Mercury,Mariner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.504,0.0,32.927,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21326,0,0,Mercury,Mariner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9289,0.0,31.4353,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21327,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2832,0.0,26.4494,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21328,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1716,0.0,25.0612,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21329,0,0,Mitsubishi,Endeavor 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.3,0.0,29.8,0.0,Sport Utility Vehicle - 2WD,2005,-4750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2133,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21330,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,35.5,0.0,Sport Utility Vehicle - 2WD,2005,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21331,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.7505,0.0,33.6451,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21332,0,0,Nissan,Armada 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9764,0.0,24.2614,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21333,0,0,Nissan,Murano FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.3,0.0,32.1,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21334,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8381,0.0,29.2253,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21335,0,0,Pontiac,Aztek FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21336,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.6,0.0,35.8974,0.0,Sport Utility Vehicle - 2WD,2005,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21337,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21338,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,2005,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21339,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2134,0,16,Dodge,Diplomat,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Midsize Cars,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21340,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21341,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,28.5,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21342,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.8,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21343,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21344,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2713,0.0,28.2584,0.0,Sport Utility Vehicle - 2WD,2005,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21345,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2005,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21346,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2005,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21347,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,37.2,0.0,Sport Utility Vehicle - 2WD,2005,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21348,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5499,0.0,38.3,0.0,Sport Utility Vehicle - 2WD,2005,0,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21349,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,23.0996,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2700,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2135,0,16,Dodge,Diplomat,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1986,-6750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,42,101,21350,0,0,Volvo,XC 90 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2005,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,VTEC,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21351,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,29.3,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21352,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.6,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21353,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21354,0,0,Audi,Allroad quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.8,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21355,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,2005,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21356,0,0,BMW,X3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.5,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21357,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2005,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21358,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.7,0.0,29.8,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21359,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2760,(POLICE) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2136,0,16,Dodge,Diplomat,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,19.0,0.0,Midsize Cars,1986,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21360,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21361,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21362,0,0,BMW,X5 4.8is,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21363,0,0,Buick,Rainier AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21364,0,0,Buick,Rainier AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21365,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21366,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21367,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21368,0,0,Cadillac,Escalade ESV AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21369,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,96,2137,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21370,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5994,0.0,28.6457,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21371,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21372,0,0,Chevrolet,Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21373,0,0,Chevrolet,Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21374,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21375,0,0,Chevrolet,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21376,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21377,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21378,0,0,Chevrolet,Tahoe 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21379,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,96,2138,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21380,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21381,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9498,0.0,24.3491,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21382,0,0,Chrysler,Pacifica AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3995,0.0,28.0996,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21383,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21384,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5,0.0,22.8,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21385,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21386,0,0,Dodge,Magnum AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21387,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,27.9349,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21388,0,0,Ford,Escape 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21389,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,27.9943,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,96,2139,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize Cars,1986,1500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21390,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.6,0.0,36.9,0.0,Sport Utility Vehicle - 4WD,2005,1750,,VLKUP,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21391,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21392,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9635,0.0,25.1246,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21393,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5158,0.0,23.4389,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21394,0,0,Ford,Freestyle AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.8804,0.0,31.0608,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,VMODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21395,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21396,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21397,0,0,GMC,Envoy XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9498,0.0,24.3491,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21398,0,0,GMC,Envoy XUV 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21399,0,0,GMC,Envoy XUV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9498,0.0,24.3491,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,214,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1985,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,2140,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Midsize Cars,1986,-3000,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21400,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21401,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21402,0,0,GMC,Yukon 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21403,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21404,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21405,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.5517,0.0,34.6031,0.0,Sport Utility Vehicle - 4WD,2005,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21406,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,32.8,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,VTEC,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21407,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,27.9,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21408,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21409,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,96,2141,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21410,0,23,Hyundai,Tucson 4WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21411,0,23,Hyundai,Tucson 4WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21412,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.0787,0.0,27.7182,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21413,0,0,Infiniti,FX45 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.7,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21414,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21415,0,0,Isuzu,Ascender 5-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21416,0,0,Isuzu,Ascender 7-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,DOD,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21417,0,0,Isuzu,Ascender 7-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9498,0.0,24.3491,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21418,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21419,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CMODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,96,2142,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Midsize Cars,1986,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21420,0,0,Jeep,Liberty/Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,30.4,0.0,Sport Utility Vehicle - 4WD,2005,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21421,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21422,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21423,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21424,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21425,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21426,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1498,0.0,25.0451,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21427,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.5,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21428,0,0,Land Rover,Freelander,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6249,0.0,26.4243,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21429,0,0,Land Rover,LR3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.422,0.0,24.2123,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,6MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2143,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21430,0,0,Land Rover,LR3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,6MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,448S,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21431,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.2391,0.0,20.4761,0.0,Sport Utility Vehicle - 4WD,2005,-13250,,EMS 3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21432,0,0,Lexus,LX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4971,0.0,21.394,0.0,Sport Utility Vehicle - 4WD,2005,-9250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21433,0,0,Lexus,RX 330 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4523,0.0,30.557,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21434,0,0,Lexus,RX 330 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21435,0,0,Lincoln,Aviator 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1484,0.0,22.549,0.0,Sport Utility Vehicle - 4WD,2005,-11250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21436,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,27.9349,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21437,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21438,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,27.9943,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,21439,0,49,Mercedes-Benz,G500,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.0,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2005,-13250,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2144,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,21440,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,18.3,0.0,Sport Utility Vehicle - 4WD,2005,-13250,,EMS 2MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21441,0,41,Mercedes-Benz,ML350,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9,0.0,23.1,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21442,0,41,Mercedes-Benz,ML500,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9,0.0,22.1,0.0,Sport Utility Vehicle - 4WD,2005,-9500,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21443,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9349,0.0,29.5884,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21444,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3702,0.0,28.9177,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21445,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4699,0.0,24.1381,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21446,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.5158,0.0,23.4389,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21447,0,0,Mitsubishi,Endeavor 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.9,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21448,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21449,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,34.2,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2145,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21450,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.7798,0.0,32.1806,0.0,Sport Utility Vehicle - 4WD,2005,-1750,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21451,0,0,Nissan,Armada 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5359,0.0,22.9893,0.0,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21452,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2005,-1750,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21453,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7106,0.0,26.639,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21454,0,0,Pontiac,Aztek AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21455,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21456,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.2,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21457,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2005,-9500,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21458,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2005,-9500,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21459,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3306,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2146,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21460,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21461,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,35.4,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21462,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8204,0.0,31.7754,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21463,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,34.2,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21464,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.5,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2005,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21465,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21466,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8623,0.0,36.2274,0.0,Sport Utility Vehicle - 4WD,2005,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21467,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21468,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0241,0.0,38.1096,0.0,Sport Utility Vehicle - 4WD,2005,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21469,0,0,Subaru,Outback AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5382,0.0,32.5839,0.0,Sport Utility Vehicle - 4WD,2005,-3000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2147,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21470,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8204,0.0,31.7754,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21471,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4257,0.0,36.2715,0.0,Sport Utility Vehicle - 4WD,2005,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21472,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.9471,0.0,36.2383,0.0,Sport Utility Vehicle - 4WD,2005,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21473,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21474,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5382,0.0,32.5839,0.0,Sport Utility Vehicle - 4WD,2005,-3000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21475,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21476,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2005,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21477,0,0,Suzuki,Grand Vitara XL7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21478,0,0,Suzuki,Grand Vitara XL7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21479,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3407,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2148,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21480,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21481,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21482,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4971,0.0,21.394,0.0,Sport Utility Vehicle - 4WD,2005,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21483,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,34.0,0.0,Sport Utility Vehicle - 4WD,2005,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21484,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21485,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4496,0.0,22.4947,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21486,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.9,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21487,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,23.4473,0.0,Sport Utility Vehicle - 4WD,2005,-9500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21488,0,0,Volvo,XC 70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2005,-3750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21489,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8904,0.0,27.9812,0.0,Sport Utility Vehicle - 4WD,2005,-5750,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3405,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2149,0,17,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Midsize Cars,1986,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21490,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),16.8,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2005,-6750,,2MODE CLKUP,T,,,,,, +16.4805,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3000,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,21491,0,12,Mercedes-Benz,C240 FFV,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8,16.0,32.0,23.8,Compact Cars,2005,-3000,,EMS 2MODE CLKUP,,,FFV,E85,310,, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,3250,Premium or E85,Premium Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,21492,0,12,Mercedes-Benz,C320 FFV,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,15.9,33.7,24.3,Compact Cars,2005,-3000,,EMS 2MODE CLKUP,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,3250,Premium or E85,Premium Gasoline,-1,-1,22,0.0,17,0.0,0.0,0.0,0.0,16,85,21493,0,0,Mercedes-Benz,C320 Sports Coupe FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,15.3,30.6,23.3,Compact Cars,2005,-3750,,EMS 2MODE CLKUP,,,FFV,E85,300,, +16.4805,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,,-1,3000,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,21494,0,31,Mercedes-Benz,C240 FFV (Wagon),N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8,16.0,32.4,23.8,Small Station Wagons,2005,-3000,,EMS 2MODE CLKUP,,,FFV,E85,310,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21495,11,0,Chrysler,Sebring Convertible,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Compact Cars,2005,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21496,11,0,Chrysler,Sebring Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Compact Cars,2005,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21497,0,16,Chrysler,Sebring 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2005,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21498,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2005,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21499,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2005,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,215,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1985,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3505,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2150,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21500,0,16,Dodge,Stratus 4 Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2005,-1000,,2MODE CLKUP,,,FFV,E85,270,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21501,0,16,Mercury,Sable,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,16.3,34.6,26.0,Midsize Cars,2005,-1750,,CLKUP,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,21502,0,39,Mercury,Sable Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,15.6,32.8,24.6,Midsize Station Wagons,2005,-2500,,CLKUP,,,FFV,E85,290,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,21503,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,16.3,34.6,26.0,Large Cars,2005,-1750,,CLKUP,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,18,0.0,0.0,0.0,0.0,0,0,21504,0,39,Ford,Taurus Wagon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,15.6,32.8,24.6,Midsize Station Wagons,2005,-2500,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,21505,0,0,Ford,Explorer Sport Trac 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2847,12.2309,25.5762,19.2218,Standard Pickup Trucks 2WD,2005,-6250,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,21506,0,0,Ford,Explorer Sport Trac 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0105,11.9895,25.0931,18.6247,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,21507,0,0,Ford,Explorer 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0105,11.9895,25.0931,18.6247,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,21508,0,0,Ford,Explorer 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2847,12.2309,25.5762,19.2218,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,21509,0,0,Mercury,Mountaineer FFV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2847,12.2309,25.5762,19.2218,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,290,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2151,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21510,0,0,Mercury,Mountaineer FFV 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4717,11.5554,24.1406,17.9485,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,270,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21511,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.493,12.3953,23.0769,17.9977,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,FFV,E85,310/460,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,21512,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8203,13.42,25.641,20.4471,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,FFV,E85,310-540,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,21513,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,12.0,24.4,18.5,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,310-540,, +21.974,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,21514,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,12.7,24.9,18.8,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,310-540,, +21.974,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,21515,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,12.7,24.9,18.8,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,310-540,, +21.974,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,21516,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,12.7,24.9,18.8,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,310/540,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,21517,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,12.0,24.4,18.5,Sport Utility Vehicle - 2WD,2005,-6250,,CLKUP,,,FFV,E85,310/540,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21518,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21519,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2152,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21520,0,0,Chevrolet,Suburban 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21521,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21522,0,0,Chevrolet,Tahoe 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21523,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21524,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21525,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21526,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/460,, +0.06634,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,,-1,1100,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21527,0,7,Honda,Civic CNG,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.2,0.0,43.9,0.0,Compact Cars,2005,6500,,,,,CNG,,,, +0.20658400000000002,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,781.1111111111111,9,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3500,0,CNG,Natural Gas,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,21528,0,0,Chevrolet,Silverado 2500 HD 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.1,0.0,15.2,0.0,Standard Pickup Trucks 2WD,2005,-5500,,CLKUP,,,CNG,,,, +0.20658400000000002,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,781.1111111111111,9,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3500,0,CNG,Natural Gas,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,21529,0,0,GMC,Sierra 2500 HD 2WD CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.1,0.0,15.2,0.0,Standard Pickup Trucks 2WD,2005,-5500,,CLKUP,,,CNG,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3306,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2153,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +0.20658400000000002,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,781.1111111111111,9,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3500,0,CNG,Natural Gas,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,21530,0,0,Chevrolet,Silverado 2500 HD 4WD CNG,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.1,0.0,15.1,0.0,Standard Pickup Trucks 4WD,2005,-5500,,CLKUP,,,CNG,,,, +0.20658400000000002,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,781.1111111111111,9,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3500,0,CNG,Natural Gas,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,21531,0,0,GMC,Sierra 2500 HD 4WD CNG,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.1,0.0,15.1,0.0,Standard Pickup Trucks 4WD,2005,-5500,,CLKUP,,,CNG,,,, +17.337486000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,21533,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Minivan - 2WD,2005,-2500,,,,,FFV,E85,300,, +17.337486000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,21534,0,0,Chrysler,Voyager/Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,0.0,0.0,0.0,0.0,Minivan - 2WD,2005,-2500,,,,,FFV,E85,300,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,21535,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.4791,9.7907,19.2308,14.5943,Standard Pickup Trucks 2WD,2005,-11000,,,,,FFV,E85,260,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,21536,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.4791,9.7907,19.2308,14.5943,Standard Pickup Trucks 4WD,2005,-11000,,CLKUP,,,FFV,E85,260,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21537,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.493,12.3953,23.0769,17.9977,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,FFV,E85,310/460,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,HEV,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,21539,0,11,Honda,Accord Hybrid,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,32.2,0.0,46.9,0.0,Midsize Cars,2005,2250,,EMS CLKUP,,,Hybrid,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2154,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21540,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21541,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2005,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21542,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2005,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21543,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1625,0.0,30.929,0.0,Sport Utility Vehicle - 4WD,2005,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21544,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.153,0.0,20.6177,0.0,Two Seaters,2005,-13250,G,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21545,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.0,0.0,21.42,0.0,Two Seaters,2005,-13250,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21546,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9519,0.0,40.7029,0.0,Minicompact Cars,2005,-500,,3MODE CLKUP,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21547,7,0,MINI,Cooper S Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9519,0.0,40.7029,0.0,Minicompact Cars,2005,-500,,3MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,new body style,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21548,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4618,0.0,33.4099,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,new body style,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21549,5,0,Porsche,Carrera 2 Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3931,0.0,33.6685,0.0,Minicompact Cars,2005,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3407,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2155,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,21550,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7,0.0,41.6,0.0,Compact Cars,2005,-500,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21551,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,43.6,0.0,Compact Cars,2005,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21552,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Compact Cars,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21553,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,38.2,0.0,Compact Cars,2005,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21554,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8217,0.0,33.5535,0.0,Compact Cars,2005,-3750,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21555,0,11,BMW,325i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3162,0.0,38.8644,0.0,Compact Cars,2005,-1750,,4MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21556,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.7,0.0,Compact Cars,2005,-6750,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21557,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.045,0.0,38.6,0.0,Compact Cars,2005,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21558,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.174,0.0,38.6509,0.0,Compact Cars,2005,-500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21559,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8217,0.0,33.5535,0.0,Midsize Cars,2005,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3505,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2156,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21560,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,34.1,0.0,Midsize Cars,2005,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21561,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Small Station Wagons,2005,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21562,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,38.2,0.0,Small Station Wagons,2005,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21563,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8217,0.0,33.5535,0.0,Small Station Wagons,2005,-3750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,21564,0,0,Chevrolet,Silverado 2500 HD 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,16.5,0.0,Standard Pickup Trucks 2WD,2005,-13000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21565,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,25.6,0.0,Standard Pickup Trucks 2WD,2005,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21566,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,23.9,0.0,Standard Pickup Trucks 2WD,2005,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,21567,0,0,GMC,Sierra 2500 Hd 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.3,0.0,16.5,0.0,Standard Pickup Trucks 2WD,2005,-13000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21568,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2005,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21569,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7,0.0,29.3,0.0,Standard Pickup Trucks 2WD,2005,-3250,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,36022,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,2157,0,10,Maserati,Quattroporte,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.8889,0.0,13.0,0.0,Midsize Cars,1986,-22500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21570,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Standard Pickup Trucks 2WD,2005,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21571,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2005,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21572,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5766,0.0,26.2517,0.0,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21573,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2005,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21574,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,25.8,0.0,Standard Pickup Trucks 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21575,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2005,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21576,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.1,0.0,22.7,0.0,Standard Pickup Trucks 4WD,2005,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21577,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1793,0.0,26.1688,0.0,Standard Pickup Trucks 4WD,2005,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21578,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7397,0.0,26.6371,0.0,Standard Pickup Trucks 4WD,2005,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21579,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8699,0.0,26.6174,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS) (MPFI),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2158,0,15,Mercedes-Benz,420SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Midsize Cars,1986,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21580,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21581,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,26.2,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21582,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2005,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21583,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,35.2,0.0,Sport Utility Vehicle - 2WD,2005,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21584,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2005,-1750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21585,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6583,0.0,25.4541,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21586,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21587,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21588,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2005,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21589,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,29.3986,0.0,Sport Utility Vehicle - 4WD,2005,-2500,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,20060,(GUZZLER) (FFS) (MPFI),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2159,0,15,Mercedes-Benz,560SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Midsize Cars,1986,-11250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21590,0,0,Lexus,GX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2005,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21591,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21592,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2478,0.0,25.7189,0.0,Sport Utility Vehicle - 4WD,2005,-8000,,2MODE CLKUP,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,21593,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8203,13.42,25.641,20.4471,Standard Pickup Trucks 2WD,2005,-5250,,CLKUP,,,FFV,E85,310/540,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,21594,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6913,11.469,23.9149,17.4273,Standard Pickup Trucks 2WD,2005,-7750,,CLKUP,,,FFV,E85,310/330,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,21595,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1518,10.9906,22.9987,16.6084,Standard Pickup Trucks 4WD,2005,-7750,,CLKUP,,,FFV,E85,310/330,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21596,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7499,0.0,33.6499,0.0,Sport Utility Vehicle - 4WD,2005,-2000,,CMODE,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21597,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),24.0513,0.0,39.1619,0.0,Large Cars,2005,-500,,CLKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,21598,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0012,0.0,55.1223,0.0,Compact Cars,2005,3250,,,T,,Diesel,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,21599,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),39.1083,0.0,53.5772,0.0,Compact Cars,2005,3000,,3MODE,T,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,216,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1985,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2160,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Midsize Cars,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21600,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.3,0.0,35.1,0.0,Midsize Cars,2005,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21601,0,24,Chrysler,300C/SRT-8,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2005,-8000,G,CMODE,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21602,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2005,-7750,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21603,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,27.6,0.0,Sport Utility Vehicle - 2WD,2005,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21604,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2005,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21605,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,26.5,0.0,Sport Utility Vehicle - 4WD,2005,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21606,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7378,0.0,26.8478,0.0,Sport Utility Vehicle - 4WD,2005,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21607,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21608,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21609,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2161,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21610,4,0,Spyker,C8 Laviolette,N,false,47,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.9553,0.0,24.7714,0.0,Minicompact Cars,2005,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21611,0,0,Spyker,C8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.9553,0.0,24.7714,0.0,Two Seaters,2005,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21612,0,0,Spyker,C8 Spyder Wide Body,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.9553,0.0,24.7714,0.0,Two Seaters,2005,-6250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21613,5,0,Aston Martin,DB9 Coupe Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5375,0.0,22.4942,0.0,Minicompact Cars,2005,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21614,5,0,Aston Martin,DB9 Volante Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.8425,0.0,21.9968,0.0,Minicompact Cars,2005,-13250,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21615,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Two Seaters,2006,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21616,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1841,0.0,36.5599,0.0,Two Seaters,2006,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21617,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6641,0.0,32.5215,0.0,Two Seaters,2006,-3750,,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21618,0,0,Cadillac,XLR,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.4,0.0,31.7,0.0,Two Seaters,2006,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21619,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.4,0.0,Two Seaters,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2162,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21620,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,35.1,0.0,Two Seaters,2006,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21621,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3,0.0,33.6,0.0,Two Seaters,2006,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21622,0,0,Chrysler,Crossfire Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2006,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21623,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.9,0.0,Two Seaters,2006,-4750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21624,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2006,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21625,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2006,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21626,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,30.9,0.0,Two Seaters,2006,-4750,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21627,0,0,Chrysler,Crossfire Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2006,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21628,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.4,0.0,25.9,0.0,Two Seaters,2006,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21629,0,0,Ferrari,F430,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,0.0,21.7949,0.0,Two Seaters,2006,-11250,G,SIL 3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2163,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21630,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.9,0.0,22.3,0.0,Two Seaters,2006,-11250,G,SIL,,,,,,, +7.009706,0.0,0.0,0.0,45,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,HEV,-1,1150,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,21631,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),62.8,0.0,71.4,0.0,Two Seaters,2006,6250,,EMS,,,Hybrid,,,, +6.328512,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,170.90384615384616,52,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,HEV,-1,1050,0,Regular,Regular Gasoline,-1,-1,58,0.0,0,0.0,0.0,0.0,0.0,0,0,21632,0,0,Honda,Insight,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,67.0,0.0,84.2,0.0,Two Seaters,2006,6750,,SIL EMS,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21633,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,33.1,0.0,Two Seaters,2006,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21634,0,0,Lamborghini,L-140/715 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.1,0.0,21.1,0.0,Two Seaters,2006,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21635,0,0,Lamborghini,L-140/715 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.6,0.0,21.7949,0.0,Two Seaters,2006,-13250,G,LONG RATIO,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21636,0,0,Lamborghini,L-140/715 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.3,0.0,23.0769,0.0,Two Seaters,2006,-11250,G,LONG RATIO,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21637,0,0,Lamborghini,L-140/715 Gallardo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.7,0.0,21.7949,0.0,Two Seaters,2006,-13250,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,21638,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.2,0.0,17.3,0.0,Two Seaters,2006,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.2,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,21639,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.6,0.0,Two Seaters,2006,-15500,G,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2164,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21640,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,38.0,0.0,Two Seaters,2006,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21641,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0424,0.0,38.5849,0.0,Two Seaters,2006,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21642,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7864,0.0,38.544,0.0,Two Seaters,2006,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21643,7,0,Mercedes-Benz,SL500,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,30.2,0.0,Two Seaters,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21644,7,0,Mercedes-Benz,SL55 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.3,0.0,25.6,0.0,Two Seaters,2006,-8000,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21645,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.3,0.0,Two Seaters,2006,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21646,7,0,Mercedes-Benz,SL65 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.4,0.0,24.9,0.0,Two Seaters,2006,-9500,G,EMS 2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21647,7,0,Mercedes-Benz,SLK280,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,34.8,0.0,Two Seaters,2006,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21648,7,0,Mercedes-Benz,SLK280,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,35.0,0.0,Two Seaters,2006,-3000,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21649,7,0,Mercedes-Benz,SLK350,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.3,0.0,30.8,0.0,Two Seaters,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2165,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21650,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,32.5,0.0,Two Seaters,2006,-3750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21651,7,0,Mercedes-Benz,SLK55 AMG,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.4,0.0,28.1,0.0,Two Seaters,2006,-6750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21652,10,0,Mercedes-Benz,SLR,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.8982,0.0,22.2247,0.0,Two Seaters,2006,-11250,G,EMS 2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21653,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3597,0.0,32.1783,0.0,Two Seaters,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21654,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8475,0.0,31.8346,0.0,Two Seaters,2006,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21655,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9,0.0,31.6,0.0,Two Seaters,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21656,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,31.3,0.0,Two Seaters,2006,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21657,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.3,0.0,Two Seaters,2006,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21658,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5482,0.0,33.4973,0.0,Two Seaters,2006,-3750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21659,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,37.3,0.0,Two Seaters,2006,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4405,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2166,16,16,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21660,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5,0.0,36.3,0.0,Two Seaters,2006,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21661,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2404,0.0,34.0988,0.0,Two Seaters,2006,-3750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21662,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.4,0.0,Two Seaters,2006,-3000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21663,5,0,Aston Martin,DB9 Coupe,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.6,0.0,24.4,0.0,Minicompact Cars,2006,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21664,5,0,Aston Martin,DB9 Coupe Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2006,-13250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21665,5,0,Aston Martin,DB9 Volante,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,0.0,23.4,0.0,Minicompact Cars,2006,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21666,5,0,Aston Martin,DB9 Volante Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2006,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21667,6,0,Aston Martin,V12 Vanquish S,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.1251,0.0,21.9955,0.0,Minicompact Cars,2006,-13250,G,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,65,21668,0,0,Audi,TT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.1,0.0,Minicompact Cars,2006,-2250,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,11,65,21669,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1841,0.0,36.5599,0.0,Minicompact Cars,2006,-2250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2167,16,16,Oldsmobile,Cutlass Supreme,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1986,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,65,21670,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2571,0.0,33.2283,0.0,Minicompact Cars,2006,-3000,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21671,9,0,BMW,325ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,34.5,0.0,Minicompact Cars,2006,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21672,9,0,BMW,325ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5,0.0,33.9,0.0,Minicompact Cars,2006,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21673,9,0,BMW,330ci Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,36.5,0.0,Minicompact Cars,2006,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21674,9,0,BMW,330ci Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2029,0.0,32.2542,0.0,Minicompact Cars,2006,-3750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21675,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,29.5431,0.0,Minicompact Cars,2006,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21676,9,0,BMW,M3 Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7191,0.0,28.1243,0.0,Minicompact Cars,2006,-6750,G,6MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21677,10,0,Jaguar,XK8 Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Minicompact Cars,2006,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21678,10,0,Jaguar,XKR Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6499,0.0,30.5499,0.0,Minicompact Cars,2006,-5750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21679,9,0,Lexus,SC 430,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.7499,0.0,32.1493,0.0,Minicompact Cars,2006,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4304,(307) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2168,16,16,Oldsmobile,Cutlass Supreme,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21680,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9,0.0,44.2,0.0,Minicompact Cars,2006,500,,2MODE,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,21681,7,0,MINI,Cooper,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1,0.0,46.7,0.0,Minicompact Cars,2006,1250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,21682,7,0,MINI,Cooper Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8,0.0,41.9,0.0,Minicompact Cars,2006,0,,2MODE,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21683,7,0,MINI,Cooper Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,45.2,0.0,Minicompact Cars,2006,750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21684,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3377,0.0,40.9188,0.0,Minicompact Cars,2006,-500,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21685,7,0,MINI,Cooper S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.061,0.0,40.9577,0.0,Minicompact Cars,2006,-500,,3MODE CLKUP,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21686,7,0,MINI,Cooper S Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3377,0.0,40.9188,0.0,Minicompact Cars,2006,-500,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21687,7,0,MINI,Cooper S Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.061,0.0,40.9577,0.0,Minicompact Cars,2006,-500,,3MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21688,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8609,0.0,33.8286,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21689,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4605,0.0,33.5175,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2169,14,0,Oldsmobile,Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21690,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8609,0.0,33.8286,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21691,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4605,0.0,33.5175,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21692,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.51,0.0,32.6078,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21693,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9608,0.0,32.7779,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21694,5,0,Porsche,Carrera 2 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.51,0.0,32.6078,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21695,5,0,Porsche,Carrera 2 S Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9608,0.0,32.7779,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21696,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.005,0.0,32.8,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21697,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.212,0.0,32.8226,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21698,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1683,0.0,32.8973,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21699,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.212,0.0,32.8226,0.0,Minicompact Cars,2006,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,79,217,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2170,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize Cars,1986,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21700,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1505,0.0,31.5987,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21701,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2375,0.0,31.8245,0.0,Minicompact Cars,2006,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21702,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3407,0.0,31.9462,0.0,Minicompact Cars,2006,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21703,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2375,0.0,31.8245,0.0,Minicompact Cars,2006,-4750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21704,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2789,0.0,38.6323,0.0,Minicompact Cars,2006,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21705,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0872,0.0,38.8392,0.0,Minicompact Cars,2006,-500,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,21706,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,43.3,0.0,Subcompact Cars,2006,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,81,21707,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,39.7,0.0,Subcompact Cars,2006,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,81,21708,0,0,Acura,RSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),28.0,0.0,43.3,0.0,Subcompact Cars,2006,1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21709,10,0,Audi,A4 Cabriolet,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5,0.0,38.6,0.0,Subcompact Cars,2006,-1000,,3MODE,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2171,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21710,10,0,Audi,A4 Cabriolet quattro,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8,0.0,32.1,0.0,Subcompact Cars,2006,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21711,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5,0.0,27.2,0.0,Subcompact Cars,2006,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21712,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8366,0.0,28.3951,0.0,Subcompact Cars,2006,-6750,G,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21713,9,0,BMW,325ci,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,37.8,0.0,Subcompact Cars,2006,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21714,9,0,BMW,325ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5854,0.0,35.0227,0.0,Subcompact Cars,2006,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21715,9,0,BMW,330ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3566,0.0,38.6609,0.0,Subcompact Cars,2006,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21716,9,0,BMW,330ci,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.947,0.0,34.0894,0.0,Subcompact Cars,2006,-3000,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21717,13,0,BMW,650ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.8,0.0,29.4,0.0,Subcompact Cars,2006,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21718,13,0,BMW,650ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2173,0.0,31.8429,0.0,Subcompact Cars,2006,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21719,13,0,BMW,650ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2855,0.0,28.0644,0.0,Subcompact Cars,2006,-6750,G,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2172,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21720,10,0,BMW,650ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,27.8,0.0,Subcompact Cars,2006,-8000,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21721,10,0,BMW,650ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Subcompact Cars,2006,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21722,10,0,BMW,650ci Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3976,0.0,26.6697,0.0,Subcompact Cars,2006,-8000,G,4MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21723,9,0,BMW,M3,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8899,0.0,30.9,0.0,Subcompact Cars,2006,-5750,G,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21724,9,0,BMW,M3,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3217,0.0,29.6138,0.0,Subcompact Cars,2006,-5750,G,6MODE,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21725,0,7,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,44.0,0.0,Subcompact Cars,2006,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21726,0,7,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,44.9,0.0,Subcompact Cars,2006,1500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21727,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.8,0.0,Subcompact Cars,2006,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21728,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.1,0.0,Subcompact Cars,2006,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21729,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.5897,0.0,Subcompact Cars,2006,1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2700,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2173,0,16,Plymouth,Gran Fury,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1986,-6750,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21730,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,2006,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21731,14,14,Chevrolet,Cobalt,Y,false,83,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,43.9,0.0,Subcompact Cars,2006,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21732,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8292,0.0,32.1224,0.0,Subcompact Cars,2006,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21733,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,36.0,0.0,Subcompact Cars,2006,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21734,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0918,0.0,30.0007,0.0,Subcompact Cars,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21735,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,31.5,0.0,Subcompact Cars,2006,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,21736,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,33.0781,0.0,51.3316,0.0,Subcompact Cars,2006,2750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,21737,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.7525,0.0,48.2308,0.0,Subcompact Cars,2006,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21738,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1325,0.0,37.9239,0.0,Subcompact Cars,2006,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21739,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2,0.0,38.7,0.0,Subcompact Cars,2006,0,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2174,0,16,Plymouth,Gran Fury,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Midsize Cars,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21740,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0924,0.0,33.2499,0.0,Subcompact Cars,2006,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21741,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4,0.0,33.7,0.0,Subcompact Cars,2006,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21742,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.9,0.0,Subcompact Cars,2006,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21743,11,0,Jaguar,XK8,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.598,0.0,33.0439,0.0,Subcompact Cars,2006,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21744,11,0,Jaguar,XKR,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6499,0.0,30.5499,0.0,Subcompact Cars,2006,-5750,,2MODE CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21745,0,11,Lexus,IS 250,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6765,0.0,36.5777,0.0,Subcompact Cars,2006,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21746,0,11,Lexus,IS 250,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.7315,0.0,41.0922,0.0,Subcompact Cars,2006,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21747,0,11,Lexus,IS 250 AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5898,0.0,36.2901,0.0,Subcompact Cars,2006,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21748,0,11,Lexus,IS 350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6303,0.0,35.8105,0.0,Subcompact Cars,2006,-2250,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21749,5,0,Maserati,Coupe Cambiocorsa/GT/G-Sport,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7484,0.0,24.4963,0.0,Subcompact Cars,2006,-11250,G,SIL 3MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2760,(POLICE) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2175,0,16,Plymouth,Gran Fury,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,19.0,0.0,Midsize Cars,1986,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21750,5,0,Maserati,Coupe Cambiocorsa/GT/G-Sport,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.3,0.0,23.1,0.0,Subcompact Cars,2006,-9500,G,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21751,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2006,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21752,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1888,0.0,32.0,0.0,Subcompact Cars,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21753,10,0,Mercedes-Benz,CLK350,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.5,0.0,35.9,0.0,Subcompact Cars,2006,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21754,9,0,Mercedes-Benz,CLK350 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.4,0.0,33.9988,0.0,Subcompact Cars,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21755,10,0,Mercedes-Benz,CLK500,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21756,9,0,Mercedes-Benz,CLK500 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21757,9,0,Mercedes-Benz,CLK55 AMG (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.2,0.0,28.5,0.0,Subcompact Cars,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,80,21758,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1491,0.0,38.6236,0.0,Subcompact Cars,2006,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,80,21759,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0248,0.0,36.5959,0.0,Subcompact Cars,2006,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2176,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.8974,0.0,Midsize Cars,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,80,21760,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8098,0.0,34.3961,0.0,Subcompact Cars,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,80,21761,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,35.7545,0.0,Subcompact Cars,2006,-3000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21762,0,7,Pontiac,Wave 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,44.0,0.0,Subcompact Cars,2006,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21763,0,7,Pontiac,Wave 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,44.9,0.0,Subcompact Cars,2006,1500,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21764,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,37.1,0.0,Subcompact Cars,2006,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21765,12,0,Saab,9-3 Convertible,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3,0.0,35.0,0.0,Subcompact Cars,2006,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21766,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Subcompact Cars,2006,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21767,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,35.8,0.0,Subcompact Cars,2006,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21768,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0983,0.0,32.8209,0.0,Subcompact Cars,2006,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21769,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1393,0.0,35.5232,0.0,Subcompact Cars,2006,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2460,(POLICE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2177,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Midsize Cars,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21770,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6772,0.0,33.4229,0.0,Subcompact Cars,2006,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21771,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5645,0.0,37.3063,0.0,Subcompact Cars,2006,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21772,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,30.5,0.0,Subcompact Cars,2006,-4750,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21773,0,7,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,44.0,0.0,Subcompact Cars,2006,1000,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21774,0,7,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6,0.0,44.9,0.0,Subcompact Cars,2006,1500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,21775,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,38.3997,0.0,Subcompact Cars,2006,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,21776,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,37.3,0.0,Subcompact Cars,2006,-500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,86,21777,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.8,0.0,49.1,0.0,Subcompact Cars,2006,2750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,86,21778,0,0,Scion,xA,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3,0.0,47.5,0.0,Subcompact Cars,2006,2750,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,12,85,21779,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.8251,0.0,56.4914,0.0,Subcompact Cars,2006,3250,,,T,,Diesel,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2178,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize Cars,1986,1500,,SIL,,,,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,12,85,21780,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),38.6518,0.0,53.7436,0.0,Subcompact Cars,2006,3000,,3MODE,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,21781,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9874,0.0,39.3768,0.0,Subcompact Cars,2006,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,21782,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1735,0.0,40.8,0.0,Subcompact Cars,2006,0,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,21783,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7,0.0,41.6,0.0,Compact Cars,2006,-500,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21784,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,43.6,0.0,Compact Cars,2006,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21785,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.9993,0.0,37.5593,0.0,Compact Cars,2006,-2250,,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21786,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Compact Cars,2006,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21787,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,38.2,0.0,Compact Cars,2006,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21788,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Compact Cars,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21789,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2256,0.0,34.1827,0.0,Compact Cars,2006,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2179,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21790,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5399,0.0,27.1117,0.0,Compact Cars,2006,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21791,0,13,Audi,S4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0836,0.0,29.3724,0.0,Compact Cars,2006,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21792,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.8,0.0,23.8,0.0,Compact Cars,2006,-11250,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21793,0,12,BMW,325i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Compact Cars,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21794,0,12,BMW,325i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Compact Cars,2006,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21795,0,12,BMW,325xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Compact Cars,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21796,0,12,BMW,325xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Compact Cars,2006,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21797,0,12,BMW,330i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Compact Cars,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21798,0,12,BMW,330i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Compact Cars,2006,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21799,0,12,BMW,330i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9687,0.0,35.0734,0.0,Compact Cars,2006,-3000,,4MODE,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4103,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,218,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2560,(POLICE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2180,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21800,0,12,BMW,330xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Compact Cars,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21801,0,12,BMW,330xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Compact Cars,2006,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21802,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2006,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21803,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2006,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21804,0,9,Chevrolet,Optra 5,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2006,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21805,0,9,Chevrolet,Optra 5,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2006,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21806,0,0,Chrysler,Sebring Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Compact Cars,2006,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,94,21807,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5529,0.0,40.7385,0.0,Compact Cars,2006,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,94,21808,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2305,0.0,43.2307,0.0,Compact Cars,2006,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,94,21809,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,39.9,0.0,Compact Cars,2006,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4405,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2181,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,21810,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6,0.0,46.6379,0.0,Compact Cars,2006,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,21811,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.4,0.0,44.9,0.0,Compact Cars,2006,2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21812,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,33.6,0.0,Compact Cars,2006,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21813,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5549,0.0,32.2346,0.0,Compact Cars,2006,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21814,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3,0.0,30.3,0.0,Compact Cars,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,COUPE,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21815,8,15,Infiniti,G35,Y,false,87,98,0,0.0,0.0,0.0,0.0,Automatic (S5),20.5549,0.0,32.2346,0.0,Compact Cars,2006,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21816,0,16,Jaguar,X-Type,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8489,0.0,30.6948,0.0,Compact Cars,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21817,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,34.0,0.0,Compact Cars,2006,-3750,,EMS,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,92,21818,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1991,0.0,48.8162,0.0,Compact Cars,2006,2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,21819,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3749,0.0,44.6199,0.0,Compact Cars,2006,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2182,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,95,21820,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1397,0.0,45.0794,0.0,Compact Cars,2006,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,95,21821,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.7269,0.0,43.0537,0.0,Compact Cars,2006,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,21822,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4994,0.0,41.3975,0.0,Compact Cars,2006,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,95,21823,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.6351,0.0,39.7825,0.0,Compact Cars,2006,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21824,0,12,Mercedes-Benz,C230,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6,0.0,38.0,0.0,Compact Cars,2006,-1750,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21825,0,12,Mercedes-Benz,C230,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,37.8,0.0,Compact Cars,2006,-2250,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21826,0,12,Mercedes-Benz,C280,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,36.4,0.0,Compact Cars,2006,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21827,0,12,Mercedes-Benz,C280 4matic,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6,0.0,33.6,0.0,Compact Cars,2006,-3000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21828,0,12,Mercedes-Benz,C350,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.1,0.0,37.1,0.0,Compact Cars,2006,-2250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21829,0,12,Mercedes-Benz,C350,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4,0.0,36.5,0.0,Compact Cars,2006,-2250,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2183,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21830,0,12,Mercedes-Benz,C350 4matic,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,30.5,0.0,Compact Cars,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21831,0,12,Mercedes-Benz,C55 AMG,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6,0.0,27.8,0.0,Compact Cars,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21832,12,0,Mercedes-Benz,CL500,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Compact Cars,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21833,12,0,Mercedes-Benz,CL55 AMG,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,28.0,0.0,Compact Cars,2006,-6750,G,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21834,12,0,Mercedes-Benz,CL600,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,23.9,0.0,Compact Cars,2006,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,21835,12,0,Mercedes-Benz,CL65 AMG,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1,0.0,25.0,0.0,Compact Cars,2006,-9500,G,EMS 2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21836,13,0,Mercedes-Benz,CLS500,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,28.0,0.0,Compact Cars,2006,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21837,13,0,Mercedes-Benz,CLS55 AMG,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.1,0.0,25.9,0.0,Compact Cars,2006,-8000,G,EMS 2MODE CLKUP,,S,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21838,0,11,Mitsubishi,Lancer,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9677,0.0,40.1019,0.0,Compact Cars,2006,1000,,CMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21839,0,11,Mitsubishi,Lancer,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0093,0.0,43.4907,0.0,Compact Cars,2006,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4173,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2184,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21840,0,11,Mitsubishi,Lancer,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7359,0.0,37.5361,0.0,Compact Cars,2006,-500,,CMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21841,0,11,Mitsubishi,Lancer,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7497,0.0,37.3507,0.0,Compact Cars,2006,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21842,0,10,Mitsubishi,Lancer Evolution,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7,0.0,31.8,0.0,Compact Cars,2006,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21843,0,10,Mitsubishi,Lancer Evolution,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,30.9,0.0,Compact Cars,2006,-4750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21844,0,12,Nissan,Sentra,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.9921,0.0,44.1374,0.0,Compact Cars,2006,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21845,0,12,Nissan,Sentra,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.2,0.0,Compact Cars,2006,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21846,0,12,Nissan,Sentra,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.8,0.0,35.7,0.0,Compact Cars,2006,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21847,0,12,Nissan,Sentra,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,37.8,0.0,Compact Cars,2006,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21848,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1,0.0,43.3,0.0,Compact Cars,2006,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21849,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,40.4,0.0,Compact Cars,2006,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4405,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2185,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21850,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),23.3,0.0,36.6,0.0,Compact Cars,2006,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21851,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.796,0.0,36.8617,0.0,Compact Cars,2006,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21852,0,14,Pontiac,G6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S4),20.3,0.0,32.9,0.0,Compact Cars,2006,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21853,13,0,Pontiac,G6 GT/GTP Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S4),21.5,0.0,34.6,0.0,Compact Cars,2006,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21854,13,0,Pontiac,G6 GT/GTP Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.3,0.0,32.9,0.0,Compact Cars,2006,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21855,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.7,0.0,Compact Cars,2006,-6750,G,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21856,13,0,Pontiac,GTO,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3466,0.0,32.0,0.0,Compact Cars,2006,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21857,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,39.5,0.0,Compact Cars,2006,-1000,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21858,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2,0.0,40.2,0.0,Compact Cars,2006,-1000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21859,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Compact Cars,2006,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2186,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21860,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,35.8,0.0,Compact Cars,2006,-3750,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21861,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.8,0.0,Compact Cars,2006,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21862,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.1,0.0,Compact Cars,2006,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,21863,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,44.8718,0.0,Compact Cars,2006,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21864,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0256,0.0,Compact Cars,2006,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21865,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,43.9,0.0,Compact Cars,2006,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21866,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6772,0.0,33.4229,0.0,Compact Cars,2006,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21867,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5645,0.0,37.3063,0.0,Compact Cars,2006,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21868,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S4),25.4756,0.0,38.4033,0.0,Compact Cars,2006,0,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21869,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2071,0.0,32.0371,0.0,Compact Cars,2006,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2187,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,21870,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8375,0.0,39.5,0.0,Compact Cars,2006,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,21871,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6555,0.0,Compact Cars,2006,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,91,21872,0,12,Suzuki,Aerio AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Compact Cars,2006,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21873,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2006,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21874,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2006,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21875,0,9,Suzuki,Reno,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2006,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21876,0,9,Suzuki,Reno,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2006,0,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,21877,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Compact Cars,2006,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,21878,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.9414,0.0,42.513,0.0,Compact Cars,2006,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21879,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.8,0.0,37.8,0.0,Compact Cars,2006,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4173,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2188,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21880,12,0,Toyota,Camry Solara Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,36.8,0.0,Compact Cars,2006,-1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,21881,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5463,0.0,49.0495,0.0,Compact Cars,2006,2500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,21882,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.7499,0.0,52.5496,0.0,Compact Cars,2006,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21883,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,43.1,0.0,Compact Cars,2006,0,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,21884,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.8251,0.0,56.4914,0.0,Compact Cars,2006,3250,,,T,,Diesel,,,, +11.924172,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1850,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,18,88,21885,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),36.5,0.0,56.8,0.0,Compact Cars,2006,2750,,3MODE CLKUP,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,21886,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.159,0.0,38.2798,0.0,Compact Cars,2006,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,88,21887,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,40.1,0.0,Compact Cars,2006,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,94,21888,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2789,0.0,38.6323,0.0,Compact Cars,2006,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,94,21889,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0872,0.0,38.8392,0.0,Compact Cars,2006,-500,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2189,16,16,Pontiac,6000,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Midsize Cars,1986,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,88,21890,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8,0.0,40.1,0.0,Compact Cars,2006,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,88,21891,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.3,0.0,37.3,0.0,Compact Cars,2006,-1750,,2MODE CLKUP,T,,,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,21892,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.7,0.0,52.4,0.0,Compact Cars,2006,3000,,,T,,Diesel,,,, +11.567466000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,21893,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),38.6518,0.0,53.7436,0.0,Compact Cars,2006,3000,,3MODE,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21894,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0221,0.0,40.706,0.0,Compact Cars,2006,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21895,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9852,0.0,40.046,0.0,Compact Cars,2006,0,,3MODE,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21896,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2789,0.0,38.6323,0.0,Compact Cars,2006,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21897,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0872,0.0,38.8392,0.0,Compact Cars,2006,-500,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21898,0,13,Volvo,S40 AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.6,0.0,Compact Cars,2006,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21899,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9963,0.0,35.3323,0.0,Compact Cars,2006,-3000,,2MODE CLKUP,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4102,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,219,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2190,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1986,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21900,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Compact Cars,2006,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21901,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9572,0.0,37.8839,0.0,Compact Cars,2006,-1750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21902,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.593,0.0,40.4674,0.0,Compact Cars,2006,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21903,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9407,0.0,38.4641,0.0,Compact Cars,2006,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21904,0,14,Volvo,S60 AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7567,0.0,34.9111,0.0,Compact Cars,2006,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21905,0,14,Volvo,S60 AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9963,0.0,35.3323,0.0,Compact Cars,2006,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21906,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,36.7467,0.0,Compact Cars,2006,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21907,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Compact Cars,2006,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21908,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,35.6,0.0,Compact Cars,2006,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21909,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.5965,0.0,36.2892,0.0,Compact Cars,2006,-2250,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2191,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1986,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21910,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,38.6,0.0,Compact Cars,2006,-1750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21911,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9407,0.0,38.4641,0.0,Compact Cars,2006,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21912,0,14,Volvo,S60 R AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Compact Cars,2006,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21913,0,14,Volvo,S60 R AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5473,0.0,32.542,0.0,Compact Cars,2006,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21914,0,13,Acura,RL,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,33.0439,0.0,Midsize Cars,2006,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21915,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5,0.0,37.0,0.0,Midsize Cars,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21916,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.7,0.0,Midsize Cars,2006,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21917,0,16,Audi,A6,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.9993,0.0,37.5593,0.0,Midsize Cars,2006,-2250,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21918,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2256,0.0,34.1827,0.0,Midsize Cars,2006,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21919,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2,0.0,29.8,0.0,Midsize Cars,2006,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2192,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21920,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,31.2,0.0,Midsize Cars,2006,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,21921,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Midsize Cars,2006,-15500,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21922,0,13,Bentley,Continental Flying Spur,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),12.3,0.0,22.8,0.0,Midsize Cars,2006,-13250,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21923,0,14,BMW,525i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Midsize Cars,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21924,0,14,BMW,525i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Midsize Cars,2006,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21925,0,14,BMW,525xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Midsize Cars,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21926,0,14,BMW,525xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Midsize Cars,2006,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21927,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Midsize Cars,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21928,0,14,BMW,530i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Midsize Cars,2006,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21929,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9687,0.0,35.0734,0.0,Midsize Cars,2006,-3000,,4MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2193,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21930,0,14,BMW,530xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Midsize Cars,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21931,0,14,BMW,530xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Midsize Cars,2006,-3000,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21932,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.8,0.0,29.4,0.0,Midsize Cars,2006,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21933,0,14,BMW,550i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2173,0.0,31.8429,0.0,Midsize Cars,2006,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,21934,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2855,0.0,28.0644,0.0,Midsize Cars,2006,-6750,G,4MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,21935,0,14,BMW,M5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),13.065,0.0,23.6289,0.0,Midsize Cars,2006,-11250,G,6MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21936,0,16,Buick,Lacrosse/Allure,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,34.6,0.0,Midsize Cars,2006,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21937,0,16,Buick,Lacrosse/Allure,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,38.8,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21938,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.5,0.0,Midsize Cars,2006,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21939,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,34.1,0.0,Midsize Cars,2006,-2500,,CLKUP,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44022,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,2194,0,15,Rolls-Royce,Silver Spirit/Spur/Mulsanne,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,13.0,0.0,Midsize Cars,1986,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21940,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5,0.0,33.9,0.0,Midsize Cars,2006,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21941,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),19.513,0.0,35.2482,0.0,Midsize Cars,2006,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21942,0,13,Cadillac,CTS-V,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,32.0,0.0,Midsize Cars,2006,-5750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21943,0,13,Cadillac,STS,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),19.513,0.0,35.2482,0.0,Midsize Cars,2006,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21944,0,13,Cadillac,STS,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6,0.0,32.8,0.0,Midsize Cars,2006,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21945,0,0,Cadillac,STS AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8868,0.0,31.6921,0.0,Midsize Cars,2006,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21946,0,0,Cadillac,STS AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.9,0.0,29.4,0.0,Midsize Cars,2006,-5750,G,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21947,0,13,Chevrolet,Epica,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.0,0.0,Midsize Cars,2006,-1750,,EMS CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21948,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,40.8,0.0,Midsize Cars,2006,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21949,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,40.4,0.0,Midsize Cars,2006,0,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,54520,(GUZZLER) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2195,0,15,Texas Coach Company,500SE,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Midsize Cars,1986,-11000,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21950,0,15,Chevrolet,Malibu,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6,0.0,33.0997,0.0,Midsize Cars,2006,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21951,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.6,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21952,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.5,0.0,Midsize Cars,2006,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21953,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2006,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21954,0,16,Dodge,Stratus 4 Door,Y,false,0,64,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,37.9,0.0,Midsize Cars,2006,-500,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,21955,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,11.3991,0.0,21.5499,0.0,Midsize Cars,2006,-15500,G,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,21956,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.8,0.0,21.3,0.0,Midsize Cars,2006,-13250,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21957,0,0,Ford,Fusion,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.1642,0.0,40.6106,0.0,Midsize Cars,2006,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21958,0,16,Ford,Fusion,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5888,0.0,39.9294,0.0,Midsize Cars,2006,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21959,0,16,Ford,Fusion,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.9,0.0,37.4,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,54520,(GUZZLER) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2196,0,15,Texas Coach Company,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Midsize Cars,1986,-11000,T,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21960,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.0171,0.0,43.492,0.0,Midsize Cars,2006,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,21961,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,43.3,0.0,Midsize Cars,2006,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21962,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.667,0.0,36.7378,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21963,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8507,0.0,38.0009,0.0,Midsize Cars,2006,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,95,21964,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,41.3467,0.0,Midsize Cars,2006,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,95,21965,0,13,Hyundai,Elantra,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.7459,0.0,43.5963,0.0,Midsize Cars,2006,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21966,0,12,Jaguar,S-Type 3.0 Litre,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1489,0.0,35.6494,0.0,Midsize Cars,2006,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21967,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0469,0.0,33.1493,0.0,Midsize Cars,2006,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21968,0,12,Jaguar,S-Type R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.0499,0.0,Midsize Cars,2006,-5750,,2MODE CLKUP,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,21969,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8889,0.0,29.4872,0.0,Midsize Cars,2006,-5750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2197,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1986,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,21970,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.5,0.0,33.9,0.0,Midsize Cars,2006,-3750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21971,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,38.5,0.0,Midsize Cars,2006,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21972,0,13,Kia,Optima,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,38.4,0.0,Midsize Cars,2006,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21973,0,13,Kia,Optima,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,35.1,0.0,Midsize Cars,2006,-1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,98,21974,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7086,0.0,44.0927,0.0,Midsize Cars,2006,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,21975,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,41.7,0.0,Midsize Cars,2006,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21976,0,15,Lexus,ES 330,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,37.8,0.0,Midsize Cars,2006,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21977,0,13,Lexus,GS 300 4WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.401,0.0,34.9039,0.0,Midsize Cars,2006,-2250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21978,0,13,Lexus,GS 300/GS 430,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.1472,0.0,38.2494,0.0,Midsize Cars,2006,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21979,0,13,Lexus,GS 300/GS 430,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4489,0.0,32.0997,0.0,Midsize Cars,2006,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2198,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Midsize Cars,1986,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,21980,0,13,Lincoln,LS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3357,0.0,30.4221,0.0,Midsize Cars,2006,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21981,0,13,Lincoln,LS,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7,0.0,31.7,0.0,Midsize Cars,2006,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,21982,0,0,Mercury,Milan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.1642,0.0,40.6106,0.0,Midsize Cars,2006,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,21983,0,16,Mercury,Milan,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5888,0.0,39.9294,0.0,Midsize Cars,2006,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21984,0,16,Mercury,Milan,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.9,0.0,37.4,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,21985,0,16,Lincoln,Zephyr,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9,0.0,35.7,0.0,Midsize Cars,2006,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,22,96,21986,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0883,0.0,40.447,0.0,Midsize Cars,2006,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,96,21987,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9,0.0,32.6,0.0,Midsize Cars,2006,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,96,21988,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),26.2317,0.0,39.3911,0.0,Midsize Cars,2006,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,21989,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.5,0.0,Midsize Cars,2006,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2199,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1986,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,21990,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6744,0.0,34.8275,0.0,Midsize Cars,2006,-1750,,,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,21991,0,14,Mercedes-Benz,E320 Cdi,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.5,0.0,47.1,0.0,Midsize Cars,2006,1000,,EMS 2MODE CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21992,0,14,Mercedes-Benz,E350,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,34.7,0.0,Midsize Cars,2006,-3000,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21993,0,14,Mercedes-Benz,E350 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,31.4,0.0,Midsize Cars,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,21994,0,14,Mercedes-Benz,E500,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Midsize Cars,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21995,0,14,Mercedes-Benz,E500 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8,0.0,26.1,0.0,Midsize Cars,2006,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,21996,0,14,Mercedes-Benz,E55 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),16.5,0.0,26.9,0.0,Midsize Cars,2006,-6750,G,EMS 2MODE CLKUP,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21997,0,13,Mitsubishi,Galant,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3582,0.0,38.1162,0.0,Midsize Cars,2006,0,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,21998,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),20.4388,0.0,34.4166,0.0,Midsize Cars,2006,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,21999,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0264,0.0,37.6274,0.0,Midsize Cars,2006,0,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,Rear-Wheel Drive,56010,(ROTARY),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1985,-4250,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,4110,,-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,10,79,220,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Subcompact Cars,1985,3750,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2200,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize Cars,1986,-500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22000,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,40.2,0.0,Midsize Cars,2006,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22001,0,16,Nissan,Altima,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.8,0.0,34.8,0.0,Midsize Cars,2006,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22002,0,16,Nissan,Altima,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.2,0.0,Midsize Cars,2006,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22003,0,16,Nissan,Altima,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2341,0.0,37.1485,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22004,0,16,Nissan,Maxima,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,37.7,0.0,Midsize Cars,2006,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22005,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.5,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22006,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Midsize Cars,2006,-3000,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22007,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,38.9,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22008,0,16,Pontiac,Grand Prix,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6,0.0,36.0,0.0,Midsize Cars,2006,-3000,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22009,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.2685,0.0,35.0629,0.0,Midsize Cars,2006,-3750,,CLKUP,,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60030,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2201,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,34.0,0.0,Midsize Cars,1986,-1000,,,T,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22010,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7238,0.0,23.8,0.0,Midsize Cars,2006,-11250,G,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22011,0,13,Suzuki,Verona,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,35.0,0.0,Midsize Cars,2006,-1750,,EMS CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22012,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.8983,0.0,43.4359,0.0,Midsize Cars,2006,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22013,0,17,Toyota,Camry,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6,0.0,42.5,0.0,Midsize Cars,2006,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22014,0,17,Toyota,Camry,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,36.2,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22015,0,17,Toyota,Camry,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,37.8,0.0,Midsize Cars,2006,-1000,,CLKUP,,,,,,, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,HEV,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,22016,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2006,6000,,,,,Hybrid,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22017,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,41.1,0.0,Midsize Cars,2006,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22018,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,39.2,0.0,Midsize Cars,2006,-1750,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22019,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,36.0,0.0,Midsize Cars,2006,-3000,,3MODE CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60030,"(DSL,TRBO) (NO-CAT)",-1,2450,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2202,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Midsize Cars,1986,-250,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22020,0,14,Volkswagen,Passat 4motion,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,33.5,0.0,Midsize Cars,2006,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22021,0,14,Volvo,S80 AWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7567,0.0,34.9111,0.0,Midsize Cars,2006,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22022,0,14,Volvo,S80 FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3984,0.0,38.12,0.0,Midsize Cars,2006,-1750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22023,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,31.2,0.0,Large Cars,2006,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22024,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3,0.0,26.3,0.0,Large Cars,2006,-8000,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,22025,0,13,Bentley,Arnage LWB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.4,0.0,18.5499,0.0,Large Cars,2006,-15500,G,EMS 2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22026,0,18,BMW,750i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2006,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22027,0,18,BMW,750li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2006,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22028,0,18,BMW,760i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2268,0.0,28.8359,0.0,Large Cars,2006,-6750,G,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22029,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2268,0.0,28.8359,0.0,Large Cars,2006,-6750,G,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2203,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize Cars,1986,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22030,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.8974,0.0,Large Cars,2006,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275 hp,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22031,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22032,0,0,Cadillac,Armored DTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,25.4,0.0,Large Cars,2006,-7750,G,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275 HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22033,0,19,Cadillac,DTS,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300 HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22034,0,19,Cadillac,DTS,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22035,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,25.4,0.0,Large Cars,2006,-7750,G,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22036,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,25.4,0.0,Large Cars,2006,-7750,G,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22037,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,35.1,0.0,Large Cars,2006,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22038,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.5,0.0,Large Cars,2006,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,23,106,22039,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.6,0.0,38.4615,0.0,Large Cars,2006,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2204,16,16,Buick,Electra/Park Avenue,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Large Cars,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,23,106,22040,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.3,0.0,32.9,0.0,Large Cars,2006,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22041,0,24,Chrysler,300C AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2006,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22042,0,24,Chrysler,300C AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2006,-3250,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22043,0,24,Chrysler,300,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2006,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22044,0,24,Chrysler,300,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2006,-1750,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22045,0,24,Chrysler,300,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2006,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22046,0,24,Chrysler,300,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,31.5,0.0,Large Cars,2006,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22047,0,24,Chrysler,300C/SRT-8,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2006,-8000,G,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22048,0,24,Dodge,Charger,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2006,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22049,0,24,Dodge,Charger,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2006,-1750,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4407,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2205,16,16,Buick,LeSabre,N,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22050,0,24,Dodge,Charger,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,31.5,0.0,Large Cars,2006,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.10,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22051,0,24,Dodge,Charger,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2006,-8000,G,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22052,0,21,Ford,Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6874,0.0,32.4129,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22053,0,21,Ford,Five Hundred AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.1499,0.0,32.6972,0.0,Large Cars,2006,-2500,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22054,0,21,Ford,Five Hundred FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.0,0.0,35.2,0.0,Large Cars,2006,-1750,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22055,0,21,Ford,Five Hundred FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22056,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,34.6,0.0,Large Cars,2006,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22057,0,17,Hyundai,Azera,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,35.6,0.0,Large Cars,2006,-1750,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22058,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,42.8,0.0,Large Cars,2006,500,,CMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22059,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.7,0.0,Large Cars,2006,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2206,16,16,Buick,LeSabre,N,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Large Cars,1986,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22060,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,38.2,0.0,Large Cars,2006,-1000,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22061,0,15,Infiniti,M35,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7649,0.0,32.0297,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22062,0,15,Infiniti,M35,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4,0.0,30.4,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22063,0,15,Infiniti,M45,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4078,0.0,29.5582,0.0,Large Cars,2006,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22064,0,15,Jaguar,Super V8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2006,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22065,0,15,Jaguar,Vdp Lwb,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0499,0.0,34.3499,0.0,Large Cars,2006,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22066,0,16,Jaguar,XJ8,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2006,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22067,0,15,Jaguar,XJ8L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2006,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22068,0,16,Jaguar,XJR,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2006,-4750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22069,0,15,Kia,Amanti,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,31.9,0.0,Large Cars,2006,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2207,16,16,Cadillac,Fleetwood/DeVille,Y,false,109,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22070,0,16,Lexus,LS 430,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4891,0.0,32.6069,0.0,Large Cars,2006,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22071,0,21,Mercury,Grand Marquis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6874,0.0,32.4129,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22072,0,21,Mercury,Montego AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.1499,0.0,32.6972,0.0,Large Cars,2006,-2500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22074,0,21,Mercury,Montego FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2006,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22075,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6874,0.0,32.4129,0.0,Large Cars,2006,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22076,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.8195,0.0,22.5366,0.0,Large Cars,2006,-11250,G,SIL 3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22077,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.3,0.0,22.2,0.0,Large Cars,2006,-11250,,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22078,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.4,0.0,21.9,0.0,Large Cars,2006,-11250,,EMS 2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22079,0,15,Mercedes-Benz,S350,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,31.5,0.0,Large Cars,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4301,(307) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2208,20,20,Cadillac,Fleetwood Brougham,Y,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22080,0,15,Mercedes-Benz,S430,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4,0.0,33.5,0.0,Large Cars,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.3,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22081,0,15,Mercedes-Benz,S430 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,28.5,0.0,Large Cars,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22082,0,15,Mercedes-Benz,S500,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.8,0.0,30.5,0.0,Large Cars,2006,-5750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22083,0,15,Mercedes-Benz,S500 4matic,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,27.6,0.0,Large Cars,2006,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22084,0,15,Mercedes-Benz,S55 AMG,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,28.0,0.0,Large Cars,2006,-6750,G,EMS 2MODE CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22085,0,15,Mercedes-Benz,S600,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,23.9,0.0,Large Cars,2006,-11250,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22086,0,15,Mercedes-Benz,S65 AMG,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1,0.0,25.0,0.0,Large Cars,2006,-9500,G,EMS 2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22087,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),24.6979,0.0,39.4123,0.0,Large Cars,2006,0,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22088,0,13,Volkswagen,Phaeton,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4,0.0,28.5986,0.0,Large Cars,2006,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22089,0,13,Volkswagen,Phaeton,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S5),13.3,0.0,23.6,0.0,Large Cars,2006,-11250,G,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2209,0,16,Cadillac,Limousine,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,1986,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22090,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0221,0.0,40.706,0.0,Small Station Wagons,2006,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22091,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9852,0.0,40.046,0.0,Small Station Wagons,2006,0,,3MODE,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22092,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Small Station Wagons,2006,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22093,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,38.2,0.0,Small Station Wagons,2006,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22094,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Small Station Wagons,2006,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22095,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2256,0.0,34.1827,0.0,Small Station Wagons,2006,-3000,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22096,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.5399,0.0,27.1117,0.0,Small Station Wagons,2006,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22097,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0836,0.0,29.3724,0.0,Small Station Wagons,2006,-6750,G,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22098,0,25,BMW,325xi Sport Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Small Station Wagons,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22099,0,25,BMW,325xi Sport Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Small Station Wagons,2006,-3000,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,43001,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,83,221,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2210,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Large Cars,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22100,0,12,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,38.3,0.0,Small Station Wagons,2006,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22101,0,12,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,38.3,0.0,Small Station Wagons,2006,-500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22102,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.7,0.0,43.8,0.0,Small Station Wagons,2006,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22103,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,40.3,0.0,Small Station Wagons,2006,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,22104,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,46.6,0.0,Small Station Wagons,2006,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22105,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.3,0.0,41.1,0.0,Small Station Wagons,2006,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,90,22106,0,0,Saab,9-2X Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.6,0.0,Small Station Wagons,2006,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,90,22107,0,0,Saab,9-2X Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,35.2,0.0,Small Station Wagons,2006,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,24,90,22108,0,0,Saab,9-2X Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9,0.0,34.7,0.0,Small Station Wagons,2006,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,90,22109,0,0,Saab,9-2X Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,36.8,0.0,Small Station Wagons,2006,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2211,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Large Cars,1986,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,30,96,22110,0,0,Saab,9-3 SportCombi,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,39.5,0.0,Small Station Wagons,2006,-1000,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,30,96,22111,0,0,Saab,9-3 SportCombi,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.2,0.0,40.2,0.0,Small Station Wagons,2006,-1000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,30,96,22112,0,0,Saab,9-3 SportCombi,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Small Station Wagons,2006,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,30,96,22113,0,0,Saab,9-3 SportCombi,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,35.8,0.0,Small Station Wagons,2006,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22114,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0983,0.0,32.8209,0.0,Small Station Wagons,2006,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22115,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1393,0.0,35.5232,0.0,Small Station Wagons,2006,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22116,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6772,0.0,33.4229,0.0,Small Station Wagons,2006,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22117,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5645,0.0,37.3063,0.0,Small Station Wagons,2006,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22118,0,13,Suzuki,Aerio SX,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5329,0.0,39.2958,0.0,Small Station Wagons,2006,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22119,0,13,Suzuki,Aerio SX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6258,0.0,Small Station Wagons,2006,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4173,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2212,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1986,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22120,0,10,Suzuki,Aerio SX AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Small Station Wagons,2006,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22121,0,12,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,38.3,0.0,Small Station Wagons,2006,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22122,0,12,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,38.3,0.0,Small Station Wagons,2006,-500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22123,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6157,0.0,43.6949,0.0,Small Station Wagons,2006,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22124,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,40.3,0.0,Small Station Wagons,2006,1000,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,22125,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3677,0.0,46.4763,0.0,Small Station Wagons,2006,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SPORTS,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22126,0,22,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1804,0.0,40.3985,0.0,Small Station Wagons,2006,0,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22127,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,43.3,0.0,Small Station Wagons,2006,2250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22128,0,21,Scion,xB,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.4,0.0,42.8,0.0,Small Station Wagons,2006,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,32,93,22129,0,0,Volvo,V50 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,33.8,0.0,Small Station Wagons,2006,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4303,(307) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2213,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,32,93,22130,0,0,Volvo,V50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9963,0.0,35.3323,0.0,Small Station Wagons,2006,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,22131,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Small Station Wagons,2006,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,22132,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9572,0.0,37.8839,0.0,Small Station Wagons,2006,-1750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,32,93,22133,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.593,0.0,40.4674,0.0,Small Station Wagons,2006,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,93,22134,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9407,0.0,38.4641,0.0,Small Station Wagons,2006,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22135,0,34,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2177,0.0,33.5755,0.0,Midsize Station Wagons,2006,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22136,0,34,BMW,530xi Sport Wagon,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5799,0.0,35.6611,0.0,Midsize Station Wagons,2006,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22137,0,34,BMW,530xi Sport Wagon,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9928,0.0,35.0034,0.0,Midsize Station Wagons,2006,-3000,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22138,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5529,0.0,40.7385,0.0,Midsize Station Wagons,2006,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22139,0,36,Ford,Focus Station Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2305,0.0,43.2307,0.0,Midsize Station Wagons,2006,1500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4195,(350 V8) (POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2214,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,25.0,0.0,Large Cars,1986,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22140,0,44,Mazda,5,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.8,0.0,Midsize Station Wagons,2006,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22141,0,44,Mazda,5,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S4),23.5,0.0,33.5,0.0,Midsize Station Wagons,2006,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22142,0,34,Mazda,6 Sport Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.5,0.0,Midsize Station Wagons,2006,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22143,0,34,Mazda,6 Sport Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6744,0.0,34.8275,0.0,Midsize Station Wagons,2006,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22144,0,41,Mercedes-Benz,E350 (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.4,0.0,33.2,0.0,Midsize Station Wagons,2006,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22145,0,41,Mercedes-Benz,E350 4matic (wagon),Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,30.2,0.0,Midsize Station Wagons,2006,-4750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22146,0,41,Mercedes-Benz,E500 4matic (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,25.5,0.0,Midsize Station Wagons,2006,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22147,0,41,Mercedes-Benz,E55 AMG (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,27.0,0.0,Midsize Station Wagons,2006,-8000,G,EMS 2MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22148,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6772,0.0,33.4229,0.0,Midsize Station Wagons,2006,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22149,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5645,0.0,37.3063,0.0,Midsize Station Wagons,2006,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2215,22,22,Ford,LTD Crown Victoria,Y,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1986,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22150,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),25.4756,0.0,38.4033,0.0,Midsize Station Wagons,2006,0,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22151,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2071,0.0,32.0371,0.0,Midsize Station Wagons,2006,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,22152,0,0,Volvo,V70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.7567,0.0,34.9111,0.0,Midsize Station Wagons,2006,-3000,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,22153,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9963,0.0,35.3323,0.0,Midsize Station Wagons,2006,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,22154,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7821,0.0,36.2831,0.0,Midsize Station Wagons,2006,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,22155,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Midsize Station Wagons,2006,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,22156,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8,0.0,33.6,0.0,Midsize Station Wagons,2006,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,22157,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.5965,0.0,36.2892,0.0,Midsize Station Wagons,2006,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,22158,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.1,0.0,37.6,0.0,Midsize Station Wagons,2006,-2250,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,22159,0,0,Volvo,V70 R AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Midsize Station Wagons,2006,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3807,(POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2216,22,22,Ford,LTD Crown Victoria,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Large Cars,1986,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,22160,0,0,Volvo,V70 R AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5473,0.0,32.542,0.0,Midsize Station Wagons,2006,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22161,0,0,Chevrolet,Silverado 15 Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22162,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9466,0.0,26.7887,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22163,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2006,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22164,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,26.8173,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22165,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks 2WD,2006,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22166,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6849,0.0,26.041,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22167,0,0,Chevrolet,Silverado 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2006,-8000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22168,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9998,0.0,30.0405,0.0,Standard Pickup Trucks 2WD,2006,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22169,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.9224,0.0,Standard Pickup Trucks 2WD,2006,-1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3802,(POLICE) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2217,22,22,Ford,LTD Crown Victoria,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Large Cars,1986,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22170,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,31.0773,0.0,Standard Pickup Trucks 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22171,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3483,0.0,32.2018,0.0,Standard Pickup Trucks 2WD,2006,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22172,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22173,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,30.0,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22174,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.2,0.0,Standard Pickup Trucks 2WD,2006,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22175,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,30.8,0.0,Standard Pickup Trucks 2WD,2006,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22176,0,0,Chevrolet,SSR Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2006,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22177,0,0,Chevrolet,SSR Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.5,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2006,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22178,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22179,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.7889,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2218,22,22,Mercury,Grand Marquis,Y,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22180,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22181,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2006,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22182,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22183,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.1737,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22184,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3966,0.0,23.8978,0.0,Standard Pickup Trucks 2WD,2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22185,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.5632,0.0,23.7359,0.0,Standard Pickup Trucks 2WD,2006,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22186,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,6700,0,Premium,Premium Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,22187,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,10.0,0.0,15.7,0.0,Standard Pickup Trucks 2WD,2006,-21500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,10,8.30,Rear-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,22188,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.4734,0.0,18.7,0.0,Standard Pickup Trucks 2WD,2006,-18250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22189,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2884,0.0,25.7168,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2219,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22190,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.1,0.0,26.0,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22191,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2323,0.0,23.9353,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22192,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.059,0.0,24.2923,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22193,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,33.8,0.0,Standard Pickup Trucks 2WD,2006,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22194,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1336,0.0,37.2769,0.0,Standard Pickup Trucks 2WD,2006,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22195,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.241,0.0,28.9228,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22196,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1118,0.0,29.609,0.0,Standard Pickup Trucks 2WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22197,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3699,0.0,27.882,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22198,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3377,0.0,28.9033,0.0,Standard Pickup Trucks 2WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22199,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,Hybrid,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,83,222,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,34801,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2220,0,13,London Coach Co Inc,London Taxi,N,false,0,144,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,23.0,0.0,Large Cars,1986,-5250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22200,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22201,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8,0.0,27.7,0.0,Standard Pickup Trucks 2WD,2006,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22202,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,26.8426,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22203,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks 2WD,2006,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22204,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9447,0.0,25.641,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22205,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2006,-8000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22206,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9918,0.0,30.0389,0.0,Standard Pickup Trucks 2WD,2006,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22207,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.7677,0.0,Standard Pickup Trucks 2WD,2006,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22208,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,31.0581,0.0,Standard Pickup Trucks 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22209,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.3448,0.0,32.2088,0.0,Standard Pickup Trucks 2WD,2006,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4407,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2221,16,16,Oldsmobile,Delta 88 Royale,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22210,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22211,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,30.0,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22212,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.2,0.0,Standard Pickup Trucks 2WD,2006,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22213,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,30.8,0.0,Standard Pickup Trucks 2WD,2006,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22214,0,0,Isuzu,i-280 Extended Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,30.0,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22215,0,0,Isuzu,i-280 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,35.2,0.0,Standard Pickup Trucks 2WD,2006,-1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22216,0,0,Lincoln,Mark LT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1498,0.0,24.3499,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22217,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,33.8,0.0,Standard Pickup Trucks 2WD,2006,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22218,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1336,0.0,37.2769,0.0,Standard Pickup Trucks 2WD,2006,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22219,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1917,0.0,28.8707,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2222,16,16,Oldsmobile,Delta 88 Royale,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Large Cars,1986,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22220,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0061,0.0,29.5575,0.0,Standard Pickup Trucks 2WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22221,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22222,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.3377,0.0,28.9033,0.0,Standard Pickup Trucks 2WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22223,0,0,Mitsubishi,Raider Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22224,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.7889,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22225,0,0,Mitsubishi,Raider Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7579,0.0,25.6731,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22226,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2006,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22227,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Standard Pickup Trucks 2WD,2006,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22228,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Standard Pickup Trucks 2WD,2006,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22229,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5451,0.0,26.2621,0.0,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2223,16,16,Oldsmobile,Ninety-Eight Regency,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Large Cars,1986,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22230,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9513,0.0,27.3275,0.0,Standard Pickup Trucks 2WD,2006,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22231,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4513,0.0,23.7045,0.0,Standard Pickup Trucks 2WD,2006,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22232,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0083,0.0,33.9106,0.0,Standard Pickup Trucks 2WD,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22233,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4996,0.0,34.6,0.0,Standard Pickup Trucks 2WD,2006,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22234,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2006,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22235,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7,0.0,26.3,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22236,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4181,0.0,28.5011,0.0,Standard Pickup Trucks 2WD,2006,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22237,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5272,0.0,25.6842,0.0,Standard Pickup Trucks 2WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22238,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4796,0.0,23.8404,0.0,Standard Pickup Trucks 2WD,2006,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22239,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1283,0.0,28.6448,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2224,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Large Cars,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22240,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2006,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22241,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,28.4,0.0,Standard Pickup Trucks 4WD,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22242,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,30.5,0.0,Standard Pickup Trucks 4WD,2006,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22243,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1283,0.0,28.6448,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22244,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2006,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22245,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.6,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22246,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,24.9,0.0,Standard Pickup Trucks 4WD,2006,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22247,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.4,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22248,0,0,Chevrolet,Silverado 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5445,0.0,25.0453,0.0,Standard Pickup Trucks 4WD,2006,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22249,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0582,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4165,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2225,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Large Cars,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22250,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2006,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22251,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6237,0.0,24.3792,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22252,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,22.4,0.0,Standard Pickup Trucks 4WD,2006,-9500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22253,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9094,0.0,24.5096,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22254,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1978,0.0,25.7452,0.0,Standard Pickup Trucks 4WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22255,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,25.8,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22256,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2006,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22257,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1735,0.0,22.832,0.0,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22258,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.7459,0.0,23.6058,0.0,Standard Pickup Trucks 4WD,2006,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22259,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7904,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4173,(305) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2226,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22260,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9809,0.0,23.3666,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22261,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3354,0.0,22.4423,0.0,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22262,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9994,0.0,25.5965,0.0,Standard Pickup Trucks 4WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22263,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9979,0.0,26.3491,0.0,Standard Pickup Trucks 4WD,2006,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22264,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9659,0.0,24.718,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22265,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3793,0.0,24.4611,0.0,Standard Pickup Trucks 4WD,2006,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22266,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1283,0.0,28.6448,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22267,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2006,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22268,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7,0.0,28.4,0.0,Standard Pickup Trucks 4WD,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22269,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.6,0.0,30.5,0.0,Standard Pickup Trucks 4WD,2006,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4303,(307) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2227,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22270,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1283,0.0,28.6448,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22271,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,29.6,0.0,Standard Pickup Trucks 4WD,2006,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22272,0,0,GMC,Canyon Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.6,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22273,0,0,GMC,Sierra 15 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,24.9,0.0,Standard Pickup Trucks 4WD,2006,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22274,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.4,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22275,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.5025,0.0,25.0033,0.0,Standard Pickup Trucks 4WD,2006,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22276,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9718,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22277,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2006,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22278,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6391,0.0,24.3012,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22279,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,22.4,0.0,Standard Pickup Trucks 4WD,2006,-9500,,CLKUP,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44022,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,2228,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Large Cars,1986,-22500,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22280,0,0,GMC,Sierra 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Standard Pickup Trucks 4WD,2006,-11250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22281,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,27.5,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22282,0,0,Isuzu,i-350 Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,28.6,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22283,0,0,Lincoln,Mark LT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2,0.0,22.5,0.0,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22284,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.9659,0.0,24.718,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22285,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.3793,0.0,24.4611,0.0,Standard Pickup Trucks 4WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22286,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.916,0.0,24.5162,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22287,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1978,0.0,25.7452,0.0,Standard Pickup Trucks 4WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22288,0,0,Mitsubishi,Raider Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,25.8,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22289,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2006,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47040,"(16-VALVE) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,102,2229,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Large Cars,1986,-1000,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22290,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1548,0.0,25.9728,0.0,Standard Pickup Trucks 4WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22291,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7615,0.0,26.4621,0.0,Standard Pickup Trucks 4WD,2006,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22292,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0511,0.0,23.3077,0.0,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22293,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,29.3,0.0,Standard Pickup Trucks 4WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22294,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3769,0.0,27.4446,0.0,Standard Pickup Trucks 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22295,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2006,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22296,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5738,0.0,22.7423,0.0,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22297,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.5,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22298,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22299,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.0,0.0,"Vans, Cargo Type",2006,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,83,223,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Subcompact Cars,1985,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2230,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Small Station Wagons,1986,500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22300,0,0,Chevrolet,Van 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1898,0.0,25.7348,0.0,"Vans, Cargo Type",2006,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22301,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22302,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22303,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,23.8,0.0,"Vans, Cargo Type",2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22304,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,22.2,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22305,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,23.5,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22306,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22307,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.0,0.0,"Vans, Cargo Type",2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22308,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.7643,0.0,"Vans, Cargo Type",2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22309,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,2231,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Small Station Wagons,1986,1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22310,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22311,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.7,0.0,"Vans, Passenger Type",2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22312,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,"Vans, Passenger Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22313,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Passenger Type",2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22314,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.4,0.0,"Vans, Passenger Type",2006,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,22315,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.3,0.0,"Vans, Passenger Type",2006,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22316,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,24.7,0.0,"Vans, Passenger Type",2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22317,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,0.0,23.0,0.0,"Vans, Passenger Type",2006,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22318,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Passenger Type",2006,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22319,0,0,Buick,Terraza FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,31.9437,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2232,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Small Station Wagons,1986,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22320,0,0,Buick,Terraza FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22321,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,31.9437,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22322,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22323,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2006,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22324,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.5481,0.0,Minivan - 2WD,2006,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22325,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22326,0,0,Ford,Freestar Cargo Van FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.639,0.0,30.1694,0.0,Minivan - 2WD,2006,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22327,0,0,Ford,Freestar Cargo Van FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5393,0.0,28.8971,0.0,Minivan - 2WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22328,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.639,0.0,30.1694,0.0,Minivan - 2WD,2006,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22329,0,0,Ford,Freestar Wagon FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5393,0.0,28.8971,0.0,Minivan - 2WD,2006,-4250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2233,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22330,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,32.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22331,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8,0.0,36.1,0.0,Minivan - 2WD,2006,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22332,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2006,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22333,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7484,0.0,31.4375,0.0,Minivan - 2WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22334,0,0,Mercury,Monterey Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5393,0.0,28.8971,0.0,Minivan - 2WD,2006,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22335,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22336,0,0,Nissan,Quest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2529,0.0,32.4677,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22337,0,0,Pontiac,Montana SV6 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,31.9437,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22338,0,0,Pontiac,Montana SV6 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22339,0,0,Pontiac,Torrent FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.7692,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2234,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Small Station Wagons,1986,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22340,0,0,Saturn,Relay FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,31.9437,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22341,0,0,Saturn,Relay FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22342,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,33.5,0.0,Minivan - 2WD,2006,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22343,0,0,Buick,Terraza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22344,0,0,Chevrolet,Uplander AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22345,0,0,Pontiac,Montana SV6 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22346,0,0,Pontiac,Torrent AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,29.4872,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22347,0,0,Saturn,Relay AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,29.0,0.0,Minivan - 4WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22348,0,0,Toyota,Sienna 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.061,0.0,29.1715,0.0,Minivan - 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22349,0,0,Buick,Rainier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2235,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22350,0,0,Buick,Rainier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22351,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22352,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22353,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.9,0.0,Sport Utility Vehicle - 2WD,2006,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22354,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.0,0.0,29.4872,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22355,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.6,0.0,27.5,0.0,Sport Utility Vehicle - 2WD,2006,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22356,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22357,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,25.4,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22358,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.7692,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22359,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2006,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2236,0,34,Chevrolet,Cavalier Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Small Station Wagons,1986,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22360,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2006,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22361,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2006,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22362,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22363,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22364,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4949,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22365,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.359,0.0,Sport Utility Vehicle - 2WD,2006,-8000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22366,0,0,Chevrolet,TrailBlazer Ext 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.7,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22367,0,0,Chevrolet,TrailBlazer Ext 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.641,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22368,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6499,0.0,29.526,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22369,0,0,Chrysler,Pacifica 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2237,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Small Station Wagons,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22370,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2006,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22371,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22372,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2006,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22373,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22374,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2006,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22375,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22376,0,0,Chrysler,PT Cruiser Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2006,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22377,0,0,Chrysler,PT Cruiser Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22378,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22379,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,0.0,23.9,0.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2238,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Small Station Wagons,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22380,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22381,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22382,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22383,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22384,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.10,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22385,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Sport Utility Vehicle - 2WD,2006,-8000,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22386,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22387,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1996,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2006,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22388,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22389,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6,0.0,39.4423,0.0,Sport Utility Vehicle - 2WD,2006,2500,,VLKUP,,,Hybrid,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2239,0,31,Nissan,Maxima Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Station Wagons,1986,-3250,,2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22390,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,24.1,0.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22391,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8795,0.0,26.537,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22392,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.3,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22393,0,0,Ford,Freestyle FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.4,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,VMODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22394,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22395,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,25.4,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22396,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22397,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22398,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.7,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22399,0,0,GMC,Envoy XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.641,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44020,(GUZZLER) (FFS),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,224,9,0,Rolls-Royce,Corniche/Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2240,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Small Station Wagons,1986,1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22400,0,0,GMC,Envoy XUV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.7,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22401,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.6,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2006,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22402,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22403,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22404,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22405,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.8,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22406,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22407,0,31,Hyundai,Santa Fe 2WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22408,0,31,Hyundai,Santa Fe 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22409,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2006,-500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,2241,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Small Station Wagons,1986,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22410,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7,0.0,35.2,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22411,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22412,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8,0.0,24.3,0.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22413,0,0,Isuzu,Ascender 5-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22414,0,0,Isuzu,Ascender 7-passenger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,25.7,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22415,0,0,Isuzu,Ascender 7-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,25.641,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22416,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22417,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.359,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22418,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,24.359,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22419,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,28.5,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2242,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1986,-1000,,VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22420,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22421,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22422,0,0,Jeep,Liberty/Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,29.1,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22423,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22424,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22425,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22426,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2006,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22427,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,35.2,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22428,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22429,0,0,Lexus,RX 330 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6294,0.0,32.3307,0.0,Sport Utility Vehicle - 2WD,2006,-3000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2243,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1986,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22430,0,0,Lexus,RX 330 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2006,-3750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,HEV,-1,2050,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22431,0,0,Lexus,RX 400h 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.8,0.0,35.5,0.0,Sport Utility Vehicle - 2WD,2006,1750,,,,,Hybrid,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22432,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.1,0.0,22.7,0.0,Sport Utility Vehicle - 2WD,2006,-11250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22433,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22434,0,0,Mazda,Tribute 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1996,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2006,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22435,0,0,Mazda,Tribute 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22436,0,0,Mercury,Mariner FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22437,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22438,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.5,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22439,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.3,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2244,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1986,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22440,0,0,Mitsubishi,Endeavor 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.3792,0.0,29.4821,0.0,Sport Utility Vehicle - 2WD,2006,-4750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22441,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,35.5,0.0,Sport Utility Vehicle - 2WD,2006,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22442,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.7589,0.0,33.5728,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22443,0,0,Nissan,Armada 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9432,0.0,24.072,0.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22444,0,0,Nissan,Murano FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22445,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7506,0.0,29.2008,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22446,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22447,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22448,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,34.6154,0.0,Sport Utility Vehicle - 2WD,2006,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22449,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5,0.0,37.1,0.0,Sport Utility Vehicle - 2WD,2006,0,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,2245,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,50.0,0.0,Small Station Wagons,1986,2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22450,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,35.4,0.0,Sport Utility Vehicle - 2WD,2006,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22451,0,0,Suzuki,Grand Vitara,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22452,0,0,Suzuki,Grand Vitara,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22453,0,0,Suzuki,Grand Vitara XL7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.8,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22454,0,0,Suzuki,Grand Vitara XL7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,27.9,0.0,Sport Utility Vehicle - 2WD,2006,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22455,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3166,0.0,28.3783,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22456,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5989,0.0,25.3371,0.0,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22457,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.8,0.0,Sport Utility Vehicle - 2WD,2006,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22458,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2006,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,HEV,-1,2050,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22459,0,0,Toyota,Highlander Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.8,0.0,35.5,0.0,Sport Utility Vehicle - 2WD,2006,1750,,,,,Hybrid,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2246,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1986,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22460,0,0,Toyota,Sequoia 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,23.0996,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,42,101,22461,0,0,Volvo,XC 90 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1833,0.0,29.1742,0.0,Sport Utility Vehicle - 2WD,2006,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22462,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,29.3,0.0,Sport Utility Vehicle - 4WD,2006,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22463,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2006,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22464,0,0,BMW,X3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.7,0.0,29.8,0.0,Sport Utility Vehicle - 4WD,2006,-5750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22465,0,0,BMW,X5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22466,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22467,0,0,BMW,X5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22468,0,0,BMW,X5 4.8is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22469,0,0,Buick,Rainier AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,2247,0,29,Ford,Escort Wagon,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Small Station Wagons,1986,3250,,SIL,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22470,0,0,Buick,Rainier AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.2,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22471,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22472,0,0,Buick,Rendezvous AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22473,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22474,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-11250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22475,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-11250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22476,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.2,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22477,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22478,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,29.4872,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22479,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2248,0,23,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Small Station Wagons,1986,1500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22480,0,0,Chevrolet,Suburban 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22481,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22482,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22483,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.2,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22484,0,0,Chevrolet,TrailBlazer AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.3,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22485,0,0,Chevrolet,TrailBlazer Ext 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22486,0,0,Chevrolet,TrailBlazer Ext 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22487,0,0,Chrysler,Pacifica AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3995,0.0,28.0996,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22488,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22489,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2249,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.8718,0.0,Small Station Wagons,1986,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22490,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22491,0,0,Dodge,Magnum AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22492,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9996,0.0,30.8948,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22493,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22494,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,29.5499,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22495,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.6,0.0,36.9,0.0,Sport Utility Vehicle - 4WD,2006,1750,,VLKUP,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22496,0,0,Ford,Expedition 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2936,0.0,22.4063,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22497,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3966,0.0,25.67,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22498,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6951,0.0,25.4802,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22499,0,0,Ford,Freestyle AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.8259,0.0,30.8151,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,VMODE VLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,66010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,78,225,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1985,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,26021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2250,0,23,Honda,Civic Wagon 4WD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1986,500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22500,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22501,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.2,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22502,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22503,0,0,GMC,Envoy XL 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22504,0,0,GMC,Envoy XUV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22505,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22506,0,0,GMC,Yukon 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22507,0,0,GMC,Yukon XL 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.2,0.0,Sport Utility Vehicle - 4WD,2006,-9250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22508,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.5537,0.0,34.6072,0.0,Sport Utility Vehicle - 4WD,2006,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22509,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,32.8,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2251,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,37.0,0.0,Small Station Wagons,1986,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22510,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22511,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22512,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22513,0,0,Hummer,H3 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22514,0,0,Hummer,H3 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.5,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22515,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V6,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22516,0,31,Hyundai,Santa Fe 4WD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22517,0,23,Hyundai,Tucson 4WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22518,0,23,Hyundai,Tucson 4WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22519,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4,0.0,22.9,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,2252,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,50.0,0.0,Small Station Wagons,1986,2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22520,0,0,Isuzu,Ascender 5-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22521,0,0,Isuzu,Ascender 7-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22522,0,0,Isuzu,Ascender 7-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22523,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22524,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22525,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22526,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22527,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22528,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,4,2.8,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22529,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.9,0.0,32.7,0.0,Sport Utility Vehicle - 4WD,2006,-2000,,CMODE,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2253,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1986,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22530,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22531,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22532,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22533,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,0.0,22.7,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22534,0,0,Jeep,Wrangler/TJ 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3842,0.0,23.758,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22535,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.1498,0.0,25.0451,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22536,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.5,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22537,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22538,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,29.3986,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22539,0,0,Land Rover,LR3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.422,0.0,24.2123,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,2254,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,55.0,0.0,Small Station Wagons,1986,3250,,SIL,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22540,0,0,Land Rover,LR3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22541,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.5,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22542,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6,0.0,23.3,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22543,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.5,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22544,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,6MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22545,0,0,Lexus,GX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,22546,0,0,Lexus,LX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9498,0.0,21.2489,0.0,Sport Utility Vehicle - 4WD,2006,-9250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22547,0,0,Lexus,RX 330 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4523,0.0,30.557,0.0,Sport Utility Vehicle - 4WD,2006,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22548,0,0,Lexus,RX 330 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2006,-4750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22549,0,0,Lexus,RX 400h 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.267,0.0,34.2662,0.0,Sport Utility Vehicle - 4WD,2006,1500,,,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56020,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2255,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,29.0,0.0,Small Station Wagons,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22550,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9996,0.0,30.8948,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22551,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22552,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,29.5499,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22553,0,0,Mazda,Tribute Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.6,0.0,36.9,0.0,Sport Utility Vehicle - 4WD,2006,1750,,VLKUP,,,Hybrid,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22554,0,41,Mercedes-Benz,ML350,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.9,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22555,0,41,Mercedes-Benz,ML500,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.6,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22556,0,14,Mercedes-Benz,R350,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.1,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22557,0,14,Mercedes-Benz,R500,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.5973,0.0,22.7982,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22558,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9996,0.0,30.8948,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22559,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8995,0.0,29.5499,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56020,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2256,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1986,500,,,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22560,0,0,Mercury,Mariner Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.6,0.0,36.9,0.0,Sport Utility Vehicle - 4WD,2006,1750,,VLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22561,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3966,0.0,25.67,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22562,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6951,0.0,25.4802,0.0,Sport Utility Vehicle - 4WD,2006,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22563,0,0,Mitsubishi,Endeavor 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.7412,0.0,27.5224,0.0,Sport Utility Vehicle - 4WD,2006,-5750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,SOHC,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22564,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.2,0.0,23.9,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22565,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1,0.0,34.2,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22566,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.8644,0.0,32.2651,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.60,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22567,0,0,Nissan,Armada 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6164,0.0,23.181,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22568,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.6358,0.0,31.3359,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22569,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7312,0.0,26.5784,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56020,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2257,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1986,500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22570,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.5,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22571,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7529,0.0,26.7333,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22572,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22573,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.2,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22574,0,0,Porsche,Cayenne S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22575,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.3,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22576,0,0,Saab,9-7X AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22577,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.641,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22578,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,32.0513,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22579,0,0,Subaru,B9 Tribeca AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7,0.0,29.0,0.0,Sport Utility Vehicle - 4WD,2006,-4750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2258,0,37,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1986,-1000,,VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22580,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,35.4,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22581,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1238,0.0,32.171,0.0,Sport Utility Vehicle - 4WD,2006,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22582,0,0,Subaru,Baja AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0741,0.0,36.0858,0.0,Sport Utility Vehicle - 4WD,2006,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22583,0,0,Subaru,Baja AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),20.5,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2006,-4750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22584,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0983,0.0,32.8209,0.0,Sport Utility Vehicle - 4WD,2006,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22585,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1393,0.0,35.5232,0.0,Sport Utility Vehicle - 4WD,2006,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22586,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6772,0.0,33.4229,0.0,Sport Utility Vehicle - 4WD,2006,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22587,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5645,0.0,37.3063,0.0,Sport Utility Vehicle - 4WD,2006,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22588,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.586,0.0,32.8161,0.0,Sport Utility Vehicle - 4WD,2006,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22589,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1238,0.0,32.171,0.0,Sport Utility Vehicle - 4WD,2006,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2259,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Small Station Wagons,1986,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22590,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0741,0.0,36.0858,0.0,Sport Utility Vehicle - 4WD,2006,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22591,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.6193,0.0,36.4,0.0,Sport Utility Vehicle - 4WD,2006,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22592,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2006,-3750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22593,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.586,0.0,32.8161,0.0,Sport Utility Vehicle - 4WD,2006,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22594,0,0,Suzuki,Grand Vitara AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22595,0,0,Suzuki,Grand Vitara AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22596,0,0,Suzuki,Grand Vitara XL7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22597,0,0,Suzuki,Grand Vitara XL7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22598,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,26.7,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22599,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2006,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,78,226,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1985,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,2260,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Small Station Wagons,1986,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22600,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2006,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22601,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2006,-2500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22602,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.267,0.0,34.2662,0.0,Sport Utility Vehicle - 4WD,2006,1500,,,,,Hybrid,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,22603,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9498,0.0,21.2489,0.0,Sport Utility Vehicle - 4WD,2006,-9250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22604,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.437,0.0,22.4194,0.0,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22605,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.9,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2006,-6750,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22606,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,23.4473,0.0,Sport Utility Vehicle - 4WD,2006,-9500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22607,0,0,Volvo,XC 70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2006,-3750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22608,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9825,0.0,27.9626,0.0,Sport Utility Vehicle - 4WD,2006,-5750,,2MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22609,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.4625,0.0,26.6463,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2261,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Small Station Wagons,1986,-500,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,22610,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2006,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,22611,0,16,Chrysler,Sebring 4 Door,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2006,-1000,,CLKUP,,,FFV,E85,270,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22612,0,0,Chrysler,Sebring Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,35.2989,0.0,Compact Cars,2006,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22613,0,0,Chrysler,Sebring Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,35.2989,0.0,Compact Cars,2006,-1000,,CLKUP,,,,,,, +14.964294,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,403.95454545454544,22,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,FLEX-FUEL,-1,2500,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,22614,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,18.0,40.0,30.2,Midsize Cars,2006,-500,,CLKUP,,,FFV,E85,330,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,22615,0,16,Dodge,Stratus 4 Door,Y,false,0,64,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2006,-1000,,2MODE CLKUP,,,FFV,E85,270,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,FLEX-FUEL,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,22616,0,16,Dodge,Stratus 4 Door,N,false,0,64,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,17.2,35.2989,26.0,Midsize Cars,2006,-1000,,CLKUP,,,FFV,E85,270,, +14.964294,4.404708,0.0,0.0,18,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,403.95454545454544,22,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,FLEX-FUEL,-1,2500,2700,Gasoline or E85,Regular Gasoline,-1,-1,28,0.0,21,0.0,0.0,0.0,0.0,0,0,22617,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,17.6,39.7499,30.0,Large Cars,2006,-500,,CLKUP,,,FFV,E85,330,, +16.4805,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,444.35,20,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,16,0.0,0.0,0.0,0.0,0,0,22618,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3981,14.1,33.846,22.1,Minivan - 2WD,2006,-1750,,CLKUP,,,FFV,E85,280,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,22619,0,21,Ford,Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6026,13.7987,32.3698,23.1849,Large Cars,2006,-3250,,CLKUP,,,FFV,E85,280,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2262,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FLEX-FUEL,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,22620,0,17,Ford,Taurus,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,16.3,34.6,26.0,Large Cars,2006,-1750,,CLKUP,,,FFV,E85,300,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,22621,0,21,Mercury,Grand Marquis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6026,13.7987,32.3698,23.1849,Large Cars,2006,-3250,,CLKUP,,,FFV,E85,280,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,FLEX-FUEL,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,22622,0,21,Lincoln,Town Car,Y,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6026,13.7987,32.3698,23.1849,Large Cars,2006,-3250,,CLKUP,,,FFV,E85,280,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22623,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,24.0,18.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,FFV,E85,310/480,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,22624,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6741,13.3985,25.641,20.4329,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,FFV,E85,310/480,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,15,0.0,0.0,0.0,0.0,0,0,22625,0,0,Chevrolet,Silverado 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8049,13.4405,25.641,20.4608,Standard Pickup Trucks 2WD,2006,-5250,,CLKUP,,,FFV,E85,310/480,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22626,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,24.0,18.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,FFV,E85,310/480,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,22627,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,12.7,25.9,19.7,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,FFV,E85,310/480,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,22628,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,12.7,25.9,19.7,Sport Utility Vehicle - 2WD,2006,-5250,,CLKUP,,,FFV,E85,310/480,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22629,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,24.0,18.0,Sport Utility Vehicle - 2WD,2006,-7750,,CLKUP,,,FFV,E85,310/480,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2263,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Small Station Wagons,1986,-2500,,,,,,,,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,22630,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Sport Utility Vehicle - 2WD,2006,-11000,,CLKUP,,,FFV,E85,260,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,22631,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Sport Utility Vehicle - 4WD,2006,-11000,,CLKUP,,,FFV,E85,260,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22632,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/440,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22633,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4316,12.6777,23.9324,18.4437,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,FFV,E85,310/440,, +21.974,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,22634,0,0,Chevrolet,Silverado 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8941,12.7333,24.4763,18.5147,Standard Pickup Trucks 4WD,2006,-6250,,CLKUP,,,FFV,E85,310/440,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22635,0,0,Chevrolet,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/440,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22636,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/440,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22637,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/440,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22638,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,11.8,23.6,17.7,Sport Utility Vehicle - 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/440,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,22639,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Standard Pickup Trucks 2WD,2006,-11000,,CLKUP,,,FFV,E85,260,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2264,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1986,-2500,,,,,,,,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,0.0,11,0.0,0.0,0.0,0.0,0,0,22640,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,9.8,19.2308,14.6,Standard Pickup Trucks 4WD,2006,-11000,,CLKUP,,,FFV,E85,260,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22641,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6426,11.4543,23.8814,17.4804,Standard Pickup Trucks 2WD,2006,-7750,,CLKUP,,,FFV,E85,310/330,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,22642,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1646,11.0064,23.0232,16.6172,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,FFV,E85,310/330,, +7.844718,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1300,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,22643,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2006,5500,,EMS,,,Hybrid,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22644,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),24.9,0.0,39.7,0.0,Compact Cars,2006,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22645,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,38.5,0.0,Compact Cars,2006,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,22646,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9852,0.0,40.046,0.0,Compact Cars,2006,0,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,22647,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0221,0.0,40.706,0.0,Compact Cars,2006,-500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22648,0,13,Cadillac,STS-V,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),15.0,0.0,25.9,0.0,Midsize Cars,2006,-9500,G,3MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22649,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4824,0.0,35.9531,0.0,Midsize Cars,2006,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2265,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1986,-1000,,VLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22650,0,37,Saab,9-5 SportCombi,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4824,0.0,35.9531,0.0,Midsize Station Wagons,2006,-3000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22651,0,20,Audi,A3 quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,34.6,0.0,Small Station Wagons,2006,-2250,,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.1,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,22652,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2006,-13250,,CMODE,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22653,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.6193,0.0,36.4,0.0,Sport Utility Vehicle - 4WD,2006,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22654,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,27.9,0.0,Standard Pickup Trucks 2WD,2006,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.5,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22655,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,27.9,0.0,Standard Pickup Trucks 2WD,2006,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22656,0,0,Ford,GT 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.4444,0.0,26.9,0.0,Two Seaters,2006,-9500,G,,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22659,0,0,Lotus,Elise/Exige,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4444,0.0,37.6,0.0,Two Seaters,2006,-1750,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2266,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1986,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22660,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.5,0.0,23.8,0.0,Two Seaters,2006,-9500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,16,8.0,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,22661,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),9.4,0.0,18.9,0.0,Two Seaters,2006,-18250,G,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22662,0,0,BMW,Z4 3.0si Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Two Seaters,2006,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22663,0,0,BMW,Z4 3.0si Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Two Seaters,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22664,0,0,BMW,Z4 3.0i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Two Seaters,2006,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22665,0,0,BMW,Z4 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Two Seaters,2006,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22666,0,0,BMW,Z4 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8833,0.0,37.5345,0.0,Two Seaters,2006,-2250,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22667,0,0,BMW,Z4 3.0si,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.449,0.0,38.5592,0.0,Two Seaters,2006,-2250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22668,0,0,BMW,Z4 M Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8899,0.0,30.9,0.0,Two Seaters,2006,-5750,G,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22669,0,0,BMW,Z4 M Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8899,0.0,30.9,0.0,Two Seaters,2006,-5750,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2267,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Small Station Wagons,1986,500,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22670,0,0,Cadillac,XLR-V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3,0.0,28.1,0.0,Two Seaters,2006,-5250,G,2MODE CLKUP,,S,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,22671,0,0,Ferrari,F141,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,11.348,0.0,17.895,0.0,Two Seaters,2006,-15500,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,22672,0,0,Ferrari,F141,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.4,0.0,17.5,0.0,Two Seaters,2006,-15500,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22673,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,35.2,0.0,Two Seaters,2006,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22674,0,0,Porsche,Cayman S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.0,0.0,Two Seaters,2006,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22675,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2006,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,HEV,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22676,0,11,Honda,Accord Hybrid,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.5,0.0,43.0402,0.0,Midsize Cars,2006,1000,,EMS CLKUP,,,Hybrid,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22677,0,14,Kia,Optima (2006 New Model),Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.9,0.0,43.4,0.0,Midsize Cars,2006,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22678,0,14,Kia,Optima (2006 New Model),Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.6,0.0,Midsize Cars,2006,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22679,0,14,Kia,Optima (2006 New Model),Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.6,0.0,39.1,0.0,Midsize Cars,2006,0,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,2268,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Small Station Wagons,1986,1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22680,0,16,Saab,9-5,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,37.8,0.0,Midsize Cars,2006,-1750,,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,22681,0,15,Maybach,57S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,11.8,0.0,20.6,0.0,Large Cars,2006,-13250,G,EMS 2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22682,0,25,Mitsubishi,Lancer Sportback,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9199,0.0,36.8372,0.0,Small Station Wagons,2006,-500,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22683,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,37.8,0.0,Midsize Station Wagons,2006,-1750,,,T,,,,,, +23.534154,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,FLEX-FUEL,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,22684,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.342,11.8498,23.7491,17.6499,Standard Pickup Trucks 2WD,2006,-7750,,CLKUP,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,FLEX-FUEL,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,22685,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,11.0006,22.6,16.3111,Standard Pickup Trucks 4WD,2006,-7750,,CLKUP,,,FFV,E85,290,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22686,0,0,Infiniti,FX35 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1676,0.0,30.0834,0.0,Sport Utility Vehicle - 2WD,2006,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22687,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.8192,0.0,38.1226,0.0,Sport Utility Vehicle - 2WD,2006,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22688,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2006,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22689,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.9599,0.0,27.458,0.0,Sport Utility Vehicle - 4WD,2006,-4250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2269,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22690,0,0,Infiniti,FX45 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.859,0.0,23.6385,0.0,Sport Utility Vehicle - 4WD,2006,-8000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22691,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5041,0.0,35.435,0.0,Sport Utility Vehicle - 4WD,2006,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22692,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.6596,0.0,35.5657,0.0,Sport Utility Vehicle - 4WD,2006,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22693,0,0,Spyker,C8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,24.8,0.0,Two Seaters,2006,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22694,0,0,Spyker,C8 Spyder Wide Body,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,24.8,0.0,Two Seaters,2006,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22695,4,0,Spyker,C8 Laviolette,N,false,47,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,24.8,0.0,Minicompact Cars,2006,-6250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22696,13,0,BMW,M6,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),13.065,0.0,23.6289,0.0,Subcompact Cars,2006,-11250,G,6MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22697,13,0,Volvo,New C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5,0.0,36.8,0.0,Subcompact Cars,2006,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22698,0,14,Infiniti,Q45,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4245,0.0,30.9131,0.0,Midsize Cars,2006,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22699,0,14,Infiniti,Q45 Sport,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1,0.0,30.9971,0.0,Midsize Cars,2006,-4750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,78,227,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2270,0,35,Renault,18i Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Small Station Wagons,1986,-2500,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22700,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2006,-5500,,3MODE CLKUP,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2271,0,35,Renault,18i Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Small Station Wagons,1986,0,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,22711,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.5,0.0,Two Seaters,2007,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,22712,0,0,Lamborghini,L-147/148 Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2007,-15500,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22713,7,0,Mercedes-Benz,SL55 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.0,0.0,24.1,0.0,Two Seaters,2007,-9500,G,EMS 2MODE CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22714,7,0,Mercedes-Benz,SL550,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.0,0.0,28.6,0.0,Two Seaters,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22715,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.2,0.0,Two Seaters,2007,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22716,7,0,Mercedes-Benz,SL65 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1,0.0,24.6,0.0,Two Seaters,2007,-9500,G,EMS 2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(OHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2272,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22721,11,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2007,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22722,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2007,-3750,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22723,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2167,0.0,37.0323,0.0,Minicompact Cars,2007,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22724,5,0,Mitsubishi,Eclipse Spyder,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.1661,0.0,36.2832,0.0,Minicompact Cars,2007,-500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22725,5,0,Mitsubishi,Eclipse Spyder,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2756,0.0,33.1809,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22726,5,0,Mitsubishi,Eclipse Spyder,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2489,0.0,33.2912,0.0,Minicompact Cars,2007,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2273,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Small Station Wagons,1986,-1000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22733,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.1,0.0,Subcompact Cars,2007,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22734,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,43.6,0.0,Subcompact Cars,2007,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,82,22735,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1628,0.0,38.6441,0.0,Subcompact Cars,2007,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,82,22736,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.9777,0.0,36.5277,0.0,Subcompact Cars,2007,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,82,22737,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8188,0.0,34.4164,0.0,Subcompact Cars,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,82,22738,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,35.739,0.0,Subcompact Cars,2007,-3000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66025,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2274,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,33.3333,0.0,Small Station Wagons,1986,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22741,0,0,Pontiac,G5/Pursuit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.1,0.0,Subcompact Cars,2007,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22742,0,0,Pontiac,G5/Pursuit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,43.6,0.0,Subcompact Cars,2007,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22743,0,11,Subaru,Impreza AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0001,0.0,32.6975,0.0,Subcompact Cars,2007,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22744,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0124,0.0,35.392,0.0,Subcompact Cars,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22745,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4723,0.0,34.7604,0.0,Subcompact Cars,2007,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22746,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3281,0.0,36.8954,0.0,Subcompact Cars,2007,-500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,85,22749,0,14,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.6644,0.0,49.649,0.0,Subcompact Cars,2007,3000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66024,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2275,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Small Station Wagons,1986,500,,,T,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,85,22750,0,14,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.8682,0.0,51.3969,0.0,Subcompact Cars,2007,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,94,22757,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5604,0.0,43.5036,0.0,Compact Cars,2007,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,I4,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,94,22758,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2,0.0,47.0,0.0,Compact Cars,2007,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,94,22759,0,15,Ford,Focus,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,40.8,0.0,Compact Cars,2007,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2276,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.7436,0.0,Small Station Wagons,1986,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,22760,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0998,0.0,47.1153,0.0,Compact Cars,2007,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,I4,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,22761,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3499,0.0,44.4432,0.0,Compact Cars,2007,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,HEV,-1,2600,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22762,0,8,Lexus,GS 450h,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9,0.0,35.3494,0.0,Compact Cars,2007,-1000,,,,,Hybrid,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22763,13,14,Pontiac,G6,Y,false,87,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.7,0.0,41.8,0.0,Compact Cars,2007,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22767,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.1,0.0,Compact Cars,2007,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22768,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,43.6,0.0,Compact Cars,2007,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22769,0,11,Subaru,Legacy AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3281,0.0,36.8954,0.0,Compact Cars,2007,-500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,2277,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Small Station Wagons,1986,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22770,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S4),25.5706,0.0,38.4754,0.0,Compact Cars,2007,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,22779,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Compact Cars,2007,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2278,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Small Station Wagons,1986,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,22780,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.2275,0.0,40.3969,0.0,Compact Cars,2007,0,,3MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22781,0,16,Volkswagen,Jetta,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Compact Cars,2007,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22782,0,16,Volkswagen,Jetta,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),28.2275,0.0,40.3969,0.0,Compact Cars,2007,0,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22784,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Midsize Cars,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22785,0,14,BMW,525i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Midsize Cars,2007,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22786,0,14,BMW,525xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Midsize Cars,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22787,0,14,BMW,525xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Midsize Cars,2007,-3000,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22788,0,14,BMW,530i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Midsize Cars,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22789,0,14,BMW,530i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Midsize Cars,2007,-1750,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2279,0,27,Toyota,Tercel Wagon 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Small Station Wagons,1986,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,SMG TRANS,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22790,0,14,BMW,530i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8421,0.0,34.7621,0.0,Midsize Cars,2007,-3000,,4MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22791,0,14,BMW,530xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Midsize Cars,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22792,0,14,BMW,530xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Midsize Cars,2007,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22793,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,30.4,0.0,Midsize Cars,2007,-4750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22794,0,14,BMW,550i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1255,0.0,31.6055,0.0,Midsize Cars,2007,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,SMG TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22795,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2855,0.0,28.0644,0.0,Midsize Cars,2007,-6750,G,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,228,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,59015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2280,0,38,Volkswagen,Quantum Syncro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Station Wagons,1986,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2281,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,32.0,0.0,Small Station Wagons,1986,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22813,0,15,Lexus,ES 350,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,38.3,0.0,Midsize Cars,2007,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2282,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1986,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22822,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.5938,0.0,42.3803,0.0,Midsize Cars,2007,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22823,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.1,0.0,Midsize Cars,2007,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22824,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.8,0.0,Midsize Cars,2007,0,,CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,22825,0,11,Toyota,Camry Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.2454,0.0,48.2,0.0,Midsize Cars,2007,4000,,,,,Hybrid,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22826,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Midsize Cars,2007,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22827,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,39.2,0.0,Midsize Cars,2007,-1750,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22828,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1675,0.0,35.9676,0.0,Midsize Cars,2007,-3000,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22829,0,14,Volkswagen,Passat 4motion,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,33.5,0.0,Midsize Cars,2007,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2283,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Small Station Wagons,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22839,0,21,Ford,Five Hundred AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.6657,0.0,32.3033,0.0,Large Cars,2007,-2500,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2284,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Station Wagons,1986,-2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22840,0,21,Ford,Five Hundred FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2007,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,22843,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,42.8,0.0,Large Cars,2007,500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22844,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.7,0.0,Large Cars,2007,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22845,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,38.2,0.0,Large Cars,2007,-1000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64001,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2285,0,39,Audi,5000 CS quattro Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22854,0,21,Mercury,Montego AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.6657,0.0,32.3033,0.0,Large Cars,2007,-2500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22855,0,21,Mercury,Montego FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.0,0.0,Large Cars,2007,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22856,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,30.2,0.0,Large Cars,2007,-5750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22857,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,24.0,0.0,Large Cars,2007,-11250,G,EMS 2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2286,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1986,-4250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,21,90,22860,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.7,0.0,49.3,0.0,Small Station Wagons,2007,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,21,90,22861,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.7399,0.0,48.2,0.0,Small Station Wagons,2007,3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,21,90,22862,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),34.3,0.0,47.7,0.0,Small Station Wagons,2007,2500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22863,0,18,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0001,0.0,32.6975,0.0,Small Station Wagons,2007,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22864,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0124,0.0,35.392,0.0,Small Station Wagons,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22865,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4723,0.0,34.7604,0.0,Small Station Wagons,2007,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22866,0,18,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3281,0.0,36.8954,0.0,Small Station Wagons,2007,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22869,0,34,BMW,530xi Sport Wagon,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Midsize Station Wagons,2007,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2287,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22870,0,34,BMW,530xi Sport Wagon,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Midsize Station Wagons,2007,-3000,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,22871,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.5604,0.0,43.5036,0.0,Midsize Station Wagons,2007,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,I4,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,22872,0,36,Ford,Focus Station Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2,0.0,47.0,0.0,Midsize Station Wagons,2007,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22873,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3281,0.0,36.8954,0.0,Midsize Station Wagons,2007,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,22874,0,34,Subaru,Legacy Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),25.5706,0.0,38.4754,0.0,Midsize Station Wagons,2007,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22875,0,36,Volkswagen,Passat Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),25.5432,0.0,40.0959,0.0,Midsize Station Wagons,2007,-1000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22876,0,36,Volkswagen,Passat Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1675,0.0,35.9676,0.0,Midsize Station Wagons,2007,-3000,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22877,0,36,Volkswagen,Passat Wagon 4motion,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,33.5,0.0,Midsize Station Wagons,2007,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22878,0,0,Chevrolet,Silverado Classic 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.2979,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22879,0,0,Chevrolet,Silverado Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,28.9,0.0,Standard Pickup Trucks 2WD,2007,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2288,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22880,0,0,Chevrolet,Silverado Classic 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,26.8224,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22881,0,0,Chevrolet,Silverado Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8371,0.0,26.6281,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22882,0,0,Chevrolet,Silverado Classic 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1043,0.0,23.7524,0.0,Standard Pickup Trucks 2WD,2007,-8000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22883,0,0,Chevrolet,Silverado Classic 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22884,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.3,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22885,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22886,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.373,0.0,32.8551,0.0,Standard Pickup Trucks 2WD,2007,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22887,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Standard Pickup Trucks 2WD,2007,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22888,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.498,0.0,27.5537,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22889,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9135,0.0,29.7591,0.0,Standard Pickup Trucks 2WD,2007,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2289,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22890,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22891,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,28.0,0.0,Standard Pickup Trucks 2WD,2007,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22892,0,0,GMC,Sierra Classic 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.5,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22893,0,0,GMC,Sierra Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,28.9,0.0,Standard Pickup Trucks 2WD,2007,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22894,0,0,GMC,Sierra Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3,0.0,26.83,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22895,0,0,GMC,Sierra Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8611,0.0,26.6463,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22896,0,0,GMC,Sierra Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1022,0.0,23.7513,0.0,Standard Pickup Trucks 2WD,2007,-8000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22897,0,0,GMC,Sierra Classic 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,26.5,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,Hybrid,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22898,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.373,0.0,32.8551,0.0,Standard Pickup Trucks 2WD,2007,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,22899,0,0,Mazda,B2300 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Standard Pickup Trucks 2WD,2007,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,229,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0256,0.0,Subcompact Cars,1985,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2290,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22900,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4559,0.0,27.4877,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22901,0,0,Mazda,B3000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9705,0.0,29.5876,0.0,Standard Pickup Trucks 2WD,2007,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22902,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22903,0,0,Chevrolet,Silverado Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22904,0,0,Chevrolet,Silverado Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.009,0.0,25.933,0.0,Standard Pickup Trucks 4WD,2007,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22905,0,0,Chevrolet,Silverado Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1012,0.0,24.8388,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22906,0,0,Chevrolet,Silverado Classic 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5396,0.0,24.185,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22907,0,0,Chevrolet,Silverado Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.7,0.0,Standard Pickup Trucks 4WD,2007,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22908,0,0,Chevrolet,Silverado Classic 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,24.9,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22909,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2862,0.0,25.3869,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4401,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2291,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22910,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4136,0.0,25.0198,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22911,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6723,0.0,25.5863,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22912,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,26.9,0.0,Standard Pickup Trucks 4WD,2007,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22913,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6785,0.0,23.7589,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22914,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Standard Pickup Trucks 4WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22915,0,0,GMC,Sierra Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22916,0,0,GMC,Sierra Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8399,0.0,25.6961,0.0,Standard Pickup Trucks 4WD,2007,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22917,0,0,GMC,Sierra Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22918,0,0,GMC,Sierra Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.572,0.0,23.9214,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22919,0,0,GMC,Sierra Classic 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.7,0.0,Standard Pickup Trucks 4WD,2007,-9500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2292,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,40.0,0.0,Midsize-Large Station Wagons,1986,0,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22920,0,0,GMC,Sierra Classic 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.7,0.0,Standard Pickup Trucks 4WD,2007,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22921,0,0,GMC,Sierra Classic 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,24.9,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,Hybrid,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22923,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6785,0.0,23.7589,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22924,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Standard Pickup Trucks 4WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22925,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.641,0.0,"Vans, Cargo Type",2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22926,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.641,0.0,"Vans, Cargo Type",2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22927,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22928,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.641,0.0,"Vans, Cargo Type",2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22929,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.641,0.0,"Vans, Cargo Type",2007,-6250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4243,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2293,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,40.0,0.0,Midsize-Large Station Wagons,1986,500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22930,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5556,0.0,23.0769,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,AFM,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22931,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,AFM,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22932,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22933,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22934,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,23.8,0.0,Sport Utility Vehicle - 2WD,2007,-8000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,AFM,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22935,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22936,0,0,Buick,Rainier AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2294,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22940,0,0,Ford,Freestar Cargo Van FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7514,0.0,30.4398,0.0,Minivan - 2WD,2007,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22941,0,0,Ford,Freestar Cargo Van FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.618,0.0,29.1444,0.0,Minivan - 2WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22942,0,0,Ford,Freestar Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7514,0.0,30.4398,0.0,Minivan - 2WD,2007,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22943,0,0,Ford,Freestar Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.618,0.0,29.1444,0.0,Minivan - 2WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22944,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2007,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22945,0,0,Mercury,Monterey Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.618,0.0,29.1444,0.0,Minivan - 2WD,2007,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22946,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2769,0.0,32.6363,0.0,Minivan - 2WD,2007,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22947,0,0,Buick,Rainier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2295,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,AFM,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,22950,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.9231,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22955,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0076,0.0,32.9682,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22956,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1996,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2007,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22957,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,22958,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),40.0,0.0,40.0,0.0,Sport Utility Vehicle - 2WD,2007,2750,,VLKUP,,,Hybrid,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS) Fuel Injection,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2296,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22961,0,0,Ford,Freestyle FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.4,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,VMODE VLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,AFM,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22962,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22963,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22965,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22966,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22967,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS) Fuel Injection,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2297,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22971,0,0,Isuzu,Ascender 5-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22975,0,0,Lexus,RX 350 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2007,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22976,0,0,Lexus,RX 350 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2007,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,22977,0,0,Mazda,CX-7 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,30.7,0.0,Sport Utility Vehicle - 2WD,2007,-3750,,DC/FW,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,22978,0,0,Mercury,Mariner FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0076,0.0,32.9682,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22979,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2298,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1986,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22986,0,0,Toyota,FJ Cruiser 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2007,-4750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,22987,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1786,0.0,23.9884,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,22989,0,0,Cadillac,Escalade AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2299,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,22992,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,22993,0,0,Chevrolet,TrailBlazer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,22994,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0497,0.0,31.2922,0.0,Sport Utility Vehicle - 4WD,2007,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,22995,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6,0.0,35.2,0.0,Sport Utility Vehicle - 4WD,2007,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,22996,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8928,0.0,29.5398,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,22997,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.8,0.0,37.3,0.0,Sport Utility Vehicle - 4WD,2007,1750,,VLKUP,,,Hybrid,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56011,(ROTARY),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Two Seaters,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57050,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,76,230,10,0,Toyota,Celica,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.0,0.0,Subcompact Cars,1985,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38033,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2300,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23000,0,0,Ford,Freestyle AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),20.7884,0.0,30.648,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,VMODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23001,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23003,0,0,GMC,Yukon Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23005,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23006,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,V6,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23007,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38033,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2301,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23010,0,0,Isuzu,Ascender 5-passenger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23013,0,0,Lexus,RX 350 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23014,0,0,Lexus,RX 350 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23015,0,0,Mazda,CX-7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2,0.0,30.2,0.0,Sport Utility Vehicle - 4WD,2007,-4750,,DC/FW,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23016,0,16,Mercedes-Benz,GL450 4matic,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2007,-8000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23017,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0497,0.0,31.2922,0.0,Sport Utility Vehicle - 4WD,2007,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23018,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8928,0.0,29.5398,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23019,0,0,Mercury,Mariner Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.8,0.0,37.3,0.0,Sport Utility Vehicle - 4WD,2007,1750,,VLKUP,,,Hybrid,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2302,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize-Large Station Wagons,1986,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23022,0,0,Saab,9-7X AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23024,0,0,Subaru,B9 Tribeca AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.7666,0.0,29.2655,0.0,Sport Utility Vehicle - 4WD,2007,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23025,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0001,0.0,32.6975,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23026,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0124,0.0,35.392,0.0,Sport Utility Vehicle - 4WD,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23027,0,31,Subaru,Forester AWD,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4723,0.0,34.7604,0.0,Sport Utility Vehicle - 4WD,2007,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23028,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3281,0.0,36.8954,0.0,Sport Utility Vehicle - 4WD,2007,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23029,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.6331,0.0,36.4,0.0,Sport Utility Vehicle - 4WD,2007,-500,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2303,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1986,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23030,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5625,0.0,32.7017,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23031,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3666,0.0,36.4666,0.0,Sport Utility Vehicle - 4WD,2007,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23032,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.6331,0.0,36.4,0.0,Sport Utility Vehicle - 4WD,2007,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23033,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.5625,0.0,32.7017,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23034,0,0,Toyota,FJ Cruiser 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23035,0,0,Toyota,FJ Cruiser 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23036,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4399,0.0,25.1286,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,3MODE CLKUP,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,530,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23037,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,12.9,27.3499,20.4,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23038,0,0,GMC,Sierra Classic 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2226,13.0161,26.326,20.0195,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23039,0,0,Chevrolet,Silverado Classic 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2236,13.0169,26.3272,20.0204,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2304,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23040,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,12.9,27.3499,20.4,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23041,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,12.9,27.3499,20.4,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23042,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,12.9,27.3499,20.4,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23043,0,0,GMC,Yukon XL 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,12.9,27.3499,20.4,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23044,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.7,25.641,19.7,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,420-540,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23045,0,0,GMC,Sierra Classic 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1113,12.2675,23.8022,17.9684,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,FFV,E85,310-410,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,420-540,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23046,0,0,Chevrolet,Silverado Classic 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1149,12.2697,23.8056,17.9706,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,FFV,E85,310-410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,530,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23047,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.7,25.641,19.7,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23048,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.7,26.6,19.7,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23049,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.7,26.6,19.7,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2305,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1986,-3250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,530,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23050,0,0,GMC,Yukon XL 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.7,25.641,19.7,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-400,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23051,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,13.0,25.641,20.0,"Vans, Cargo Type",2007,-5250,,CLKUP,,,FFV,E85,340-440,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,23052,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,13.0,25.641,20.0,"Vans, Cargo Type",2007,-5250,,CLKUP,,,FFV,E85,340-440,, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,23053,0,0,Honda,Civic CNG,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2006,6500,,CLKUP,,,CNG,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3406,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2306,0,46,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,39.7436,0.0,Midsize-Large Station Wagons,1986,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23060,0,0,Cadillac,XLR-V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.4,0.0,28.3,0.0,Two Seaters,2007,-6750,G,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23061,0,0,Cadillac,XLR,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.0,0.0,Two Seaters,2007,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23062,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,33.7,0.0,Two Seaters,2007,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23063,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,22.9,0.0,Two Seaters,2007,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23064,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.3,0.0,23.6996,0.0,Two Seaters,2007,-11250,G,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23065,0,0,Lamborghini,Gallardo Coupe SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.2,0.0,24.9,0.0,Two Seaters,2007,-11250,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23066,0,0,Lamborghini,Gallardo Coupe SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7498,0.0,25.7499,0.0,Two Seaters,2007,-9500,G,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23067,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.0,0.0,21.3,0.0,Two Seaters,2007,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23068,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5498,0.0,21.9995,0.0,Two Seaters,2007,-13250,G,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23069,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,37.6,0.0,Two Seaters,2007,0,,EMS,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3505,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2307,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23070,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,38.0,0.0,Two Seaters,2007,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23071,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.011,0.0,38.5219,0.0,Two Seaters,2007,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23072,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7999,0.0,38.5092,0.0,Two Seaters,2007,-1000,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23073,7,0,Mercedes-Benz,SLK280,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0,0.0,34.1,0.0,Two Seaters,2007,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23074,7,0,Mercedes-Benz,SLK280,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,34.6,0.0,Two Seaters,2007,-3000,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23075,7,0,Mercedes-Benz,SLK350,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,32.0,0.0,Two Seaters,2007,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23076,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,32.1,0.0,Two Seaters,2007,-3750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23077,7,0,Mercedes-Benz,SLK55 AMG,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.4,0.0,28.1,0.0,Two Seaters,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23078,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3,0.0,37.0,0.0,Two Seaters,2007,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23079,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,39.5,0.0,Two Seaters,2007,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3506,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2308,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23080,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,33.4,0.0,Two Seaters,2007,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23081,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.4,0.0,Two Seaters,2007,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23082,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,36.2,0.0,Two Seaters,2007,-2250,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23083,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.4,0.0,Two Seaters,2007,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23084,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,39.8,0.0,Two Seaters,2007,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23085,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,35.2,0.0,Two Seaters,2007,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23086,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.0,0.0,Two Seaters,2007,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23087,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,36.2,0.0,Two Seaters,2007,-2250,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23088,0,0,Porsche,Cayman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.4,0.0,Two Seaters,2007,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23089,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,39.8,0.0,Two Seaters,2007,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2309,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23090,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,35.2,0.0,Two Seaters,2007,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23091,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.0,0.0,Two Seaters,2007,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23092,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3,0.0,37.0,0.0,Two Seaters,2007,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23093,0,0,Saturn,SKY,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,39.5,0.0,Two Seaters,2007,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23094,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,33.4,0.0,Two Seaters,2007,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23095,0,0,Saturn,SKY,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.4,0.0,Two Seaters,2007,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23096,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8791,0.0,33.5264,0.0,Minicompact Cars,2007,-3000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23097,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4636,0.0,33.5084,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23098,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8791,0.0,33.5264,0.0,Minicompact Cars,2007,-3000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23099,5,0,Porsche,Carrera 2 Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4636,0.0,33.5084,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,76,231,10,0,Toyota,Celica,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3505,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2310,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23100,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8636,0.0,33.1455,0.0,Minicompact Cars,2007,-3000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23101,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9585,0.0,32.7824,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23102,5,0,Porsche,Carrera 2 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8636,0.0,33.1455,0.0,Minicompact Cars,2007,-3000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23103,5,0,Porsche,Carrera 2 S Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9585,0.0,32.7824,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23104,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,32.8,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23105,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3163,0.0,33.0314,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23106,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,33.2,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23107,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3163,0.0,33.0314,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23108,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23109,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2631,0.0,31.7733,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3506,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2311,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23110,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,32.3,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23111,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2631,0.0,31.7733,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23112,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23113,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2631,0.0,31.7733,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23114,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,32.8,0.0,Minicompact Cars,2007,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23115,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3163,0.0,33.0314,0.0,Minicompact Cars,2007,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23116,5,0,Porsche,Turbo 4 911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0,0.0,32.5,0.0,Minicompact Cars,2007,-4750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23117,5,0,Porsche,Turbo 4 911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,32.4,0.0,Minicompact Cars,2007,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23118,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2758,0.0,38.6437,0.0,Minicompact Cars,2007,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23119,5,0,Volkswagen,New Beetle Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0856,0.0,38.8275,0.0,Minicompact Cars,2007,-500,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2312,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23120,10,0,Audi,A4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7457,0.0,41.4136,0.0,Subcompact Cars,2007,-500,,3MODE,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23121,10,0,Audi,A4 Cabriolet quattro,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2514,0.0,38.4036,0.0,Subcompact Cars,2007,-1750,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23122,10,0,Audi,A4 Cabriolet quattro,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9817,0.0,34.219,0.0,Subcompact Cars,2007,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23123,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,26.8,0.0,Subcompact Cars,2007,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23124,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8384,0.0,28.93,0.0,Subcompact Cars,2007,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23125,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5732,0.0,23.3316,0.0,Subcompact Cars,2007,-11250,G,3MODE CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,7,91,23129,0,0,Chevrolet,Aveo 5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,44.0,0.0,Subcompact Cars,2007,1500,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2313,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,7,91,23130,0,0,Chevrolet,Aveo 5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,47.1,0.0,Subcompact Cars,2007,1750,,EMS,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23131,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1809,0.0,40.6696,0.0,Subcompact Cars,2007,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23132,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.5897,0.0,Subcompact Cars,2007,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,4.0N,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23133,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3141,0.0,32.916,0.0,Subcompact Cars,2007,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23134,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,35.3989,0.0,Subcompact Cars,2007,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23135,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0519,0.0,29.9672,0.0,Subcompact Cars,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23136,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0715,0.0,32.3076,0.0,Subcompact Cars,2007,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23137,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7846,0.0,27.3285,0.0,Subcompact Cars,2007,-6750,G,SIL,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23138,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2007,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23139,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1889,0.0,32.0,0.0,Subcompact Cars,2007,-3750,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2314,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23140,10,0,Mercedes-Benz,CLK350,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.3,0.0,35.5,0.0,Subcompact Cars,2007,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23141,9,0,Mercedes-Benz,CLK350 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,35.4,0.0,Subcompact Cars,2007,-3000,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23142,10,0,Mercedes-Benz,CLK550,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.3,0.0,30.1,0.0,Subcompact Cars,2007,-5750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23143,9,0,Mercedes-Benz,CLK550 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.0,0.0,30.2,0.0,Subcompact Cars,2007,-5750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23144,9,0,Mercedes-Benz,CLK63 AMG (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.2,0.0,25.2,0.0,Subcompact Cars,2007,-9500,G,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23145,0,0,Pontiac,G5/Pursuit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1809,0.0,40.6696,0.0,Subcompact Cars,2007,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23146,0,0,Pontiac,G5/Pursuit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.5897,0.0,Subcompact Cars,2007,1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23149,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,28.2,0.0,Subcompact Cars,2007,-6750,G,EMS,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2315,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23150,13,0,Roush Performance,Stage 3 Mustang Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1,0.0,28.0,0.0,Subcompact Cars,2007,-5750,G,EMS,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23151,0,11,Subaru,Impreza AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7,0.0,31.5,0.0,Subcompact Cars,2007,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,85,23154,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.2,0.0,Subcompact Cars,2007,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,23155,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,38.2,0.0,Subcompact Cars,2007,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23156,16,0,Volkswagen,Eos,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Subcompact Cars,2007,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23157,16,0,Volkswagen,Eos,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.5432,0.0,40.0959,0.0,Subcompact Cars,2007,-1000,,3MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,23158,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0274,0.0,39.3432,0.0,Subcompact Cars,2007,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,23159,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1783,0.0,40.8,0.0,Subcompact Cars,2007,0,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2316,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23160,13,0,Volvo,C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,37.7,0.0,Subcompact Cars,2007,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23161,13,0,Volvo,C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,37.1,0.0,Subcompact Cars,2007,-2250,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23162,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7457,0.0,41.4136,0.0,Compact Cars,2007,-500,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23163,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,43.6,0.0,Compact Cars,2007,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23164,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0008,0.0,37.5632,0.0,Compact Cars,2007,-2250,,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23165,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Compact Cars,2007,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23166,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2514,0.0,38.4036,0.0,Compact Cars,2007,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23167,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Compact Cars,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23168,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4675,0.0,34.5556,0.0,Compact Cars,2007,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23169,0,13,Audi,RS4,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.5,0.0,27.3,0.0,Compact Cars,2007,-8000,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2317,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23170,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,27.1,0.0,Compact Cars,2007,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23171,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0202,0.0,29.0875,0.0,Compact Cars,2007,-6750,G,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23172,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.8,0.0,23.8,0.0,Compact Cars,2007,-11250,G,3MODE CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23173,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,44.0,0.0,Compact Cars,2007,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23174,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,47.1,0.0,Compact Cars,2007,1750,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23175,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2007,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23176,0,12,Chevrolet,Optra,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2007,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,23177,0,0,Chevrolet,Optra 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2007,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,23178,0,0,Chevrolet,Optra 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2007,0,,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23179,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8489,0.0,30.6948,0.0,Compact Cars,2007,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2318,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,19,95,23180,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1255,0.0,45.0511,0.0,Compact Cars,2007,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,95,23181,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.7113,0.0,43.0226,0.0,Compact Cars,2007,1500,,DC/FW,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,95,23182,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,41.7,0.0,Compact Cars,2007,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,MAZDA3 T/C,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,95,23183,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,35.6872,0.0,Compact Cars,2007,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,95,23184,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.7241,0.0,40.2112,0.0,Compact Cars,2007,500,,DC/FW,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23185,0,12,Mercedes-Benz,C280,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.9,0.0,36.4,0.0,Compact Cars,2007,-1750,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23186,0,12,Mercedes-Benz,C280 4matic,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6,0.0,33.6,0.0,Compact Cars,2007,-3000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23187,0,12,Mercedes-Benz,C350,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.4,0.0,37.1,0.0,Compact Cars,2007,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23188,0,12,Mercedes-Benz,C350,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,35.7,0.0,Compact Cars,2007,-3000,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23189,0,12,Mercedes-Benz,C350 4matic,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,30.5,0.0,Compact Cars,2007,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2319,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1986,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23190,0,13,Mercedes-Benz,CLS550,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.8,0.0,28.1,0.0,Compact Cars,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23191,0,13,Mercedes-Benz,CLS63 AMG,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),14.9,0.0,25.0,0.0,Compact Cars,2007,-9500,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23192,13,14,Pontiac,G6,Y,false,87,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,38.4615,0.0,Compact Cars,2007,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23193,13,14,Pontiac,G6,Y,false,87,95,0,0.0,0.0,0.0,0.0,Automatic (S4),22.0814,0.0,36.2817,0.0,Compact Cars,2007,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23194,13,14,Pontiac,G6,N,false,87,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9,0.0,36.3499,0.0,Compact Cars,2007,-1000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23195,13,14,Pontiac,G6,N,false,87,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.078,0.0,35.0377,0.0,Compact Cars,2007,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23197,0,0,Pontiac,G6 GT/GTP Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,30.9,0.0,Compact Cars,2007,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,76,232,0,0,Toyota,Celica Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,31.0,0.0,Subcompact Cars,1985,-3750,,2MODE 2LKUP,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41030,"(DSL,TRBO) (MPFI) (NO-CAT)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2320,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,34.0,0.0,Midsize-Large Station Wagons,1986,-1500,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23200,0,15,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,38.4615,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23201,0,15,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9,0.0,36.3499,0.0,Midsize Cars,2007,-1000,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23202,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1809,0.0,40.6696,0.0,Compact Cars,2007,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23203,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,44.8718,0.0,Compact Cars,2007,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23204,0,11,Subaru,Legacy AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4723,0.0,34.7604,0.0,Compact Cars,2007,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23205,0,11,Subaru,Legacy AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,33.8,0.0,Compact Cars,2007,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23206,0,11,Subaru,Legacy AWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6566,0.0,32.4423,0.0,Compact Cars,2007,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23207,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2007,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23208,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2007,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,23209,0,0,Suzuki,Reno,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2007,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2321,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Midsize-Large Station Wagons,1986,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,23210,0,0,Suzuki,Reno,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2007,0,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23213,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.1,0.0,Compact Cars,2007,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23214,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4242,0.0,43.8723,0.0,Compact Cars,2007,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23215,14,0,Toyota,Camry Solara,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.8,0.0,37.8,0.0,Compact Cars,2007,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23216,12,0,Toyota,Camry Solara Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,36.8,0.0,Compact Cars,2007,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23217,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2758,0.0,38.6437,0.0,Compact Cars,2007,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23218,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0856,0.0,38.8275,0.0,Compact Cars,2007,-500,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,94,23219,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2758,0.0,38.6437,0.0,Compact Cars,2007,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2410,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2322,0,35,Plymouth,Reliant Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1986,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,94,23220,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0856,0.0,38.8275,0.0,Compact Cars,2007,-500,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23221,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,35.9,0.0,Compact Cars,2007,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23222,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3563,0.0,36.2032,0.0,Compact Cars,2007,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23223,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Compact Cars,2007,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23224,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.6158,0.0,39.2286,0.0,Compact Cars,2007,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23225,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,37.9,0.0,Compact Cars,2007,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23226,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.7237,0.0,38.7494,0.0,Compact Cars,2007,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23227,0,14,Volvo,S60 AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,35.2,0.0,Compact Cars,2007,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23228,0,14,Volvo,S60 AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3563,0.0,36.2032,0.0,Compact Cars,2007,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23229,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,35.6,0.0,Compact Cars,2007,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2323,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23230,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.5,0.0,Compact Cars,2007,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23231,0,14,Volvo,S60 FWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,38.6,0.0,Compact Cars,2007,-1750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23232,0,14,Volvo,S60 FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),23.7237,0.0,38.7494,0.0,Compact Cars,2007,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23233,0,14,Volvo,S60 R AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Compact Cars,2007,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23234,0,14,Volvo,S60 R AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1994,0.0,32.4935,0.0,Compact Cars,2007,-4750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23235,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0008,0.0,37.5632,0.0,Midsize Cars,2007,-2250,,3MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23236,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4675,0.0,34.5556,0.0,Midsize Cars,2007,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23237,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8921,0.0,31.5034,0.0,Midsize Cars,2007,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23238,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8921,0.0,31.5034,0.0,Midsize Cars,2007,-4750,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23239,0,13,Bentley,Continental Flying Spur,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5732,0.0,23.3316,0.0,Midsize Cars,2007,-11250,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4242,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2324,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23240,0,16,Buick,Lacrosse/Allure,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.8,0.0,Midsize Cars,2007,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23241,0,16,Buick,Lacrosse/Allure,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,38.3,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23242,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.5,0.0,Midsize Cars,2007,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23243,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,34.1,0.0,Midsize Cars,2007,-2500,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23244,0,13,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5,0.0,33.9,0.0,Midsize Cars,2007,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23245,0,13,Cadillac,CTS,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),19.513,0.0,35.1989,0.0,Midsize Cars,2007,-2500,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23246,0,13,Cadillac,CTS-V,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.0108,0.0,30.1891,0.0,Midsize Cars,2007,-6750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23247,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),19.513,0.0,35.1989,0.0,Midsize Cars,2007,-2500,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23248,0,14,Cadillac,STS-V,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),15.0,0.0,26.6,0.0,Midsize Cars,2007,-8000,G,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23249,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.0,0.0,Midsize Cars,2007,-4750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2325,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23250,0,0,Cadillac,STS AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4,0.0,32.2,0.0,Midsize Cars,2007,-3250,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23251,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,43.6,0.0,Midsize Cars,2007,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,23252,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,41.5,0.0,Midsize Cars,2007,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23253,0,15,Chevrolet,Malibu,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),20.5,0.0,32.7,0.0,Midsize Cars,2007,-2500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23254,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,39.7436,0.0,Midsize Cars,2007,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23255,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Midsize Cars,2007,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23256,0,12,Jaguar,S-Type 3.0 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1489,0.0,35.6494,0.0,Midsize Cars,2007,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23257,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0469,0.0,33.1493,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23258,0,12,Jaguar,S-Type R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.0499,0.0,Midsize Cars,2007,-5750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23259,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5995,0.0,30.9493,0.0,Midsize Cars,2007,-4750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2326,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,22,96,23260,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1491,0.0,40.5485,0.0,Midsize Cars,2007,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,MAZDA6 T/C,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,96,23261,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9,0.0,32.6,0.0,Midsize Cars,2007,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,96,23262,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),26.1682,0.0,39.3532,0.0,Midsize Cars,2007,0,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,23263,0,14,Mazda,6,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.5,0.0,Midsize Cars,2007,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,23264,0,14,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8203,0.0,35.0461,0.0,Midsize Cars,2007,-1750,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23265,0,14,Mercedes-Benz,E350,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6985,0.0,33.8353,0.0,Midsize Cars,2007,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23266,0,14,Mercedes-Benz,E350 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,0.0,31.4,0.0,Midsize Cars,2007,-3750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23267,0,14,Mercedes-Benz,E550,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.2,0.0,29.6,0.0,Midsize Cars,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23268,0,14,Mercedes-Benz,E550 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,27.8,0.0,Midsize Cars,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23269,0,14,Mercedes-Benz,E63 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S7),15.2,0.0,25.7,0.0,Midsize Cars,2007,-8000,G,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2327,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23270,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),25.3448,0.0,38.0895,0.0,Midsize Cars,2007,0,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23271,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4899,0.0,34.6451,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23272,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.6983,0.0,35.493,0.0,Midsize Cars,2007,-2250,,VMODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,23273,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.8573,0.0,45.8725,0.0,Midsize Cars,2007,2250,,VMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,95,23274,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,44.9,0.0,Midsize Cars,2007,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,95,23275,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,44.2,0.0,Midsize Cars,2007,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23276,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,36.3,0.0,Midsize Cars,2007,-3000,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23277,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,38.9,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23278,0,16,Pontiac,Grand Prix,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.6,0.0,36.0,0.0,Midsize Cars,2007,-3000,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23279,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.24,0.0,34.6154,0.0,Midsize Cars,2007,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2328,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23280,0,15,Audi,A8 L,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8921,0.0,31.5034,0.0,Large Cars,2007,-4750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23281,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,35.8974,0.0,Large Cars,2007,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275 hp,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23282,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.6,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275 HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23283,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.6,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300 HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23284,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23285,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,25.1,0.0,Large Cars,2007,-6250,G,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23286,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1542,0.0,25.7384,0.0,Large Cars,2007,-6250,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23287,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,39.7499,0.0,Large Cars,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23288,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.7,0.0,Large Cars,2007,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23289,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Large Cars,2007,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2329,0,39,Toyota,Cressida Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1986,-4750,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,23,106,23290,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,38.4615,0.0,Large Cars,2007,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,106,23291,0,0,Chevrolet,Malibu Maxx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,30.9,0.0,Large Cars,2007,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23292,0,21,Ford,Crown Victoria,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.914,0.0,31.698,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23293,0,17,Hyundai,Azera,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,35.6,0.0,Large Cars,2007,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23294,0,15,Infiniti,M35,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8653,0.0,32.1654,0.0,Large Cars,2007,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23295,0,15,Infiniti,M35x,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4,0.0,30.5,0.0,Large Cars,2007,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23296,0,15,Infiniti,M45,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4138,0.0,29.5551,0.0,Large Cars,2007,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23297,0,15,Jaguar,Super V8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2007,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23298,0,15,Jaguar,Vdp Lwb,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0499,0.0,34.3499,0.0,Large Cars,2007,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23299,0,16,Jaguar,XJ8,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2007,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,76,233,0,0,Toyota,Celica Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.7692,0.0,Subcompact Cars,1985,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,91,2330,0,0,Volvo,240 DL/240 GL Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23300,0,15,Jaguar,XJ8L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2007,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23301,0,16,Jaguar,XJR,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2007,-4750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23302,0,21,Mercury,Grand Marquis,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.914,0.0,31.698,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23303,0,21,Lincoln,Town Car,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.914,0.0,31.698,0.0,Large Cars,2007,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23304,0,16,Mercedes-Benz,S550 4matic,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.2,0.0,28.8,0.0,Large Cars,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23305,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S5),13.9,0.0,25.2,0.0,Large Cars,2007,-9500,G,EMS 2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23306,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Small Station Wagons,2007,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23307,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),28.2275,0.0,40.3969,0.0,Small Station Wagons,2007,0,,3MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23308,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Small Station Wagons,2007,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23309,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2514,0.0,38.4036,0.0,Small Station Wagons,2007,-1750,,3MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,42,91,2331,0,0,Volvo,240 DL/240 GL Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23310,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Small Station Wagons,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23311,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4675,0.0,34.5556,0.0,Small Station Wagons,2007,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23312,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,27.1,0.0,Small Station Wagons,2007,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23313,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8384,0.0,28.93,0.0,Small Station Wagons,2007,-6750,G,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23314,0,19,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,38.3,0.0,Small Station Wagons,2007,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23315,0,19,Chevrolet,Optra Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,38.3,0.0,Small Station Wagons,2007,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23316,0,19,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,38.3,0.0,Small Station Wagons,2007,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23317,0,19,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,38.3,0.0,Small Station Wagons,2007,-500,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,23318,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5198,0.0,41.7942,0.0,Small Station Wagons,2007,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23319,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6586,0.0,38.829,0.0,Small Station Wagons,2007,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,2332,0,0,Volvo,740/760 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1986,-3250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23320,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5317,0.0,39.0,0.0,Small Station Wagons,2007,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23321,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.2,0.0,Small Station Wagons,2007,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,32,93,23322,0,0,Volvo,V50 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.6,0.0,Small Station Wagons,2007,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,32,93,23323,0,0,Volvo,V50 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3563,0.0,36.2032,0.0,Small Station Wagons,2007,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,23324,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Small Station Wagons,2007,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,93,23325,0,0,Volvo,V50 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.6158,0.0,39.2286,0.0,Small Station Wagons,2007,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,32,93,23326,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,37.9,0.0,Small Station Wagons,2007,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,32,93,23327,0,0,Volvo,V50 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.7237,0.0,38.7494,0.0,Small Station Wagons,2007,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23328,0,34,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9817,0.0,34.219,0.0,Midsize Station Wagons,2007,-3000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23329,0,44,Mazda,5,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.8,0.0,Midsize Station Wagons,2007,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,2333,0,0,Volvo,740/760 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23330,0,44,Mazda,5,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S4),23.5,0.0,33.5,0.0,Midsize Station Wagons,2007,-1000,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23331,0,34,Mazda,6 Sport Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.5,0.0,Midsize Station Wagons,2007,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23332,0,34,Mazda,6 Sport Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8203,0.0,35.0461,0.0,Midsize Station Wagons,2007,-1750,,DC/FW,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23333,0,41,Mercedes-Benz,E350 4matic (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,30.2,0.0,Midsize Station Wagons,2007,-4750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23334,0,41,Mercedes-Benz,E63 AMG (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S7),15.0,0.0,25.0,0.0,Midsize Station Wagons,2007,-9500,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23335,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.4723,0.0,34.7604,0.0,Midsize Station Wagons,2007,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23336,0,34,Subaru,Legacy Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6566,0.0,32.4423,0.0,Midsize Station Wagons,2007,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,36,98,23337,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9,0.0,35.2,0.0,Midsize Station Wagons,2007,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,23338,0,0,Volvo,V70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.3563,0.0,36.2032,0.0,Midsize Station Wagons,2007,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,23339,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2965,0.0,37.2738,0.0,Midsize Station Wagons,2007,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,2334,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1986,-500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,23340,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.5,0.0,Midsize Station Wagons,2007,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,36,98,23341,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8,0.0,33.6,0.0,Midsize Station Wagons,2007,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,36,98,23342,0,0,Volvo,V70 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,36.5,0.0,Midsize Station Wagons,2007,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,36,98,23343,0,0,Volvo,V70 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,37.1,0.0,Midsize Station Wagons,2007,-2250,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,23344,0,0,Volvo,V70 R AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,31.3,0.0,Midsize Station Wagons,2007,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,36,98,23345,0,0,Volvo,V70 R AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1994,0.0,32.4935,0.0,Midsize Station Wagons,2007,-4750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23346,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2654,0.0,30.867,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23347,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1435,0.0,33.3801,0.0,Standard Pickup Trucks 2WD,2007,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23348,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23349,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,25.0,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,2335,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1986,-1750,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23350,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23351,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,33.6,0.0,Standard Pickup Trucks 2WD,2007,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23352,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23353,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2788,0.0,30.8603,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23354,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1622,0.0,33.2869,0.0,Standard Pickup Trucks 2WD,2007,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23355,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23356,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,25.0,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23357,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23358,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,33.6,0.0,Standard Pickup Trucks 2WD,2007,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23359,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60030,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,2336,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1986,-1000,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23360,0,0,Isuzu,i-290 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,30.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23361,0,0,Isuzu,i-290 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,33.6,0.0,Standard Pickup Trucks 2WD,2007,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23362,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,29.1,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23363,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,30.5,0.0,Standard Pickup Trucks 4WD,2007,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23364,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1998,0.0,28.699,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23365,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23366,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,29.1,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23367,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.8,0.0,30.5,0.0,Standard Pickup Trucks 4WD,2007,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23368,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1993,0.0,28.6965,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23369,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4302,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2337,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23370,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,27.5,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23371,0,0,Isuzu,i-370 Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23372,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7859,0.0,23.1591,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23373,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5915,0.0,22.6811,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23374,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7859,0.0,23.1591,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23375,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5915,0.0,22.6811,0.0,"Vans, Cargo Type",2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23376,0,0,Chevrolet,Express 1500/2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0994,0.0,23.6642,0.0,"Vans, Passenger Type",2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23377,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5915,0.0,22.6811,0.0,"Vans, Passenger Type",2007,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23378,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7859,0.0,23.1591,0.0,"Vans, Passenger Type",2007,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23379,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5915,0.0,22.6811,0.0,"Vans, Passenger Type",2007,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4172,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2338,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1986,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23380,0,0,Buick,Terraza FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,32.0513,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23381,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7949,0.0,32.2602,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23382,0,0,Hyundai,Entourage,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2007,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23383,0,0,Buick,Rainier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23384,0,0,Buick,Rendezvous FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23385,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23386,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,38.5,0.0,Sport Utility Vehicle - 2WD,2007,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23387,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2007,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23388,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.9,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23389,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.4615,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4302,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2339,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23390,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23391,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23392,0,0,Mitsubishi,Endeavor 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.2949,0.0,29.9144,0.0,Sport Utility Vehicle - 2WD,2007,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23393,0,0,Pontiac,Torrent FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23394,0,0,Saturn,Relay FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,32.0513,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23395,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,34.6154,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23396,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,37.1795,0.0,Sport Utility Vehicle - 2WD,2007,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23397,0,0,Saturn,Vue Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.8,0.0,41.1,0.0,Sport Utility Vehicle - 2WD,2007,1500,,CLKUP,,,Hybrid,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23398,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23399,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,234,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2340,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23400,0,0,Volvo,XC 90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.2468,0.0,29.1997,0.0,Sport Utility Vehicle - 2WD,2007,-4750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23401,0,0,Volvo,XC 90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7753,0.0,28.6312,0.0,Sport Utility Vehicle - 2WD,2007,-5750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23402,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4399,0.0,25.1286,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23403,0,0,Buick,Rainier AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23404,0,0,Buick,Rendezvous AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23405,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23406,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23407,0,0,Chevrolet,TrailBlazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23408,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23409,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3706,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2341,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23410,0,0,Hummer,H3 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23411,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23412,0,41,Mercedes-Benz,ML350 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.6,0.0,27.4967,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23413,0,41,Mercedes-Benz,ML500 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.6,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23414,0,41,Mercedes-Benz,ML63 AMG,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0,0.0,19.9,0.0,Sport Utility Vehicle - 4WD,2007,-13250,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23415,0,14,Mercedes-Benz,R350 4matic,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.1,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23416,0,14,Mercedes-Benz,R500 4matic,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.0,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23417,0,14,Mercedes-Benz,R63 AMG,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic (S7),12.9,0.0,20.7,0.0,Sport Utility Vehicle - 4WD,2007,-13250,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23418,0,0,Mitsubishi,Endeavor 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.7,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23419,0,0,Pontiac,Torrent AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4302,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2342,0,50,Oldsmobile,Custom Cruiser,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23420,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23421,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.1,0.0,Sport Utility Vehicle - 4WD,2007,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23422,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9,0.0,33.0,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23423,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23424,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23425,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23426,0,0,Volvo,XC 70 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4489,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23427,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.0467,0.0,27.7996,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23428,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.9,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23429,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1115,0.0,25.9888,0.0,Sport Utility Vehicle - 4WD,2007,-8000,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4172,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2343,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1986,-5250,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,GAS 410,-1,3150,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,23430,0,12,Mercedes-Benz,C230,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.0,16.0,32.2,23.0769,Compact Cars,2007,-3750,,EMS 2MODE CLKUP,,,FFV,E85,310,, +17.337486000000002,5.348574,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,GAS 400,-1,3150,3250,Premium or E85,Premium Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,23431,0,12,Mercedes-Benz,C230,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7,15.8,32.3,23.6,Compact Cars,2007,-3750,,EMS 2MODE CLKUP,,,FFV,E85,300,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=380,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,23432,0,21,Ford,Crown Victoria,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6024,14.1926,31.4618,22.2048,Large Cars,2007,-3250,,CLKUP,,,FFV,E85,270,, +14.964294,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,403.95454545454544,22,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,400-425,-1,2500,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,23433,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,17.6,40.0,30.0,Midsize Cars,2007,-500,,CLKUP,,,FFV,E85,320,, +14.964294,4.404708,0.0,0.0,18,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,403.95454545454544,22,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,400-425,-1,2500,2700,Gasoline or E85,Regular Gasoline,-1,-1,28,0.0,21,0.0,0.0,0.0,0.0,0,0,23434,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,17.6,39.7499,30.0,Large Cars,2007,-500,,CLKUP,,,FFV,E85,320,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=380,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,23435,0,21,Mercury,Grand Marquis,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6024,14.1926,31.4618,22.2048,Large Cars,2007,-3250,,CLKUP,,,FFV,E85,270,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=380,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,23436,0,21,Lincoln,Town Car,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6024,14.1926,31.4618,22.2048,Large Cars,2007,-3250,,CLKUP,,,FFV,E85,270,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,460,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,23437,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3412,11.6047,22.5643,16.526,"Vans, Cargo Type",2007,-7750,,CLKUP,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,460,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,23438,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3412,11.6047,22.5643,16.526,"Vans, Cargo Type",2007,-7750,,CLKUP,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,500,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23439,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,23.1,17.1,"Vans, Cargo Type",2007,-7750,,CLKUP,,,FFV,E85,370,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4302,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2344,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1986,-4250,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,500,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23440,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,23.1,17.1,"Vans, Passenger Type",2007,-7750,,CLKUP,,,FFV,E85,370,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,420-540,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23441,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,12.2,23.7,17.9,"Vans, Cargo Type",2007,-6250,,CLKUP,,,FFV,E85,310-410,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,500,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23442,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,23.1,17.1,"Vans, Cargo Type",2007,-7750,,CLKUP,,,FFV,E85,370,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,500,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23443,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,23.1,17.1,"Vans, Passenger Type",2007,-7750,,CLKUP,,,FFV,E85,370,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,420-540,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23444,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,12.2,23.7,17.9,"Vans, Cargo Type",2007,-6250,,CLKUP,,,FFV,E85,310-410,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,460,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,23445,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3412,11.6047,22.5643,16.526,"Vans, Passenger Type",2007,-7750,,CLKUP,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,460,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,23446,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3412,11.6047,22.5643,16.526,"Vans, Passenger Type",2007,-7750,,CLKUP,,,FFV,E85,340,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,23447,0,0,Chevrolet,Uplander FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8438,14.7,32.4179,24.1,Minivan - 2WD,2007,-2500,,CLKUP,,,FFV,E85,360,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23448,0,0,MINI,Cooper S JCWorks GP Kit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,38.0,0.0,Two Seaters,2006,-1750,,,,S,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23449,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,33.4,0.0,Two Seaters,2006,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2345,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.8974,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23450,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.8,0.0,28.2,0.0,Subcompact Cars,2006,-6750,G,EMS,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23451,0,0,Roush Performance,Boss F150 Super Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 2WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23452,0,0,Roush Performance,Stage 3 F-150 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 2WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23453,0,0,Roush Performance,Stage 3 F-150 Supercab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 2WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23454,0,0,Roush Performance,Stage 3 F-150 Supercrew 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 2WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23455,0,0,Roush Performance,Stage 3 F-150 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 4WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23456,0,0,Roush Performance,Stage 3 F-150 Supercab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 4WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23457,0,0,Roush Performance,Stage 3 F-150 Supercrew 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.5,0.0,Standard Pickup Trucks 4WD,2006,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,23458,0,49,Mercedes-Benz,G500,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2006,-13250,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,23459,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.0,0.0,17.7,0.0,Sport Utility Vehicle - 4WD,2006,-13250,,EMS 2MODE CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2346,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1986,-500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23460,0,0,Aston Martin,V8 Vantage,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.2,0.0,25.2,0.0,Two Seaters,2007,-8000,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23461,0,0,BMW,Z4 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Two Seaters,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23462,0,0,BMW,Z4 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Two Seaters,2007,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23463,0,0,BMW,Z4 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Two Seaters,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23464,0,0,BMW,Z4 3.0si,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Two Seaters,2007,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23465,0,0,BMW,Z4 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Two Seaters,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23466,0,0,BMW,Z4 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Two Seaters,2007,-1750,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23467,0,0,BMW,Z4 M Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.8,0.0,Two Seaters,2007,-5750,G,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23468,0,0,BMW,Z4 M Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,30.8,0.0,Two Seaters,2007,-5750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23469,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.4,0.0,Two Seaters,2007,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2347,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Small Pickup Trucks,1986,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23470,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1488,0.0,35.2494,0.0,Two Seaters,2007,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23471,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2007,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23472,0,0,Chrysler,Crossfire Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2007,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23473,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2007,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23474,0,0,Chrysler,Crossfire Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2007,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23475,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,0.0,21.7949,0.0,Two Seaters,2007,-11250,G,SIL 3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23476,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.9,0.0,22.3,0.0,Two Seaters,2007,-11250,G,SIL,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23477,0,0,Ferrari,599 GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.3498,0.0,19.1488,0.0,Two Seaters,2007,-13250,G,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23478,0,0,Ferrari,599 GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.3,0.0,18.9,0.0,Two Seaters,2007,-15500,G,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23479,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,33.1,0.0,Two Seaters,2007,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2348,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23480,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,37.0,0.0,Two Seaters,2007,-500,,EMS,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23481,5,0,Aston Martin,DB9 Coupe,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.6,0.0,24.4,0.0,Minicompact Cars,2007,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23482,5,0,Aston Martin,DB9 Coupe Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2007,-13250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23483,5,0,Aston Martin,DB9 Volante,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,0.0,23.4,0.0,Minicompact Cars,2007,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23484,5,0,Aston Martin,DB9 Volante Manual,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2007,-13250,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23485,9,0,Lexus,SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3788,0.0,31.8117,0.0,Minicompact Cars,2007,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23486,5,0,Porsche,911 GT3,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8611,0.0,31.1653,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23487,5,0,Porsche,911 GT3 RS,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8611,0.0,31.1653,0.0,Minicompact Cars,2007,-4750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23488,8,0,Bentley,Azure,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6911,0.0,20.2908,0.0,Subcompact Cars,2007,-15500,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23489,0,11,BMW,328ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Subcompact Cars,2007,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2349,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1986,-3250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23490,0,11,BMW,328ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Subcompact Cars,2007,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23491,0,11,BMW,328cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Subcompact Cars,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23492,0,11,BMW,328cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Subcompact Cars,2007,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23493,0,11,BMW,335ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2087,0.0,36.536,0.0,Subcompact Cars,2007,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23494,0,11,BMW,335ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1596,0.0,37.0367,0.0,Subcompact Cars,2007,-2250,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23495,13,13,BMW,650ci,N,false,81,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,30.4,0.0,Subcompact Cars,2007,-4750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23496,13,13,BMW,650ci,N,false,81,82,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1255,0.0,31.6055,0.0,Subcompact Cars,2007,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,SMG TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23497,13,13,BMW,650ci,N,false,81,82,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2855,0.0,28.0644,0.0,Subcompact Cars,2007,-6750,G,4MODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,SMG TRANS,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23498,13,11,BMW,650ci Convertible,N,false,81,82,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3976,0.0,26.6697,0.0,Subcompact Cars,2007,-8000,G,4MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23499,13,0,BMW,M6,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0895,0.0,23.6802,0.0,Subcompact Cars,2007,-11250,G,6MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,235,10,0,Toyota,Corolla Sport,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2350,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1986,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23500,13,11,BMW,M6 Convertible,N,false,81,82,0,0.0,0.0,0.0,0.0,Automatic (S7),12.9504,0.0,24.0505,0.0,Subcompact Cars,2007,-11250,G,6MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23501,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,38.9,0.0,Subcompact Cars,2007,-1000,,,,S,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,23502,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,32.7913,0.0,50.93,0.0,Subcompact Cars,2007,2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,23503,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.7726,0.0,48.281,0.0,Subcompact Cars,2007,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23504,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2007,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23505,8,0,Infiniti,G35 Coupe,Y,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,32.7,0.0,Subcompact Cars,2007,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23506,8,0,Infiniti,G35 Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4857,0.0,32.1635,0.0,Subcompact Cars,2007,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23507,0,11,Lexus,IS 250,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4,0.0,36.3,0.0,Subcompact Cars,2007,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23508,0,11,Lexus,IS 250,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.8787,0.0,41.3949,0.0,Subcompact Cars,2007,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23509,0,11,Lexus,IS 250 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5898,0.0,36.2901,0.0,Subcompact Cars,2007,-1750,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38080,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2351,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Small Pickup Trucks,1986,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23510,0,11,Lexus,IS 350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2652,0.0,35.3652,0.0,Subcompact Cars,2007,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23511,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7,0.0,37.3,0.0,Subcompact Cars,2007,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23512,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,38.1,0.0,Subcompact Cars,2007,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23513,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Subcompact Cars,2007,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23514,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,35.8,0.0,Subcompact Cars,2007,-3250,,3MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23515,16,0,Volkswagen,Eos,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,37.0,0.0,Subcompact Cars,2007,-1750,,3MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23516,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,38.5,0.0,Compact Cars,2007,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23517,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),24.9,0.0,39.7,0.0,Compact Cars,2007,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23518,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5589,0.0,38.7975,0.0,Compact Cars,2007,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23519,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0701,0.0,38.6507,0.0,Compact Cars,2007,-1750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2352,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23520,0,12,BMW,328xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Compact Cars,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23521,0,12,BMW,328xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Compact Cars,2007,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23522,0,12,BMW,335i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2087,0.0,36.536,0.0,Compact Cars,2007,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23523,0,12,BMW,335i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1596,0.0,37.0367,0.0,Compact Cars,2007,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23524,0,0,Chrysler,PT Cruiser Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Compact Cars,2007,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23525,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Compact Cars,2007,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23526,0,0,Chrysler,PT Cruiser Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Compact Cars,2007,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23527,0,0,Chrysler,PT Cruiser Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Compact Cars,2007,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23528,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6906,0.0,40.6284,0.0,Small Station Wagons,2007,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23529,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Small Station Wagons,2007,500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2353,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23530,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7,0.0,34.9,0.0,Small Station Wagons,2007,0,,CMODE VLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23531,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Small Station Wagons,2007,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23532,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Small Station Wagons,2007,-500,,VMODE CLKUP,,,,,,, +7.844718,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1300,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,23533,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2007,5500,,EMS,,,Hybrid,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,92,23534,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1991,0.0,48.8162,0.0,Compact Cars,2007,2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,23535,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.375,0.0,44.62,0.0,Compact Cars,2007,2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23536,14,0,Mercedes-Benz,CL550,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.0,0.0,28.6,0.0,Compact Cars,2007,-6750,G,EMS 2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23537,0,11,Mitsubishi,Lancer,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,40.2,0.0,Compact Cars,2007,1000,,CMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,SOHC,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23538,0,11,Mitsubishi,Lancer,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.5,0.0,Compact Cars,2007,1500,,,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,38083,(NO-CAT),-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2354,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Small Pickup Trucks,1986,1000,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23540,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,39.0,0.0,Compact Cars,2007,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23541,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.3,0.0,39.0,0.0,Compact Cars,2007,-1750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23542,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Compact Cars,2007,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23543,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,35.8,0.0,Compact Cars,2007,-3250,,3MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23544,14,15,Saturn,Ion,Y,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8,0.0,38.9,0.0,Compact Cars,2007,-1000,,,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,23545,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8374,0.0,39.5,0.0,Compact Cars,2007,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,91,23546,0,15,Suzuki,Aerio,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,39.6938,0.0,Compact Cars,2007,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,91,23547,0,12,Suzuki,Aerio AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3996,0.0,36.6494,0.0,Compact Cars,2007,0,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,23548,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5463,0.0,49.0495,0.0,Compact Cars,2007,2500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,23549,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.7499,0.0,52.5496,0.0,Compact Cars,2007,3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2355,0,0,Nissan,Truck 2WD (new Version),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23550,0,13,Acura,RL,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,33.0439,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23551,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4499,0.0,37.0,0.0,Midsize Cars,2007,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23552,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,37.7,0.0,Midsize Cars,2007,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23553,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,35.7,0.0,Midsize Cars,2007,-3000,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23554,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.7,0.0,Midsize Cars,2007,-6750,G,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23555,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),15.7,0.0,25.7,0.0,Midsize Cars,2007,-8000,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23556,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6911,0.0,20.2908,0.0,Midsize Cars,2007,-15500,G,3MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23557,0,14,BMW,M5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1,0.0,23.2,0.0,Midsize Cars,2007,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23558,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0895,0.0,23.6802,0.0,Midsize Cars,2007,-11250,G,6MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23559,0,0,Cadillac,STS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0,0.0,29.5,0.0,Midsize Cars,2007,-6750,G,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2356,0,0,Nissan,Truck 2WD (new Version),Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23560,0,0,Chrysler,Sebring,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.0256,0.0,Midsize Cars,2007,500,,CMODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23561,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,11.4498,0.0,21.7,0.0,Midsize Cars,2007,-15500,G,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23562,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.7,0.0,21.3,0.0,Midsize Cars,2007,-13250,G,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23563,0,16,Ford,Fusion,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3912,0.0,39.9703,0.0,Midsize Cars,2007,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23564,0,16,Ford,Fusion,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2007,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23565,0,16,Ford,Fusion,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23566,0,16,Ford,Fusion AWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.9,0.0,Midsize Cars,2007,-2500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23567,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.0145,0.0,43.4831,0.0,Midsize Cars,2007,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23568,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,43.3,0.0,Midsize Cars,2007,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23569,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6844,0.0,36.8146,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38084,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2357,0,0,Nissan,Truck 2WD (new Version),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks,1986,-3250,,VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23570,13,14,Honda,Accord,Y,false,91,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8452,0.0,37.9786,0.0,Midsize Cars,2007,-1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,HEV,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23571,0,11,Honda,Accord Hybrid,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.3,0.0,45.2,0.0,Midsize Cars,2007,1750,,EMS CLKUP,,,Hybrid,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23572,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6399,0.0,46.2306,0.0,Midsize Cars,2007,2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23573,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Midsize Cars,2007,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23574,0,14,Infiniti,G35,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.6,0.0,Midsize Cars,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23575,0,14,Infiniti,G35,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4017,0.0,33.0011,0.0,Midsize Cars,2007,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23576,0,14,Infiniti,G35x,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,32.2,0.0,Midsize Cars,2007,-3750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23577,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.9,0.0,43.4,0.0,Midsize Cars,2007,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23578,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.6,0.0,Midsize Cars,2007,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23579,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.6,0.0,39.1,0.0,Midsize Cars,2007,0,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38084,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2358,0,0,Nissan,Truck 2WD (new Version),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23580,0,13,Lexus,GS 350,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8491,0.0,37.0418,0.0,Midsize Cars,2007,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23581,0,13,Lexus,GS 350 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Midsize Cars,2007,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23582,0,13,Lexus,GS 430,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3788,0.0,31.8117,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23583,0,13,Lexus,LS 460,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8489,0.0,34.6499,0.0,Midsize Cars,2007,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23584,0,11,Lexus,LS 460 L,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23585,0,16,Mercury,Milan,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3912,0.0,39.9703,0.0,Midsize Cars,2007,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23586,0,16,Mercury,Milan,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2007,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23587,0,16,Mercury,Milan,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2007,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23588,0,0,Mercury,Milan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.9,0.0,Midsize Cars,2007,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23589,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,32.8,0.0,Midsize Cars,2007,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2359,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.7692,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23590,0,16,Lincoln,MKZ FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,34.8,0.0,Midsize Cars,2007,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23591,0,18,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.3239,0.0,43.3229,0.0,Midsize Cars,2007,1500,,VMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23592,0,18,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.4234,0.0,45.4993,0.0,Midsize Cars,2007,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23593,0,18,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.5618,0.0,35.8312,0.0,Midsize Cars,2007,-1750,,VMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23594,0,18,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,37.8,0.0,Midsize Cars,2007,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23595,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),31.9,0.0,46.4,0.0,Midsize Cars,2007,2250,,VMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23596,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.4,0.0,43.2,0.0,Midsize Cars,2007,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23597,0,16,Saab,9-5 Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,38.7,0.0,Midsize Cars,2007,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23598,0,16,Saab,9-5 Sedan,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3,0.0,37.4,0.0,Midsize Cars,2007,-3000,,3MODE CLKUP,T,,,,,, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,HEV,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,23599,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2007,6000,,,,,Hybrid,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,78,236,10,0,Toyota,Corolla Sport,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,37.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2360,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1986,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23600,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,26.7,0.0,Large Cars,2007,-8000,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23601,0,13,Bentley,Arnage LWB,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6,0.0,19.8,0.0,Large Cars,2007,-15500,G,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23602,0,0,Chrysler,300 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23603,0,0,Chrysler,300 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23604,0,0,Chrysler,300/SRT-8,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2007,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23605,0,0,Chrysler,300/SRT-8,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2007,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23606,0,0,Chrysler,300/SRT-8,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,32.0,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23607,0,0,Chrysler,300/SRT-8,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2007,-8000,G,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23608,0,0,Dodge,Charger,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2007,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23609,0,0,Dodge,Charger,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2007,-1750,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2361,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,27.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23610,0,0,Dodge,Charger,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,32.0,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23611,0,0,Dodge,Charger,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2007,-8000,G,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23612,0,0,Dodge,Charger AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23613,0,0,Dodge,Charger AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2007,-3250,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23614,0,16,Kia,Amanti,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,33.8,0.0,Large Cars,2007,-2500,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23615,0,8,Maserati,Quattroporte/QP Sport GT,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.9197,0.0,22.5472,0.0,Large Cars,2007,-11250,G,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23616,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.6,0.0,Large Cars,2007,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23617,0,20,Audi,A3 quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,34.6,0.0,Small Station Wagons,2007,-2250,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23618,0,25,BMW,328i Sport Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3337,0.0,37.9999,0.0,Small Station Wagons,2007,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23619,0,25,BMW,328xi Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1927,0.0,35.6305,0.0,Small Station Wagons,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2362,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23620,0,25,BMW,328xi Sport Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8446,0.0,35.0322,0.0,Small Station Wagons,2007,-3000,,3MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23621,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.7,0.0,43.8,0.0,Small Station Wagons,2007,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23622,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,46.6,0.0,Small Station Wagons,2007,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,30,96,23623,0,0,Saab,9-3 SportCombi,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,39.0,0.0,Small Station Wagons,2007,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,30,96,23624,0,0,Saab,9-3 SportCombi,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,38.1,0.0,Small Station Wagons,2007,-2250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,30,96,23625,0,0,Saab,9-3 SportCombi,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Small Station Wagons,2007,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,30,96,23626,0,0,Saab,9-3 SportCombi,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,35.8,0.0,Small Station Wagons,2007,-3250,,3MODE CLKUP,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,23627,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6787,0.0,43.7735,0.0,Small Station Wagons,2007,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23628,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3101,0.0,46.4223,0.0,Small Station Wagons,2007,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23629,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,38.7,0.0,Midsize Station Wagons,2007,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2363,0,0,Ford,Courier Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23630,0,37,Saab,9-5 SportCombi,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.3,0.0,37.4,0.0,Midsize Station Wagons,2007,-3000,,3MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23631,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4421,0.0,26.8546,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23632,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4765,0.0,25.8136,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23633,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2511,0.0,27.9312,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23634,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6183,0.0,24.6292,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23635,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23636,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.7889,0.0,Standard Pickup Trucks 2WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23637,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.5281,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23638,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2007,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23639,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,3100,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2364,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1986,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23640,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.1737,0.0,Standard Pickup Trucks 2WD,2007,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23641,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.5632,0.0,23.7771,0.0,Standard Pickup Trucks 2WD,2007,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23642,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23643,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2585,0.0,25.8944,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23644,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.335,0.0,26.3122,0.0,Standard Pickup Trucks 2WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23645,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.4,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23646,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2808,0.0,24.1359,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23647,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4373,0.0,26.8461,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23648,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5864,0.0,25.9462,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23649,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2447,0.0,27.9353,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3307,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2365,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23650,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6132,0.0,24.6211,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23651,0,0,Lincoln,Mark LT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2949,0.0,22.4886,0.0,Standard Pickup Trucks 2WD,2007,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23652,0,0,Mitsubishi,Raider Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23653,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7778,0.0,27.7889,0.0,Standard Pickup Trucks 2WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23654,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23655,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.4,0.0,25.7,0.0,Standard Pickup Trucks 2WD,2007,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23656,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Standard Pickup Trucks 2WD,2007,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23657,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4499,0.0,31.7499,0.0,Standard Pickup Trucks 2WD,2007,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23658,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0752,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23659,0,0,Nissan,Frontier V6 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4395,0.0,27.4431,0.0,Standard Pickup Trucks 2WD,2007,-4250,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3201,(NO-CAT),-1,2200,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2366,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,41.0256,0.0,Small Pickup Trucks,1986,1000,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23660,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2942,0.0,23.6563,0.0,Standard Pickup Trucks 2WD,2007,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23661,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,34.7,0.0,Standard Pickup Trucks 2WD,2007,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23662,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7782,0.0,35.605,0.0,Standard Pickup Trucks 2WD,2007,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23663,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5614,0.0,28.6,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23664,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1,0.0,26.8,0.0,Standard Pickup Trucks 2WD,2007,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23665,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.8992,0.0,26.0242,0.0,Standard Pickup Trucks 2WD,2007,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23666,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.8507,0.0,23.6402,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23667,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4873,0.0,24.5485,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23668,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5119,0.0,24.2785,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23669,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3498,0.0,25.943,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3302,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2367,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,37.0,0.0,Small Pickup Trucks,1986,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23670,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1428,0.0,24.0078,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23671,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9094,0.0,24.5096,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23672,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1978,0.0,25.7452,0.0,Standard Pickup Trucks 4WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23673,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23674,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2007,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23675,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.7459,0.0,23.6058,0.0,Standard Pickup Trucks 4WD,2007,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23676,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7889,0.0,23.0769,0.0,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23677,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1817,0.0,23.7607,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23678,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2468,0.0,22.4763,0.0,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3503,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2368,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23680,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4873,0.0,24.5485,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23681,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4948,0.0,24.2637,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23682,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3266,0.0,25.9572,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23683,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1308,0.0,24.0319,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23684,0,0,Lincoln,Mark LT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2468,0.0,22.4773,0.0,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23685,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.916,0.0,24.5162,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23686,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1978,0.0,25.7452,0.0,Standard Pickup Trucks 4WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23687,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23688,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2007,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23689,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.5459,0.0,26.0495,0.0,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3500,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2369,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23690,0,0,Nissan,Frontier V6 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0096,0.0,26.7344,0.0,Standard Pickup Trucks 4WD,2007,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23691,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9753,0.0,23.1288,0.0,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23692,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,30.0,0.0,Standard Pickup Trucks 4WD,2007,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23693,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5215,0.0,27.273,0.0,Standard Pickup Trucks 4WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23694,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1829,0.0,25.3634,0.0,Standard Pickup Trucks 4WD,2007,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23695,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.3833,0.0,22.5694,0.0,Standard Pickup Trucks 4WD,2007,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23696,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6615,0.0,32.9467,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23697,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2007,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23698,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,33.5481,0.0,Minivan - 2WD,2007,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,GAS 420,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23699,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,33.8482,0.0,Minivan - 2WD,2007,-1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,237,0,0,Toyota,Tercel,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0256,0.0,Subcompact Cars,1985,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2370,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.8974,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23700,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Minivan - 2WD,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23701,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,32.4,0.0,Minivan - 2WD,2007,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23702,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,33.7481,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23703,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2007,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23704,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23705,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2007,-6750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23706,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23707,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23708,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23709,0,0,Chrysler,Aspen 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2371,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1986,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23710,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23711,0,0,Chrysler,Pacifica 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,30.7692,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23712,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2007,-3750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23713,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,33.3333,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23714,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2007,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23715,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2007,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23716,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23717,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23718,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23719,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CMODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2372,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Small Pickup Trucks,1986,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23720,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23721,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Sport Utility Vehicle - 2WD,2007,-8000,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23722,0,0,Dodge,Nitro 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23723,0,0,Dodge,Nitro 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23724,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.2639,0.0,25.2874,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23725,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23726,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23727,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23728,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23729,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.4365,0.0,37.9029,0.0,Sport Utility Vehicle - 2WD,2007,0,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2373,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23730,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2007,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23731,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23732,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23733,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2007,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23734,0,23,Hyundai,Tucson 2WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2007,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23735,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23736,0,0,Infiniti,FX35 RWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1583,0.0,30.1262,0.0,Sport Utility Vehicle - 2WD,2007,-4750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23737,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5,0.0,23.7,0.0,Sport Utility Vehicle - 2WD,2007,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23738,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23739,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,24.359,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2374,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1986,-3250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23740,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2007,0,,CMODE VLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23741,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23742,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23743,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8,0.0,29.1,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23744,0,0,Jeep,Liberty/Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23745,0,0,Jeep,Wrangler 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6,0.0,27.3,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23746,0,0,Jeep,Wrangler 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5533,0.0,28.4823,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23747,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.9,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23748,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2007,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23749,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2007,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2375,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1986,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23750,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,HEV,-1,2300,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23751,0,0,Lexus,RX 400h 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.6994,0.0,34.1599,0.0,Sport Utility Vehicle - 2WD,2007,500,,,,,Hybrid,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23752,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.4444,0.0,23.0769,0.0,Sport Utility Vehicle - 2WD,2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23753,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.4,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23754,0,0,Mercury,Mountaineer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2007,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23755,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8729,0.0,34.1534,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23756,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7891,0.0,24.1093,0.0,Sport Utility Vehicle - 2WD,2007,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23757,0,0,Nissan,Murano FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2007,-3000,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23758,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.296,0.0,29.9243,0.0,Sport Utility Vehicle - 2WD,2007,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23759,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29088,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2376,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1986,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23760,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23761,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,35.4,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23762,0,0,Suzuki,XL7 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2,0.0,30.7,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23763,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23764,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,25.92,0.0,Sport Utility Vehicle - 2WD,2007,-4250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23765,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,35.5,0.0,Sport Utility Vehicle - 2WD,2007,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23766,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23767,0,0,Toyota,Highlander Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.6994,0.0,34.1599,0.0,Sport Utility Vehicle - 2WD,2007,1500,,,,,Hybrid,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23768,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3385,0.0,37.9,0.0,Sport Utility Vehicle - 2WD,2007,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23769,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2007,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29084,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2377,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Small Pickup Trucks,1986,1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23770,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.1,0.0,23.0996,0.0,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23771,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23772,0,0,Acura,RDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23773,0,0,BMW,X3 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4401,0.0,33.0924,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23774,0,0,BMW,X3 3.0i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4499,0.0,33.1988,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23775,0,0,BMW,X3 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4401,0.0,33.0924,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23776,0,0,BMW,X3 3.0si,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4499,0.0,33.1988,0.0,Sport Utility Vehicle - 4WD,2007,-3000,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23777,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.5,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23778,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23779,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29082,(NO-CAT),-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2378,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,34.0,0.0,Small Pickup Trucks,1986,-250,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23780,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23781,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23782,0,0,Chrysler,Pacifica AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5,0.0,30.324,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23783,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23784,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23785,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23786,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.0997,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23787,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.1,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23788,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2862,0.0,25.3869,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23789,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4136,0.0,25.0198,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +11.924172,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29082,(NO-CAT),-1,1850,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,2379,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.8889,0.0,49.0,0.0,Small Pickup Trucks,1986,2750,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23790,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23791,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.5462,0.0,35.5559,0.0,Sport Utility Vehicle - 4WD,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23792,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2007,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23793,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2007,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23794,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23795,0,23,Hyundai,Tucson 4WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2007,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23796,0,23,Hyundai,Tucson 4WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23797,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.0687,0.0,27.5533,0.0,Sport Utility Vehicle - 4WD,2007,-5750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23798,0,0,Infiniti,FX45 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.859,0.0,23.6385,0.0,Sport Utility Vehicle - 4WD,2007,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23799,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5,0.0,22.8,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,84,238,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1985,3500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29080,"(DSL,TRBO) (NO-CAT)",-1,2100,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2380,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,42.3077,0.0,Small Pickup Trucks,1986,1500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23800,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23801,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,23.0769,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23802,0,0,Jeep,Compass 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5556,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2007,-500,,CMODE VLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23803,0,0,Jeep,Compass 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0478,0.0,37.4,0.0,Sport Utility Vehicle - 4WD,2007,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23804,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23805,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.1,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23806,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2007,-13250,,CMODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23807,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.0,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23808,0,0,Jeep,Liberty/Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,27.7996,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23809,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.5556,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2007,-500,,CMODE VLKUP,,,,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29082,(NO-CAT),-1,2050,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,2381,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,46.0,0.0,Small Pickup Trucks,1986,1750,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23810,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0478,0.0,37.4,0.0,Sport Utility Vehicle - 4WD,2007,500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23811,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7606,0.0,24.6392,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23812,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5366,0.0,24.359,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23813,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23814,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2007,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23815,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,29.3986,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23816,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,6MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23817,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,24.8,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,6MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23818,0,0,Lexus,GX 470,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2007,-8000,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23819,0,0,Lexus,LX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9498,0.0,21.2489,0.0,Sport Utility Vehicle - 4WD,2007,-11250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29086,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2382,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2300,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23820,0,0,Lexus,RX 400h 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.2778,0.0,34.2719,0.0,Sport Utility Vehicle - 4WD,2007,500,,,,,Hybrid,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23821,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2862,0.0,25.3869,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23822,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4136,0.0,25.0198,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23823,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.3102,0.0,32.6951,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23824,0,0,Nissan,Armada 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6435,0.0,23.2294,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23825,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.706,0.0,31.4065,0.0,Sport Utility Vehicle - 4WD,2007,-3750,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23826,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3322,0.0,27.0876,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23827,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23828,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23829,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,32.0513,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29081,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2383,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23830,0,0,Suzuki,XL7 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3332,0.0,29.0991,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23831,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3464,0.0,27.1663,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23832,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23833,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2007,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23834,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2007,-2500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23835,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.2778,0.0,34.2719,0.0,Sport Utility Vehicle - 4WD,2007,1500,,,,,Hybrid,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23836,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9498,0.0,21.2489,0.0,Sport Utility Vehicle - 4WD,2007,-9250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23837,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3362,0.0,35.2534,0.0,Sport Utility Vehicle - 4WD,2007,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23838,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,35.7494,0.0,Sport Utility Vehicle - 4WD,2007,-1000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23839,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,22.8,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2384,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23840,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2007,-5500,,3MODE CLKUP,T,,Diesel,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG420,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,23841,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8465,10.8,24.2392,17.3845,Sport Utility Vehicle - 2WD,2007,-7750,,CLKUP,,,FFV,E85,310,, +14.964294,4.679378,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,23842,0,0,Chrysler,Sebring,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2007,-500,,,,,FFV,E85,300,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,RNG420,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23843,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7219,10.7,23.3,16.7436,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23844,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,10.6,23.9,17.7,Sport Utility Vehicle - 2WD,2007,-7750,,CLKUP,,,FFV,E85,300,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23845,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,10.0,22.9,17.2,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,FFV,E85,240,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,470-610,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23846,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9242,13.2931,27.3563,20.4096,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,470-610,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,23847,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9229,13.2921,27.3546,20.4084,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,23848,0,0,Jeep,Commander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.6,24.359,17.7,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,FFV,E85,230,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,23849,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,24.359,17.2,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,FFV,E85,230,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29081,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2385,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,23850,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4,10.6,23.9,17.7,Sport Utility Vehicle - 2WD,2007,-7750,,CLKUP,,,FFV,E85,300,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23851,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,10.0,22.9,17.2,Sport Utility Vehicle - 4WD,2007,-7750,,CLKUP,,,FFV,E85,240,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=420,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,23852,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3546,12.1031,24.2594,17.8067,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,RNG=390,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,23853,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.2672,11.4394,22.5464,16.7785,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,FFV,E85,290,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,23854,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.4,17.7,Sport Utility Vehicle - 2WD,2007,-6250,,CLKUP,,,FFV,E85,230,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,23855,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 4WD,2007,-6250,,CLKUP,,,FFV,E85,230,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,23856,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2431,12.8261,25.5484,18.947,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-580,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,23857,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2328,12.8199,25.5382,18.9368,Standard Pickup Trucks 4WD,2007,-5250,,CLKUP,,,FFV,E85,340-440,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23858,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3962,10.0,23.8975,16.6667,Standard Pickup Trucks 2WD,2007,-7750,,CLKUP,,,FFV,E85,300,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23859,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1718,10.0,22.8275,17.1573,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,FFV,E85,240,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2386,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.7692,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG420,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23860,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2419,11.1994,23.3803,17.1159,Standard Pickup Trucks 2WD,2007,-7750,,CLKUP,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,RNG420,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,23861,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1484,11.0661,23.2287,16.7774,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,FFV,E85,310,, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,RNG=200,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,23862,0,6,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2007,6500,,CLKUP,,,CNG,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23863,11,0,Jaguar,XKR,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2007,-4750,,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23864,10,0,Jaguar,XKR Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2007,-4750,,3MODE CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23865,13,11,BMW,650ci Convertible,N,false,81,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,28.8,0.0,Subcompact Cars,2007,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23866,13,11,BMW,650ci Convertible,N,false,81,82,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Subcompact Cars,2007,-4750,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23867,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7378,0.0,38.1832,0.0,Subcompact Cars,2007,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23868,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,39.2,0.0,Subcompact Cars,2007,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23869,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2358,0.0,33.2499,0.0,Subcompact Cars,2007,-2500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2387,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,33.0,0.0,Small Pickup Trucks,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23870,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.1,0.0,Subcompact Cars,2007,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23871,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,33.7,0.0,Subcompact Cars,2007,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,98,23872,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.8164,0.0,44.5515,0.0,Midsize Cars,2007,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,23873,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4598,0.0,42.2598,0.0,Midsize Cars,2007,1500,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23874,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2007,-9500,G,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23875,0,14,Rolls-Royce,Phantom EWB,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2007,-9500,G,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23876,0,18,BMW Alpina,B7,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9463,0.0,29.7,0.0,Large Cars,2007,-6750,G,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23877,0,18,BMW,750i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2007,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23878,0,18,BMW,750li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2007,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23879,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8073,0.0,27.7905,0.0,Large Cars,2007,-8000,G,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2388,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1986,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23880,0,8,Maserati,Quattroporte/QP Sport GT,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.3993,0.0,24.1499,0.0,Large Cars,2007,-9500,G,SIL 3MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23881,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.8,0.0,21.8,0.0,Large Cars,2007,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23882,0,15,Maybach,57S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2007,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23883,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.8,0.0,21.8,0.0,Large Cars,2007,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23884,0,15,Maybach,62S,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2007,-13250,G,EMS 2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23885,0,35,Kia,Rondo,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,36.7,0.0,Midsize Station Wagons,2007,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23886,0,35,Kia,Rondo,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,35.0,0.0,Midsize Station Wagons,2007,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23887,0,0,Isuzu,i-370 Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23888,0,0,Isuzu,i-370 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,29.9,0.0,Standard Pickup Trucks 2WD,2007,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23889,0,0,Roush Performance,Stage 3 F150 Regular Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 2WD,2007,-13250,,EMS CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2389,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23890,0,0,Roush Performance,Stage 3 F150 Super Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 2WD,2007,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23891,0,0,Roush Performance,Stage 3 F150 Super Crew 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 2WD,2007,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23892,0,0,Roush Performance,Stage 3 F150 Regular Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 4WD,2007,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23893,0,0,Roush Performance,Stage 3 F150 Super Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 4WD,2007,-13250,,EMS CLKUP,,S,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,23894,0,0,Roush Performance,Stage 3 F150 Super Crew 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9,0.0,19.1,0.0,Standard Pickup Trucks 4WD,2007,-13250,,EMS CLKUP,,S,,,,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,500,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,23896,0,0,Buick,Terraza FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7949,14.7,32.2602,24.1,Minivan - 2WD,2007,-2500,,CLKUP,,,FFV,E85,360,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23897,0,0,Dodge,Nitro 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,29.2,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23898,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23899,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2007,-2750,,CLKUP,,,Diesel,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,239,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.7179,0.0,Subcompact Cars,1985,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2390,0,0,Mazda,B2000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23900,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23901,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,DC/FW,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23902,0,0,BMW,X5 3.0si,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2,0.0,29.6,0.0,Sport Utility Vehicle - 4WD,2007,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23903,0,0,BMW,X5 4.8i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.7,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23904,0,0,Chevrolet,TrailBlazer Ext 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4012,0.0,25.9208,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23905,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23906,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3918,0.0,30.3525,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23907,0,0,GMC,Envoy XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4012,0.0,25.9208,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23908,0,0,Isuzu,Ascender 7-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4012,0.0,25.9208,0.0,Sport Utility Vehicle - 4WD,2007,-5250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23909,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8471,0.0,30.6987,0.0,Sport Utility Vehicle - 4WD,2007,-3500,,CLKUP,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2391,0,0,Mazda,B2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23910,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23911,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,6MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23912,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,25.2,0.0,Sport Utility Vehicle - 4WD,2007,-6250,,6MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23913,0,0,Mazda,CX-9 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.0,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2007,-4250,,DC/FW,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23914,0,41,Mercedes-Benz,ML320 CDI 4matic,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.8,0.0,34.0,0.0,Sport Utility Vehicle - 4WD,2007,-2000,,EMS 2MODE CLKUP,T,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23915,0,14,Mercedes-Benz,R320 CDI 4matic,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3333,0.0,36.1,0.0,Sport Utility Vehicle - 4WD,2007,-2000,,EMS 2MODE CLKUP,T,,Diesel,,,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,500,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,23916,0,0,Saturn,Relay FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7949,14.7,32.2602,24.1,Minivan - 2WD,2007,-2500,,CLKUP,,,FFV,E85,360,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23917,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,34.5,0.0,Two Seaters,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23918,0,0,Nissan,350z,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4429,0.0,32.9433,0.0,Two Seaters,2007,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23919,0,0,Nissan,350z Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,33.6,0.0,Two Seaters,2007,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2392,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.7692,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23920,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1,0.0,32.3,0.0,Two Seaters,2007,-3750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,23921,6,0,MINI,Cooper,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.6,0.0,50.8,0.0,Minicompact Cars,2007,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23922,6,0,MINI,Cooper,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,47.1,0.0,Minicompact Cars,2007,1500,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,23923,7,0,MINI,Cooper Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.3,0.0,41.9,0.0,Minicompact Cars,2007,0,,3MODE VLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23924,7,0,MINI,Cooper Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.9,0.0,44.9,0.0,Minicompact Cars,2007,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2150,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23925,6,0,MINI,Cooper S,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.3401,0.0,45.8343,0.0,Minicompact Cars,2007,1250,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,23926,6,0,MINI,Cooper S,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.1485,0.0,42.3671,0.0,Minicompact Cars,2007,500,,3MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23927,7,0,MINI,Cooper S Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.2202,0.0,39.6023,0.0,Minicompact Cars,2007,-500,,,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23928,7,0,MINI,Cooper S Convertible,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5749,0.0,40.4453,0.0,Minicompact Cars,2007,-1000,,3MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23929,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,24.2,0.0,Compact Cars,2007,-9500,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2393,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-1750,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23930,0,14,Mercedes-Benz,E320 Bluetec,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,29.1,0.0,45.3,0.0,Midsize Cars,2007,500,,EMS 2MODE CLKUP,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23931,0,15,Volvo,S80 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,33.7,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23932,0,15,Volvo,S80 AWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9015,0.0,31.6023,0.0,Midsize Cars,2007,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23933,0,15,Volvo,S80 FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,34.6,0.0,Midsize Cars,2007,-3750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23934,0,17,Ford,Taurus,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,34.6,0.0,Large Cars,2007,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23935,0,36,Volkswagen,Passat Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0252,0.0,40.843,0.0,Midsize Station Wagons,2007,-500,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23936,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2971,0.0,25.4744,0.0,Standard Pickup Trucks 2WD,2007,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23937,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4711,0.0,23.2593,0.0,Standard Pickup Trucks 4WD,2007,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23938,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1111,0.0,33.3333,0.0,Minivan - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23939,0,0,Toyota,Sienna 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.2,0.0,Minivan - 4WD,2007,-3250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2394,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,40.0,0.0,Small Pickup Trucks,1986,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23940,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23941,0,0,Hyundai,Veracruz 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2007,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23942,0,0,Saturn,Outlook FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23943,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23944,0,0,Hyundai,Veracruz 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.8,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,2MODE CLKUP,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23945,0,16,Mercedes-Benz,GL320 CDI 4matic,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2007,-2750,,EMS 2MODE CLKUP,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23946,0,0,Saturn,Outlook AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23947,0,0,Lincoln,MKX FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2007,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,23948,0,0,Lincoln,MKX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3918,0.0,30.3525,0.0,Sport Utility Vehicle - 4WD,2007,-3250,,CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,23949,0,10,Nissan,Altima Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.8,0.0,46.6,0.0,Midsize Cars,2007,4000,,EMS,,,Hybrid,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2395,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Small Pickup Trucks,1986,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23950,0,0,Aston Martin,V8 Vantage ASM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1945,0.0,27.4018,0.0,Two Seaters,2007,-8000,G,4MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,23952,10,0,Mercedes-Benz,SLR,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.8982,0.0,22.2247,0.0,Two Seaters,2007,-11250,G,EMS 2MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23953,0,0,Spyker,C8 Double 12 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,25.3,0.0,Two Seaters,2007,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23954,0,0,Spyker,C8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,25.3,0.0,Two Seaters,2007,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23955,0,0,Spyker,C8 Double 12 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,25.3,0.0,Minicompact Cars,2007,-6250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23956,0,0,Spyker,C8 Laviolette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,25.3,0.0,Minicompact Cars,2007,-6250,G,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23957,0,9,BMW,328ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7391,0.0,37.7067,0.0,Subcompact Cars,2007,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23958,0,9,BMW,328ci Convertible,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3337,0.0,37.9999,0.0,Subcompact Cars,2007,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23959,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2087,0.0,36.536,0.0,Subcompact Cars,2007,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2396,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23960,0,9,BMW,335ci Convertible,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1596,0.0,37.0367,0.0,Subcompact Cars,2007,-2250,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23961,0,0,Chrysler,Sebring,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,35.9,0.0,Midsize Cars,2007,-2500,,CMODE,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,23962,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.3,0.0,42.5,0.0,Midsize Cars,2007,1500,,VMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23963,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5755,0.0,40.0713,0.0,Midsize Cars,2007,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23964,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7391,0.0,37.7067,0.0,Small Station Wagons,2007,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23965,0,0,Ford,F150 STX SE 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,0.0,25.1658,0.0,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,14,0.0,0.0,0.0,0.0,0,0,23967,0,0,Ford,F150 STX SE 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.573,12.5332,25.414,18.7354,Standard Pickup Trucks 2WD,2007,-6250,,CLKUP,,,FFV,E85,340-350,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23968,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.3,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2007,-8000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,23969,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,24.359,0.0,Standard Pickup Trucks 4WD,2007,-9500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2397,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23970,0,0,Chevrolet,HHR Panel FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,38.8,0.0,Sport Utility Vehicle - 2WD,2007,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23971,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,40.7,0.0,Sport Utility Vehicle - 2WD,2007,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23972,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.8,0.0,Sport Utility Vehicle - 2WD,2007,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,23973,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2007,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,V6,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23974,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2007,-1750,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,CVT2L,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,23977,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.3333,0.0,29.4872,0.0,Sport Utility Vehicle - 4WD,2007,-1750,,CMODE VLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,23978,0,49,Mercedes-Benz,G500,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.2,0.0,20.5,0.0,Sport Utility Vehicle - 4WD,2007,-11250,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,23979,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2007,-13250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2398,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Small Pickup Trucks,1986,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23980,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,23981,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.0,0.0,28.1,0.0,Sport Utility Vehicle - 4WD,2007,-6750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23982,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.0,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2007,-8000,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,23983,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2007,-9500,,2MODE,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,23984,0,0,Saturn,Aura Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6,0.0,44.9,0.0,Midsize Cars,2007,1750,,CLKUP,,,Hybrid,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23985,13,0,BMW,M6,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1,0.0,23.2,0.0,Subcompact Cars,2007,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,23986,13,11,BMW,M6 Convertible,N,false,81,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9,0.0,23.7,0.0,Subcompact Cars,2007,-11250,G,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23987,0,12,BMW,335xi,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8496,0.0,34.748,0.0,Compact Cars,2007,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23988,0,12,BMW,335xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5749,0.0,34.8498,0.0,Compact Cars,2007,-3000,,3MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23989,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2007,500,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57088,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2399,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-1750,,2MODE 2LKUP,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,23990,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2007,500,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23991,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2007,0,,CMODE VLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,23992,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1096,0.0,40.4093,0.0,Two Seaters,2008,0,,3MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23993,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7455,0.0,34.0127,0.0,Two Seaters,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,23994,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3615,0.0,33.4428,0.0,Two Seaters,2008,-3000,,3MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23995,11,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2008,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,23996,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2008,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23997,11,0,Jaguar,XKR,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2008,-4750,,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,23998,10,0,Jaguar,XKR Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2008,-4750,,3MODE CLKUP,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,23999,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2295,0.0,36.9806,0.0,Minicompact Cars,2008,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24,0,0,Mercedes-Benz,380SL,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,23.0,0.0,Two Seaters,1985,-6250,T,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,73,240,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2400,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.8974,0.0,Small Pickup Trucks,1986,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24000,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.2184,0.0,36.27,0.0,Minicompact Cars,2008,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24001,5,0,Mitsubishi,Eclipse Spyder,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9155,0.0,34.5579,0.0,Minicompact Cars,2008,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24002,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2127,0.0,33.3961,0.0,Minicompact Cars,2008,-3750,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,74,24003,0,0,Audi,TT Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.1,0.0,43.6,0.0,Subcompact Cars,2008,500,,3MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,74,24004,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7455,0.0,34.0127,0.0,Subcompact Cars,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,74,24005,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3615,0.0,33.4428,0.0,Subcompact Cars,2008,-3000,,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24006,0,11,Chrysler,Sebring Convertible,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,40.1,0.0,Subcompact Cars,2008,0,,CMODE,,,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 350,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,24007,0,11,Chrysler,Sebring Convertible,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,15.9,35.6,25.8,Subcompact Cars,2008,-1000,,,,,FFV,E85,250,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24008,0,11,Chrysler,Sebring Convertible,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,35.9,0.0,Subcompact Cars,2008,-2500,,CMODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,82,24009,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1553,0.0,38.6329,0.0,Subcompact Cars,2008,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57088,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2401,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1986,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,82,24010,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.9205,0.0,36.5387,0.0,Subcompact Cars,2008,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,82,24011,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,35.4254,0.0,Subcompact Cars,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,82,24012,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.025,0.0,35.5419,0.0,Subcompact Cars,2008,-3000,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,85,24013,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.2,0.0,Subcompact Cars,2008,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,24014,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,38.2,0.0,Subcompact Cars,2008,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24015,11,0,Volkswagen,Eos,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.9,0.0,41.7,0.0,Subcompact Cars,2008,-500,,3MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24016,0,16,Jaguar,X-Type,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8489,0.0,30.6948,0.0,Compact Cars,2008,-4750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24017,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.0,0.0,24.7,0.0,Compact Cars,2008,-9500,G,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24018,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5844,0.0,39.9998,0.0,Compact Cars,2008,500,,VMODE VLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24019,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.222,0.0,39.9899,0.0,Compact Cars,2008,500,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2402,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,24.359,0.0,Small Pickup Trucks,1986,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24020,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4336,0.0,34.2401,0.0,Compact Cars,2008,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24021,0,11,Subaru,Legacy AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7286,0.0,37.5847,0.0,Compact Cars,2008,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24022,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,33.7,0.0,Compact Cars,2008,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24023,0,11,Subaru,Legacy AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0768,0.0,37.1373,0.0,Compact Cars,2008,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24024,0,11,Subaru,Legacy AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,33.6,0.0,Compact Cars,2008,-3000,,2MODE CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,24027,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1096,0.0,40.4093,0.0,Compact Cars,2008,0,,3MODE,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24028,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1096,0.0,40.4093,0.0,Compact Cars,2008,0,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24029,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5502,0.0,38.0979,0.0,Midsize Cars,2008,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2403,0,0,Dodge,Power Ram50 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,29.0,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24030,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5502,0.0,38.0979,0.0,Midsize Cars,2008,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24031,0,14,BMW,528xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7612,0.0,35.2733,0.0,Midsize Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24032,0,14,BMW,528xi,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,35.2164,0.0,Midsize Cars,2008,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24033,0,14,BMW,535i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7412,0.0,36.2321,0.0,Midsize Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24034,0,14,BMW,535xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0379,0.0,34.606,0.0,Midsize Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24035,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.714,0.0,30.6951,0.0,Midsize Cars,2008,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24036,0,14,BMW,550i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0711,0.0,31.466,0.0,Midsize Cars,2008,-4750,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24037,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1261,0.0,23.2779,0.0,Midsize Cars,2008,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24038,0,14,BMW,M5,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0847,0.0,23.6701,0.0,Midsize Cars,2008,-11250,G,6MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24039,0,16,Buick,Lacrosse/Allure,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Midsize Cars,2008,-3750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3350,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2404,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,35.0,0.0,Small Pickup Trucks,1986,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24040,0,16,Chrysler,Sebring,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2008,500,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24041,0,16,Chrysler,Sebring,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,35.9,0.0,Midsize Cars,2008,-2500,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24042,0,16,Chrysler,Sebring AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,0.0,32.9,0.0,Midsize Cars,2008,-3250,,CMODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24043,0,16,Dodge,Avenger,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2008,500,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24044,0,16,Dodge,Avenger,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,35.9,0.0,Midsize Cars,2008,-2500,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24045,0,16,Dodge,Avenger AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,0.0,32.9,0.0,Midsize Cars,2008,-3250,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24046,0,12,Jaguar,S-Type 3.0 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1489,0.0,35.6494,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24047,0,12,Jaguar,S-Type 4.2 Litre,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0469,0.0,33.1493,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24048,0,12,Jaguar,S-Type R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.0499,0.0,Midsize Cars,2008,-5750,,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24049,0,24,Jaguar,X-Type Sport Brake,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5995,0.0,30.9493,0.0,Midsize Cars,2008,-4750,,EMS 2MODE CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3250,(NO-CAT),-1,2300,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2405,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,39.7436,0.0,Small Pickup Trucks,1986,500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,HEV,-1,2850,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24050,0,12,Lexus,LS 600h L,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),24.7,0.0,30.3,0.0,Midsize Cars,2008,-2250,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24051,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.1,0.0,38.9,0.0,Midsize Cars,2008,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24052,0,16,Pontiac,Grand Prix,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S4),20.24,0.0,35.5,0.0,Midsize Cars,2008,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24053,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Large Cars,2008,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24054,0,21,Ford,Taurus AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.3,0.0,Large Cars,2008,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24055,0,21,Ford,Taurus FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.6,0.0,39.6,0.0,Large Cars,2008,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24056,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,42.8,0.0,Large Cars,2008,500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24057,0,16,Hyundai,Sonata,N,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.7,0.0,Large Cars,2008,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24058,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5996,0.0,39.1,0.0,Large Cars,2008,-500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24059,0,15,Jaguar,Super V8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2008,-4750,,2MODE CLKUP,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3552,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2406,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Small Pickup Trucks,1986,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24060,0,15,Jaguar,Vdp Lwb,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0499,0.0,34.3499,0.0,Large Cars,2008,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24061,0,16,Jaguar,XJ8,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2008,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24062,0,15,Jaguar,XJ8L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2008,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24063,0,16,Jaguar,XJR,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2008,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24064,0,21,Mercury,Sable AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.3,0.0,Large Cars,2008,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24065,0,21,Mercury,Sable FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.6,0.0,39.6,0.0,Large Cars,2008,-500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24066,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S7),13.8,0.0,24.0,0.0,Large Cars,2008,-11250,G,EMS 2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24067,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1096,0.0,40.4093,0.0,Small Station Wagons,2008,0,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24068,0,20,Audi,A3 quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,34.6,0.0,Small Station Wagons,2008,-2250,,3MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3551,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2407,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks,1986,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24073,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24074,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2008,500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24075,0,34,BMW,535xi Sport Wagon,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3315,0.0,33.5052,0.0,Midsize Station Wagons,2008,-3750,,3MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24076,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5,0.0,27.7,0.0,Small Pickup Trucks 2WD,2008,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24077,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1761,0.0,23.9354,0.0,Standard Pickup Trucks 2WD,2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24078,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5988,0.0,22.9802,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29090,"(DSL,TRBO) (NO-CAT)",-1,2450,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2408,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,35.0,0.0,Small Pickup Trucks,1986,-250,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24080,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2008,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24081,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24082,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24083,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24084,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2008,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24085,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.7,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24086,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.6,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2008,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24087,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24088,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9,0.0,24.6,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24089,0,0,Lexus,RX 350 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2008,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29091,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2409,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24090,0,0,Lexus,RX 350 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2008,-3000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24091,0,0,Mazda,Tribute FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24092,0,0,Mazda,Tribute FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2008,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24093,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.7,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24094,0,0,Mazda,Tribute Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.6,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2008,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24095,0,0,Mercury,Mariner FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24096,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,33.7,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24097,0,0,Mercury,Mariner Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.6,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2008,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24098,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.939,0.0,24.778,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24099,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4509,0.0,30.0204,0.0,Sport Utility Vehicle - 2WD,2008,-5750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,241,0,0,Volkswagen,Scirocco,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29096,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2410,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24100,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.9,0.0,25.5,0.0,Sport Utility Vehicle - 2WD,2008,-8000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24101,0,0,Pontiac,Torrent FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24102,0,0,Saturn,Outlook FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24103,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,36.7,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24104,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24105,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24108,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.5508,0.0,27.0143,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24109,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.0,0.0,23.3962,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2411,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Small Pickup Trucks,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24110,0,0,Buick,Enclave AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24111,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8962,0.0,32.7463,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24112,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.353,0.0,30.4159,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24113,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.4,0.0,38.0,0.0,Sport Utility Vehicle - 4WD,2008,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24114,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24115,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4,0.0,23.5,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24116,0,0,Land Rover,LR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24118,0,0,Land Rover,LR3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24119,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,6MODE CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2412,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.359,0.0,Small Pickup Trucks,1986,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24120,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,24.8,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24121,0,0,Land Rover,Range Rover Sport,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,6MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24122,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,25.2,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,6MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24123,0,0,Lexus,RX 350 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2008,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24124,0,0,Lexus,RX 350 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2008,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24125,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8962,0.0,32.7463,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24126,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.353,0.0,30.4159,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24127,0,0,Mazda,Tribute Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.4,0.0,38.0,0.0,Sport Utility Vehicle - 4WD,2008,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24128,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8962,0.0,32.7463,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24129,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.353,0.0,30.4159,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2413,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1986,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24130,0,0,Mercury,Mariner Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.4,0.0,38.0,0.0,Sport Utility Vehicle - 4WD,2008,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24131,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7609,0.0,23.8271,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24132,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.389,0.0,27.1518,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24133,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.3,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24134,0,0,Porsche,Cayenne,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24135,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.0,0.0,28.1,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24136,0,0,Porsche,Cayenne S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.0,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24137,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24138,0,0,Saturn,Outlook AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24139,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6,0.0,30.4,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2414,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Small Pickup Trucks,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24140,0,0,Saturn,Vue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24141,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24142,0,31,Subaru,Forester AWD,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2008,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24143,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1104,0.0,35.589,0.0,Sport Utility Vehicle - 4WD,2008,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24144,0,31,Subaru,Forester AWD,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4336,0.0,34.2401,0.0,Sport Utility Vehicle - 4WD,2008,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24145,0,31,Subaru,Forester AWD,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7286,0.0,37.5847,0.0,Sport Utility Vehicle - 4WD,2008,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24146,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2008,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24147,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1179,0.0,36.0093,0.0,Sport Utility Vehicle - 4WD,2008,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24148,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0,0.0,36.9,0.0,Sport Utility Vehicle - 4WD,2008,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24149,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,32.8,0.0,Sport Utility Vehicle - 4WD,2008,-3000,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,(OHV),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2415,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,36.0,0.0,Small Pickup Trucks,1986,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24150,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,33.8,0.0,Sport Utility Vehicle - 4WD,2008,-3000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24151,0,0,Subaru,Tribeca AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24154,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.5508,0.0,27.0143,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24155,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,3MODE CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24156,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2008,-5500,,3MODE CLKUP,T,,Diesel,,,, +14.964294,4.679378,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 370,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,24157,0,16,Chrysler,Sebring,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2008,-500,,,,,FFV,E85,270,, +14.964294,4.679378,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 370,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,24158,0,16,Dodge,Avenger,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2008,-500,,,,,FFV,E85,270,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=340,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,24159,0,21,Ford,Crown Victoria FFV,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5995,14.1979,31.4944,22.2,Large Cars,2008,-3250,,CLKUP,,,FFV,E85,250,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(OHV) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2416,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Small Pickup Trucks,1986,0,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=340,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,24160,0,21,Mercury,Grand Marquis FFV,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5995,14.1979,31.4944,22.2,Large Cars,2008,-3250,,CLKUP,,,FFV,E85,250,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG390/520,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,24161,0,0,Nissan,Titan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2175,11.0745,24.0734,17.4145,Standard Pickup Trucks 2WD,2008,-7750,,CLKUP,,,FFV,E85,280/370,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,RNG390/520,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,24162,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.5345,10.6426,22.9322,16.6831,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,FFV,E85,280/370,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,24164,0,0,Chevrolet,Uplander FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,14.7,32.5,24.1,Minivan - 2WD,2008,-2500,,CLKUP,,,FFV,E85,240-420,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG390,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,24165,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.939,10.9,24.7212,17.8779,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,FFV,E85,280,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,RNG390,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,24166,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.595,10.5634,23.6202,17.4,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,FFV,E85,280,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24167,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.4417,0.0,27.1538,0.0,Two Seaters,2008,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24168,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1944,0.0,26.2,0.0,Two Seaters,2008,-8000,G,3MODE CLKUP,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,16,8.0,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,24169,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),9.5,0.0,17.8,0.0,Two Seaters,2008,-18250,G,3MODE,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2417,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24170,0,0,Cadillac,XLR-V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8,0.0,28.6,0.0,Two Seaters,2008,-6750,G,2MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24171,0,0,Cadillac,XLR,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.0,0.0,Two Seaters,2008,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24172,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2008,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24173,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2499,0.0,34.3493,0.0,Two Seaters,2008,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24174,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,33.7,0.0,Two Seaters,2008,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24175,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2008,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24176,0,0,Chrysler,Crossfire Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2008,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24177,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,35.4,0.0,Two Seaters,2008,-2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24178,0,0,Chrysler,Crossfire Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,32.4,0.0,Two Seaters,2008,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24179,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.8,0.0,22.9,0.0,Two Seaters,2008,-11250,G,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2418,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24180,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.3,0.0,23.6996,0.0,Two Seaters,2008,-11250,G,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24181,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.0,0.0,21.3,0.0,Two Seaters,2008,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,5.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24182,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5498,0.0,21.9995,0.0,Two Seaters,2008,-13250,G,2MODE,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,24183,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.5,0.0,Two Seaters,2008,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,24184,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2008,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,24185,0,0,Lamborghini,Murcielago Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.5,0.0,Two Seaters,2008,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,24186,0,0,Lamborghini,Murcielago Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2008,-15500,G,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24187,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,38.0,0.0,Two Seaters,2008,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24188,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0105,0.0,38.521,0.0,Two Seaters,2008,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24189,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8262,0.0,38.4122,0.0,Two Seaters,2008,-1000,,DC/FW,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2419,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24190,7,0,Mercedes-Benz,SL55 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.0,0.0,24.1,0.0,Two Seaters,2008,-9500,G,EMS 2MODE CLKUP,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24191,7,0,Mercedes-Benz,SL550,Y,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.7,0.0,29.0,0.0,Two Seaters,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24192,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.2,0.0,Two Seaters,2008,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24193,7,0,Mercedes-Benz,SL65 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1,0.0,24.6,0.0,Two Seaters,2008,-9500,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24194,7,0,Mercedes-Benz,SLK280,Y,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0,0.0,34.1,0.0,Two Seaters,2008,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24195,7,0,Mercedes-Benz,SLK280,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,34.6,0.0,Two Seaters,2008,-3000,,EMS,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24196,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,32.0,0.0,Two Seaters,2008,-3750,,EMS 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24197,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,32.1,0.0,Two Seaters,2008,-3750,,EMS,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24198,7,0,Mercedes-Benz,SLK55 AMG,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.4,0.0,28.1,0.0,Two Seaters,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24199,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2499,0.0,36.8997,0.0,Two Seaters,2008,-2250,,CLKUP,T,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,12050,,-1,2450,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,242,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Compact Cars,1985,-250,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2420,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24200,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,39.6,0.0,Two Seaters,2008,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24201,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,33.4,0.0,Two Seaters,2008,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24202,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,34.8,0.0,Two Seaters,2008,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24203,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,36.2,0.0,Two Seaters,2008,-2250,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24204,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.4,0.0,Two Seaters,2008,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24205,0,0,Porsche,Boxster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,39.8,0.0,Two Seaters,2008,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24206,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,35.2,0.0,Two Seaters,2008,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24207,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.0,0.0,Two Seaters,2008,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24208,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,36.2,0.0,Two Seaters,2008,-2250,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24209,0,0,Porsche,Cayman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.4,0.0,Two Seaters,2008,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2421,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24210,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,39.8,0.0,Two Seaters,2008,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24211,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,35.2,0.0,Two Seaters,2008,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24212,0,0,Porsche,Cayman S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,36.0,0.0,Two Seaters,2008,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24213,0,0,Porsche,911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8757,0.0,31.1712,0.0,Two Seaters,2008,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24214,0,0,Porsche,911 GT3 RS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8757,0.0,31.1712,0.0,Two Seaters,2008,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24215,0,0,Saturn,SKY,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2499,0.0,36.8997,0.0,Two Seaters,2008,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24216,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,39.6,0.0,Two Seaters,2008,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24217,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.2,0.0,33.4,0.0,Two Seaters,2008,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24218,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.6,0.0,34.8,0.0,Two Seaters,2008,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24219,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8149,0.0,31.5635,0.0,Minicompact Cars,2008,-4750,,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2422,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24220,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,32.4,0.0,Minicompact Cars,2008,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24221,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8149,0.0,31.5635,0.0,Minicompact Cars,2008,-4750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24222,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,32.8,0.0,Minicompact Cars,2008,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24223,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9858,0.0,33.7822,0.0,Minicompact Cars,2008,-3000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24224,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.115,0.0,35.6576,0.0,Minicompact Cars,2008,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24225,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9858,0.0,33.7822,0.0,Minicompact Cars,2008,-3000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24226,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.115,0.0,35.6576,0.0,Minicompact Cars,2008,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24227,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8969,0.0,33.1953,0.0,Minicompact Cars,2008,-3000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24228,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8496,0.0,34.2502,0.0,Minicompact Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24229,5,0,Porsche,Carrera 2 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8969,0.0,33.1953,0.0,Minicompact Cars,2008,-3000,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2423,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-4250,,Overdrive,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24230,5,0,Porsche,Carrera 2 S Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8496,0.0,34.2502,0.0,Minicompact Cars,2008,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24231,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,32.8,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24232,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2368,0.0,34.2736,0.0,Minicompact Cars,2008,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24233,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,33.2,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24234,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2368,0.0,34.2736,0.0,Minicompact Cars,2008,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24235,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24236,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.1,0.0,Minicompact Cars,2008,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24237,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,32.3,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24238,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.1,0.0,Minicompact Cars,2008,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24239,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,31.8,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4853,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2424,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24240,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.1,0.0,Minicompact Cars,2008,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24241,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0,0.0,32.8,0.0,Minicompact Cars,2008,-3750,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24242,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2368,0.0,34.2736,0.0,Minicompact Cars,2008,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24243,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2238,0.0,39.1651,0.0,Minicompact Cars,2008,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24244,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8313,0.0,39.7341,0.0,Minicompact Cars,2008,0,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24245,10,0,Audi,A4 Cabriolet,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7464,0.0,41.4106,0.0,Subcompact Cars,2008,-500,,3MODE,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24246,10,0,Audi,A4 Cabriolet quattro,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2348,0.0,38.3379,0.0,Subcompact Cars,2008,-1750,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24247,10,0,Audi,A4 Cabriolet quattro,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.037,0.0,34.2854,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24248,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,26.8,0.0,Subcompact Cars,2008,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24249,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8445,0.0,28.9659,0.0,Subcompact Cars,2008,-6750,G,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2425,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24250,0,7,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8787,0.0,44.3929,0.0,Subcompact Cars,2008,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,24251,0,7,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0861,0.0,47.687,0.0,Subcompact Cars,2008,1750,,EMS,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24252,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,44.8,0.0,Subcompact Cars,2008,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24253,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3842,0.0,32.9889,0.0,Subcompact Cars,2008,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24254,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.032,0.0,35.7088,0.0,Subcompact Cars,2008,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24255,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.885,0.0,29.8628,0.0,Subcompact Cars,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24256,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9309,0.0,31.7924,0.0,Subcompact Cars,2008,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24257,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9089,0.0,27.3699,0.0,Subcompact Cars,2008,-6750,G,SIL,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24258,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2008,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24259,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1772,0.0,32.0,0.0,Subcompact Cars,2008,-3750,,DC/FW,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4870,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2426,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24260,9,0,Mercedes-Benz,CLK350 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,35.4,0.0,Subcompact Cars,2008,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24261,10,0,Mercedes-Benz,CLK350,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.3,0.0,35.5,0.0,Subcompact Cars,2008,-3000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24262,10,0,Mercedes-Benz,CLK63 AMG,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.6,0.0,25.6,0.0,Subcompact Cars,2008,-9500,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24263,9,0,Mercedes-Benz,CLK63 AMG (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.2,0.0,25.2,0.0,Subcompact Cars,2008,-9500,G,EMS 2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24264,14,14,Pontiac,G5/Pursuit,N,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,44.8,0.0,Subcompact Cars,2008,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24265,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.1,0.0,Subcompact Cars,2008,-5750,G,EMS,,S,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,11,84,24266,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,45.1,0.0,Subcompact Cars,2008,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,24267,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2008,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24268,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Subcompact Cars,2008,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24269,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2,0.0,37.0,0.0,Subcompact Cars,2008,-1750,,3MODE,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2427,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,24270,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0247,0.0,39.3454,0.0,Subcompact Cars,2008,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,24271,0,0,Volkswagen,New Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2031,0.0,40.8,0.0,Subcompact Cars,2008,0,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24272,13,0,Volvo,C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,37.1,0.0,Subcompact Cars,2008,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24273,13,0,Volvo,C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.0,0.0,36.5,0.0,Subcompact Cars,2008,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24274,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,38.5,0.0,Compact Cars,2008,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24275,0,13,Acura,TSX,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),24.9,0.0,39.7,0.0,Compact Cars,2008,-1000,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24276,0,13,Audi,A4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7464,0.0,41.4106,0.0,Compact Cars,2008,-500,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24277,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,43.6,0.0,Compact Cars,2008,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24278,0,13,Audi,A4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0325,0.0,37.6462,0.0,Compact Cars,2008,-2250,,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24279,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Compact Cars,2008,-1000,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4854,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2428,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24280,0,13,Audi,A4 quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2348,0.0,38.3379,0.0,Compact Cars,2008,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24281,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Compact Cars,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24282,0,13,Audi,A4 quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),21.494,0.0,34.5339,0.0,Compact Cars,2008,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24283,0,13,Audi,RS4,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.4417,0.0,27.1538,0.0,Compact Cars,2008,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24284,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,27.1,0.0,Compact Cars,2008,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24285,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0202,0.0,29.0875,0.0,Compact Cars,2008,-6750,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24286,8,0,Bentley,Azure,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.5057,0.0,21.0205,0.0,Compact Cars,2008,-15500,G,3MODE CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24287,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8787,0.0,44.3929,0.0,Compact Cars,2008,1500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,24288,0,12,Chevrolet,Aveo,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0861,0.0,47.687,0.0,Compact Cars,2008,1750,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24289,0,8,Chrysler,PT Cruiser Convertible,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.1,0.0,Compact Cars,2008,-2250,,CLKUP,T,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2429,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1986,-3500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24290,0,8,Chrysler,PT Cruiser Convertible,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,34.1,0.0,Compact Cars,2008,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24291,0,8,Chrysler,PT Cruiser Convertible,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,34.9,0.0,Compact Cars,2008,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24292,0,8,Chrysler,PT Cruiser Convertible,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5499,0.0,36.6858,0.0,Compact Cars,2008,0,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,95,24293,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1199,0.0,45.0399,0.0,Compact Cars,2008,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,95,24294,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.7135,0.0,43.0269,0.0,Compact Cars,2008,1500,,DC/FW,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,24295,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3172,0.0,41.1964,0.0,Compact Cars,2008,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,24296,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.713,0.0,40.0483,0.0,Compact Cars,2008,500,,DC/FW,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24297,14,0,Mercedes-Benz,CL550,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.7,0.0,29.5,0.0,Compact Cars,2008,-5750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24298,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,23.0,0.0,Compact Cars,2008,-11250,G,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24299,14,0,Mercedes-Benz,CL65 AMG,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.7,0.0,23.4,0.0,Compact Cars,2008,-11250,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,243,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1985,-1750,,,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2430,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24300,0,13,Mercedes-Benz,CLS550,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,29.0,0.0,Compact Cars,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24301,0,13,Mercedes-Benz,CLS63 AMG,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),14.9,0.0,25.0,0.0,Compact Cars,2008,-9500,G,EMS 2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24302,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,42.3,0.0,Compact Cars,2008,1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24303,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,40.6,0.0,Compact Cars,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24304,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S4),21.3,0.0,36.6,0.0,Compact Cars,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24305,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Compact Cars,2008,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24306,13,14,Pontiac,G6,N,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,31.1,0.0,Compact Cars,2008,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24307,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4336,0.0,34.2401,0.0,Compact Cars,2008,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24308,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7286,0.0,37.5847,0.0,Compact Cars,2008,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24309,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),24.7992,0.0,35.0293,0.0,Compact Cars,2008,-1750,,2MODE CLKUP,T,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4893,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2431,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-3500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24310,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0768,0.0,37.1373,0.0,Compact Cars,2008,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24311,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),21.7,0.0,32.9,0.0,Compact Cars,2008,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24312,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2008,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24313,0,12,Suzuki,Forenza,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2008,0,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,24314,0,0,Suzuki,Reno,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.2,0.0,Compact Cars,2008,-500,,EMS,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,9,95,24315,0,0,Suzuki,Reno,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.1,0.0,Compact Cars,2008,0,,EMS,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24316,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.1,0.0,Compact Cars,2008,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24317,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4415,0.0,43.9239,0.0,Compact Cars,2008,1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24318,14,0,Toyota,Camry Solara,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.8,0.0,37.8,0.0,Compact Cars,2008,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24319,12,0,Toyota,Camry Solara Convertible,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,36.8,0.0,Compact Cars,2008,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2432,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,24320,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5463,0.0,49.0495,0.0,Compact Cars,2008,2500,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,24321,0,14,Toyota,Corolla,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.7499,0.0,52.5496,0.0,Compact Cars,2008,3000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,24322,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Compact Cars,2008,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24323,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Compact Cars,2008,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24324,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1057,0.0,39.4938,0.0,Compact Cars,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24325,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7462,0.0,39.46,0.0,Compact Cars,2008,500,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,93,24326,0,0,Volkswagen,R32,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,32.1,0.0,Compact Cars,2008,-3000,,3MODE,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,24327,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.394,0.0,39.6511,0.0,Compact Cars,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,24328,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7462,0.0,39.46,0.0,Compact Cars,2008,500,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,24329,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7,0.0,Compact Cars,2008,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2433,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,24330,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.0004,0.0,39.5001,0.0,Compact Cars,2008,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,24331,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Compact Cars,2008,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,89,24332,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8987,0.0,38.4468,0.0,Compact Cars,2008,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24333,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.5,0.0,Compact Cars,2008,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24334,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1469,0.0,36.4714,0.0,Compact Cars,2008,-2250,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24335,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7,0.0,Compact Cars,2008,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24336,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),25.0004,0.0,39.5001,0.0,Compact Cars,2008,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24337,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Compact Cars,2008,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24338,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8987,0.0,38.4468,0.0,Compact Cars,2008,-1750,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24339,0,14,Volvo,S60 AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8996,0.0,36.5435,0.0,Compact Cars,2008,-2250,,CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2434,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24340,0,14,Volvo,S60 AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1469,0.0,36.4714,0.0,Compact Cars,2008,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24341,0,14,Volvo,S60 FWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,35.6,0.0,Compact Cars,2008,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24342,0,14,Volvo,S60 FWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1087,0.0,36.269,0.0,Compact Cars,2008,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24343,0,14,Volvo,S60 FWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,37.6,0.0,Compact Cars,2008,-1750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24344,0,14,Volvo,S60 FWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8987,0.0,38.4468,0.0,Compact Cars,2008,-1750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24345,0,13,Acura,RL,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.3,0.0,33.0439,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24346,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4499,0.0,37.0,0.0,Midsize Cars,2008,-2250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24347,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,37.7,0.0,Midsize Cars,2008,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24348,0,12,Acura,TL,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,35.7,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24349,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0325,0.0,37.6462,0.0,Midsize Cars,2008,-2250,,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2435,0,0,Chevrolet,C20 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24350,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.494,0.0,34.5339,0.0,Midsize Cars,2008,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24351,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.909,0.0,31.5594,0.0,Midsize Cars,2008,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24352,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.909,0.0,31.5594,0.0,Midsize Cars,2008,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24353,0,16,Audi,S6,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.7,0.0,Midsize Cars,2008,-6750,G,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24354,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),15.7,0.0,25.7,0.0,Midsize Cars,2008,-8000,G,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24355,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),11.6,0.0,20.4,0.0,Midsize Cars,2008,-15500,G,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24356,0,16,Buick,Lacrosse/Allure,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,35.5,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24357,0,16,Buick,Lacrosse/Allure,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,38.6,0.0,Midsize Cars,2008,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,Direct Injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24358,0,14,Cadillac,CTS,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.449,0.0,36.7774,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24359,0,14,Cadillac,CTS AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,34.8,0.0,Midsize Cars,2008,-1750,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2436,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,DIRECTINJ,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24360,0,14,Cadillac,STS,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.449,0.0,36.7774,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24361,0,14,Cadillac,STS-V,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,26.9,0.0,Midsize Cars,2008,-8000,G,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24362,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.0,0.0,Midsize Cars,2008,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,DIRECTINJ,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24363,0,14,Cadillac,STS AWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.7,0.0,Midsize Cars,2008,-1750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24364,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0,0.0,29.6,0.0,Midsize Cars,2008,-6750,G,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24365,0,15,Chevrolet,Classic,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,43.6,0.0,Midsize Cars,2008,1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24366,0,15,Chevrolet,Classic,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,38.6,0.0,Midsize Cars,2008,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24367,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,42.3,0.0,Midsize Cars,2008,1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24368,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,40.6,0.0,Midsize Cars,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24369,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2008,-1750,,2MODE CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2437,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24370,0,16,Chevrolet,Malibu Hybrid,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6,0.0,44.9,0.0,Midsize Cars,2008,1750,,CLKUP,,,Hybrid,,,36V Ni-MH, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24371,0,16,Ford,Fusion,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.7209,0.0,39.7273,0.0,Midsize Cars,2008,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24372,0,16,Ford,Fusion,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2008,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24373,0,16,Ford,Fusion,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2008,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24374,0,16,Ford,Fusion AWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9284,0.0,34.2287,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,98,24375,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2604,0.0,44.5154,0.0,Midsize Cars,2008,1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,24376,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5387,0.0,42.3593,0.0,Midsize Cars,2008,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24377,0,16,Mercury,Milan,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.7209,0.0,39.7273,0.0,Midsize Cars,2008,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24378,0,16,Mercury,Milan,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2008,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24379,0,16,Mercury,Milan,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2008,-1000,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4891,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2438,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-5500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24380,0,16,Mercury,Milan AWD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9284,0.0,34.2287,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24381,0,16,Lincoln,MKZ AWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.3,0.0,Midsize Cars,2008,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24382,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.6,0.0,39.6,0.0,Midsize Cars,2008,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,22,96,24383,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9764,0.0,40.2445,0.0,Midsize Cars,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,96,24384,0,15,Mazda,6,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),26.2629,0.0,39.3569,0.0,Midsize Cars,2008,500,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,24385,0,15,Mazda,6,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.4896,0.0,34.458,0.0,Midsize Cars,2008,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,96,24386,0,15,Mazda,6,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.966,0.0,35.2488,0.0,Midsize Cars,2008,-1750,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,20,95,24387,0,0,Mazda,Speed 3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,35.5943,0.0,Midsize Cars,2008,-3000,,,T,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24388,0,14,Mercedes-Benz,E320 Bluetec,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,29.1,0.0,45.3,0.0,Midsize Cars,2008,500,,EMS 2MODE CLKUP,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24389,0,14,Mercedes-Benz,E350,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6684,0.0,33.6707,0.0,Midsize Cars,2008,-3750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4896,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2439,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.9231,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24390,0,14,Mercedes-Benz,E350 4matic,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,0.0,30.6,0.0,Midsize Cars,2008,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24391,0,14,Mercedes-Benz,E550,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.4,0.0,31.1,0.0,Midsize Cars,2008,-5750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24392,0,14,Mercedes-Benz,E550 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.5,0.0,26.7,0.0,Midsize Cars,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24393,0,14,Mercedes-Benz,E63 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S7),15.2,0.0,25.7,0.0,Midsize Cars,2008,-8000,G,EMS 2MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,24394,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.8395,0.0,46.2605,0.0,Midsize Cars,2008,2500,,VMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,95,24395,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.7394,0.0,44.6569,0.0,Midsize Cars,2008,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,95,24396,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.0394,0.0,44.0787,0.0,Midsize Cars,2008,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24397,0,16,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,42.3,0.0,Midsize Cars,2008,1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24398,0,16,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,40.6,0.0,Midsize Cars,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24399,0,16,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2008,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,244,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4895,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2440,0,0,Chevrolet,El Camino Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24400,0,16,Saturn,Aura Hybrid,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6,0.0,44.9,0.0,Midsize Cars,2008,1750,,CLKUP,,,Hybrid,,,36V Ni-MH, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24401,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.254,0.0,44.031,0.0,Midsize Cars,2008,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24402,0,15,Toyota,Camry,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.1,0.0,Midsize Cars,2008,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24403,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3478,0.0,39.3409,0.0,Midsize Cars,2008,-500,,CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,24404,0,11,Toyota,Camry Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.2454,0.0,48.2,0.0,Midsize Cars,2008,4000,,VMODE VLKUP,,,Hybrid,,,245V Ni-MH, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24405,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Midsize Cars,2008,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24406,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,39.2,0.0,Midsize Cars,2008,-1750,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24407,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,36.0,0.0,Midsize Cars,2008,-3000,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24408,0,14,Volkswagen,Passat 4motion,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,33.5,0.0,Midsize Cars,2008,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24409,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0278,0.0,31.9366,0.0,Midsize Cars,2008,-4750,,2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4897,(305) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2441,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24410,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,33.7,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24411,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.6,0.0,Midsize Cars,2008,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24412,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,33.3,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24413,0,15,Audi,A8 L,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.909,0.0,31.5594,0.0,Large Cars,2008,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24414,0,13,Bentley,Arnage RL,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S6),11.5057,0.0,21.0205,0.0,Large Cars,2008,-15500,G,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24415,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,38.6,0.0,Large Cars,2008,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24416,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24417,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24418,0,19,Cadillac,DTS,Y,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24419,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4898,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2442,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24420,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,25.1,0.0,Large Cars,2008,-6250,G,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24421,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,25.1,0.0,Large Cars,2008,-6250,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24422,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3,0.0,40.6,0.0,Large Cars,2008,-500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24423,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.2,0.0,29.5,0.0,Large Cars,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24424,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.5,0.0,29.2,0.0,Large Cars,2008,-6750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24425,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,24.0,0.0,Large Cars,2008,-11250,G,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24426,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S5),13.5,0.0,23.1,0.0,Large Cars,2008,-11250,G,EMS 2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24427,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3478,0.0,39.3409,0.0,Large Cars,2008,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24428,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Small Station Wagons,2008,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24429,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,39.4,0.0,Small Station Wagons,2008,-1000,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2443,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24430,0,28,Audi,A4 Avant quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2348,0.0,38.3379,0.0,Small Station Wagons,2008,-1750,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24431,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,34.2,0.0,Small Station Wagons,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24432,0,28,Audi,A4 Avant quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),21.494,0.0,34.5339,0.0,Small Station Wagons,2008,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24433,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3,0.0,27.1,0.0,Small Station Wagons,2008,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24434,0,28,Audi,S4 Avant,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8445,0.0,28.9659,0.0,Small Station Wagons,2008,-6750,G,3MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24435,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.7,0.0,43.8,0.0,Small Station Wagons,2008,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24436,0,22,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,46.6,0.0,Small Station Wagons,2008,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24437,0,19,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4336,0.0,34.2401,0.0,Small Station Wagons,2008,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24438,0,19,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7286,0.0,37.5847,0.0,Small Station Wagons,2008,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24439,0,19,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),24.7992,0.0,35.0293,0.0,Small Station Wagons,2008,-1750,,2MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2444,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Lockup,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24440,0,19,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0768,0.0,37.1373,0.0,Small Station Wagons,2008,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24441,0,12,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,38.3,0.0,Small Station Wagons,2008,-500,,EMS,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24442,0,12,Suzuki,Forenza Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,38.3,0.0,Small Station Wagons,2008,-500,,EMS,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24443,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6253,0.0,43.707,0.0,Small Station Wagons,2008,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24444,0,22,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.2432,0.0,46.3596,0.0,Small Station Wagons,2008,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24445,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1057,0.0,39.4938,0.0,Small Station Wagons,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24446,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7462,0.0,39.46,0.0,Small Station Wagons,2008,500,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24447,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.5,0.0,Small Station Wagons,2008,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24448,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1469,0.0,36.4714,0.0,Small Station Wagons,2008,-2250,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24449,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7,0.0,Small Station Wagons,2008,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2445,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24450,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),25.0004,0.0,39.5001,0.0,Small Station Wagons,2008,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24451,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Small Station Wagons,2008,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24452,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),23.8987,0.0,38.4468,0.0,Small Station Wagons,2008,-1750,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24453,0,34,Audi,A6 Avant quattro,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.037,0.0,34.2854,0.0,Midsize Station Wagons,2008,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24454,0,41,Mercedes-Benz,E350 4matic (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,29.3,0.0,Midsize Station Wagons,2008,-4750,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24455,0,41,Mercedes-Benz,E63 AMG (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S7),14.7,0.0,24.6,0.0,Midsize Station Wagons,2008,-9500,G,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24456,0,36,Volkswagen,Passat Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7946,0.0,40.8107,0.0,Midsize Station Wagons,2008,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24457,0,36,Volkswagen,Passat Wagon,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8,0.0,39.2,0.0,Midsize Station Wagons,2008,-1000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24459,0,36,Volkswagen,Passat Wagon 4motion,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,33.5,0.0,Midsize Station Wagons,2008,-3750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2446,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,Overdrive,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24460,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8394,0.0,32.8352,0.0,Small Pickup Trucks 2WD,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24461,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0484,0.0,33.4539,0.0,Small Pickup Trucks 2WD,2008,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24462,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6098,0.0,30.4803,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24463,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.8,0.0,Small Pickup Trucks 2WD,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24464,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.6,0.0,Small Pickup Trucks 2WD,2008,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24465,0,0,Chevrolet,Colorado Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,30.5,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24466,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2501,0.0,32.9501,0.0,Small Pickup Trucks 2WD,2008,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24467,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Small Pickup Trucks 2WD,2008,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24468,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2548,0.0,27.6165,0.0,Small Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24469,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9275,0.0,29.8446,0.0,Small Pickup Trucks 2WD,2008,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2447,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24470,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,27.2,0.0,Small Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24471,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8664,0.0,32.8419,0.0,Small Pickup Trucks 2WD,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24472,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0481,0.0,33.4547,0.0,Small Pickup Trucks 2WD,2008,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24473,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.614,0.0,30.4716,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24474,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Small Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24475,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.8,0.0,Small Pickup Trucks 2WD,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24476,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.6,0.0,Small Pickup Trucks 2WD,2008,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24477,0,0,GMC,Canyon Crew Cab 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,30.5,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24478,0,0,Isuzu,i-290 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.8,0.0,Small Pickup Trucks 2WD,2008,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24479,0,0,Isuzu,i-290 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.6,0.0,Small Pickup Trucks 2WD,2008,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2448,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24480,0,0,Isuzu,i-370 Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,30.5,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24481,0,0,Isuzu,i-370 Extended Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,30.5,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24482,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2501,0.0,32.9501,0.0,Small Pickup Trucks 2WD,2008,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24483,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Small Pickup Trucks 2WD,2008,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24484,0,0,Mazda,B3000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2253,0.0,27.6613,0.0,Small Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24485,0,0,Mazda,B3000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9856,0.0,29.7284,0.0,Small Pickup Trucks 2WD,2008,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24486,0,0,Mazda,B4000 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,27.2,0.0,Small Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24487,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4279,0.0,28.3107,0.0,Small Pickup Trucks 2WD,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24488,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1,0.0,26.8,0.0,Small Pickup Trucks 2WD,2008,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24489,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3577,0.0,30.7736,0.0,Small Pickup Trucks 4WD,2008,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2449,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24490,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,30.8,0.0,Small Pickup Trucks 4WD,2008,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24491,0,0,Chevrolet,Colorado 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,28.8,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24492,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Small Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24493,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24494,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24495,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3573,0.0,25.6284,0.0,Small Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24496,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6,0.0,27.1,0.0,Small Pickup Trucks 4WD,2008,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24497,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7366,0.0,23.8058,0.0,Small Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24498,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.1,0.0,Small Pickup Trucks 4WD,2008,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24499,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3577,0.0,30.7736,0.0,Small Pickup Trucks 4WD,2008,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,245,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Compact Cars,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2450,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1986,-9250,,Lockup,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24500,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,30.8,0.0,Small Pickup Trucks 4WD,2008,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24501,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2,0.0,28.8,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24502,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24503,0,0,GMC,Canyon Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24504,0,0,Isuzu,i-370 Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.2,0.0,Small Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24505,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7366,0.0,23.8058,0.0,Small Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24506,0,0,Mazda,B4000 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.1,0.0,Small Pickup Trucks 4WD,2008,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24507,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8101,0.0,27.9081,0.0,Small Pickup Trucks 4WD,2008,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24508,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1854,0.0,25.3729,0.0,Small Pickup Trucks 4WD,2008,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24509,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6805,0.0,27.8173,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2451,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-7750,,Overdrive,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24510,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3719,0.0,25.8867,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24511,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2489,0.0,28.1164,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24512,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8077,0.0,24.2096,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24513,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24514,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.3,0.0,Standard Pickup Trucks 2WD,2008,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24515,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24516,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,26.8,0.0,Standard Pickup Trucks 2WD,2008,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24517,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.4,0.0,23.9,0.0,Standard Pickup Trucks 2WD,2008,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24518,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2914,0.0,25.5784,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24519,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2452,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,23.0,0.0,Standard Pickup Trucks,1986,-9250,,Overdrive,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24520,0,0,Ford,Explorer Sport Trac 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24521,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6807,0.0,27.8175,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24522,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3492,0.0,25.7957,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24523,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.216,0.0,28.127,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24524,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8189,0.0,24.2238,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24525,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.3,0.0,26.0,0.0,Standard Pickup Trucks 2WD,2008,-8000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24526,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24527,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.3,0.0,Standard Pickup Trucks 2WD,2008,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24528,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.5,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24529,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2192,0.0,25.1805,0.0,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2453,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24530,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5486,0.0,26.4895,0.0,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24531,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6901,0.0,23.6952,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24532,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24533,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,26.1,0.0,Standard Pickup Trucks 4WD,2008,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24534,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.3,0.0,22.3,0.0,Standard Pickup Trucks 4WD,2008,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24535,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4203,0.0,23.4596,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24536,0,0,Ford,Explorer Sport Trac 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4557,0.0,25.6221,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24537,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.5907,0.0,25.6377,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24538,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.5,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24539,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2067,0.0,25.1931,0.0,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2454,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,20.0,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24540,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5659,0.0,26.4849,0.0,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24541,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,23.7,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24542,0,0,GMC,Sierra K15 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,25.7,0.0,Standard Pickup Trucks 4WD,2008,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24543,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1,0.0,27.5,0.0,Standard Pickup Trucks 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24544,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24545,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.2,0.0,"Vans, Cargo Type",2008,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24546,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24547,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.3,0.0,"Vans, Cargo Type",2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24548,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.1,0.0,"Vans, Cargo Type",2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24549,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.4,0.0,"Vans, Cargo Type",2008,-6250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2455,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,16.6667,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24550,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.2,0.0,"Vans, Cargo Type",2008,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24551,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24552,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,24.3,0.0,"Vans, Cargo Type",2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24553,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.1,0.0,"Vans, Cargo Type",2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24554,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,0.0,23.4,0.0,"Vans, Cargo Type",2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24555,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.2,0.0,"Vans, Passenger Type",2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24556,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.1,0.0,"Vans, Passenger Type",2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24557,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.2,0.0,"Vans, Passenger Type",2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24558,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,0.0,22.1,0.0,"Vans, Passenger Type",2008,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24559,0,0,Buick,Terraza FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,32.5,0.0,Minivan - 2WD,2008,-2500,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2456,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24560,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2008,-3250,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24561,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.1,0.0,Minivan - 2WD,2008,-3250,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24562,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2008,-3250,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24563,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.1,0.0,Minivan - 2WD,2008,-3250,,CMODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24564,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24565,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.3,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24566,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2008,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24567,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24568,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3485,0.0,24.0474,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24569,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2457,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24570,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3485,0.0,24.0474,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24571,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,26.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24572,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24573,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24574,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5916,0.0,42.0963,0.0,Sport Utility Vehicle - 2WD,2008,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24575,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.8,0.0,Sport Utility Vehicle - 2WD,2008,500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24576,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.6,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24577,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,39.9,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24578,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.8,0.0,42.2,0.0,Sport Utility Vehicle - 2WD,2008,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24579,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.9,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2008,500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2458,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24580,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24581,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,40.1,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24582,0,0,Chevrolet,TrailBlazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24583,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24584,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.5,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24585,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24586,0,0,Chrysler,Pacifica FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.3,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24587,0,0,Chrysler,Pacifica FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,31.5,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24588,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2008,-2250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24589,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2459,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24590,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24591,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5499,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2008,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24592,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.9,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24593,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24594,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24595,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24596,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,29.2,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24597,0,0,Ford,Expedition 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.3,0.0,24.9,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24598,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24599,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,246,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Compact Cars,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2460,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24600,0,0,Ford,Taurus X FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3489,0.0,32.8574,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24601,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,26.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24602,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24603,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24604,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3485,0.0,24.0474,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24605,0,0,GMC,Envoy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24606,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24607,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24608,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24609,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.0,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2461,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,20.0,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24610,0,0,Infiniti,FX35 RWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1782,0.0,30.1661,0.0,Sport Utility Vehicle - 2WD,2008,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24611,0,0,Isuzu,Ascender 5-passenger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24612,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24613,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.5,0.0,32.0,0.0,Sport Utility Vehicle - 2WD,2008,-2750,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24614,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24615,0,0,Jeep,Liberty 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24616,0,0,Jeep,Liberty 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,31.1,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24617,0,0,Jeep,Wrangler 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24618,0,0,Jeep,Wrangler 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24619,0,0,Lincoln,Navigator 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.3,0.0,24.9,0.0,Sport Utility Vehicle - 2WD,2008,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2462,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24620,0,0,Mazda,CX-7 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1,0.0,31.8987,0.0,Sport Utility Vehicle - 2WD,2008,-3750,,DC/FW,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24621,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,DC/FW,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24622,0,14,Mercedes-Benz,R350,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.4,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2008,-5750,,EMS 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24623,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24624,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.4,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24625,0,0,Pontiac,Torrent FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24626,0,0,Suzuki,XL7 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24627,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24628,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4279,0.0,28.3107,0.0,Sport Utility Vehicle - 2WD,2008,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24629,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2463,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24630,0,0,Volvo,XC 90 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.5387,0.0,27.5387,0.0,Sport Utility Vehicle - 2WD,2008,-6750,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24631,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24632,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.6,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24633,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24634,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24635,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24636,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24637,0,0,Chevrolet,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24638,0,0,Chevrolet,TrailBlazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24639,0,0,Chevrolet,TrailBlazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2464,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24640,0,0,Chevrolet,TrailBlazer AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.4,0.0,Sport Utility Vehicle - 4WD,2008,-11250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24641,0,0,Chrysler,Aspen 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24642,0,0,Chrysler,Pacifica AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5,0.0,30.324,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CMODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24643,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24644,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24645,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24646,0,0,Dodge,Nitro 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.1,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24647,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4557,0.0,25.6221,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24648,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.5907,0.0,25.6377,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24649,0,0,Ford,Taurus X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.122,0.0,29.9554,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2465,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24650,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24651,0,0,GMC,Envoy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24652,0,0,GMC,Yukon Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24653,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24654,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24655,0,0,Honda,Element 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2008,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24656,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24657,0,0,Hummer,H3 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24658,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24659,0,0,Hummer,H3 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,21.7,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2466,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24660,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.0886,0.0,27.6032,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24661,0,0,Infiniti,FX45 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.8592,0.0,23.6387,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24662,0,0,Isuzu,Ascender 5-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24663,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24664,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2008,-3500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24665,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.1,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,24666,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2008,-13250,,CMODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24667,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24668,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24669,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7721,0.0,26.9966,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2467,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24670,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24671,0,0,Mazda,CX-7 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2008,-4750,,DC/FW,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24672,0,0,Mazda,CX-9 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,28.6,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,DC/FW,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24673,0,16,Mercedes-Benz,GL320 CDI 4matic,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2008,-2750,,EMS 2MODE CLKUP,T,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24674,0,16,Mercedes-Benz,GL450 4matic,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.1,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,EMS 2MODE CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24675,0,41,Mercedes-Benz,ML320 CDI 4matic,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2008,-2000,,EMS 2MODE CLKUP,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24676,0,41,Mercedes-Benz,ML350 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.4,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24677,0,41,Mercedes-Benz,ML550 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,24678,0,41,Mercedes-Benz,ML63 AMG,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0,0.0,19.9,0.0,Sport Utility Vehicle - 4WD,2008,-13250,,EMS 2MODE CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2800,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24679,0,14,Mercedes-Benz,R320 CDI 4matic,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.1,0.0,33.8,0.0,Sport Utility Vehicle - 4WD,2008,-2000,,EMS 2MODE CLKUP,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2468,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1986,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24680,0,14,Mercedes-Benz,R350 4matic,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24681,0,0,Mercury,Mountaineer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4557,0.0,25.6221,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24682,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.5907,0.0,25.6377,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24683,0,0,Pontiac,Torrent AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24684,0,0,Pontiac,Torrent AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24685,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24686,0,0,Saab,9-7X AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24687,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.4,0.0,Sport Utility Vehicle - 4WD,2008,-11250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24688,0,0,Suzuki,XL7 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.1,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24689,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4744,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2469,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24690,0,0,Toyota,FJ Cruiser 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4744,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24691,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24692,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24693,0,0,Volvo,XC 70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24694,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2992,0.0,27.2992,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24695,0,0,Volvo,XC 90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0998,0.0,26.1997,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,2MODE CLKUP,,,,,,, +14.964294,4.679378,0.0,0.0,18,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,320/510,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,24696,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,17.1,40.7,29.3,Large Cars,2008,-500,,CLKUP,,,FFV,E85,250/370,, +15.689436,4.679378,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,320-500,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,0.0,20,0.0,0.0,0.0,0.0,0,0,24697,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,16.6,38.7,28.5,Large Cars,2008,-1000,,CLKUP,,,FFV,E85,230/350,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24698,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0941,13.763,27.648,20.5478,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,FFV,E85,290/410,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24699,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1045,13.7699,27.6532,20.5531,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,FFV,E85,290/410,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12031,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,247,0,13,BMW,7 Series,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Compact Cars,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2470,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24700,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.331,13.4078,26.2255,19.521,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24701,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.306,13.3987,26.2142,19.5138,Standard Pickup Trucks 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24702,0,0,Chevrolet,Express 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.2,16.3,"Vans, Passenger Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24703,0,0,Chevrolet,Express 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.1,16.2,"Vans, Passenger Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24704,0,0,GMC,Savana 1500/2500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.2,16.3,"Vans, Passenger Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24705,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.1,16.2,"Vans, Passenger Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24706,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,13.3,27.6,20.6,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24707,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,13.3,27.6,20.6,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24708,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,13.3,27.6,20.6,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24709,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,13.3,27.6,20.6,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2471,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,24710,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5,13.3,27.6,20.6,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24711,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,13.1,26.6,20.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24712,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,13.1,26.6,20.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24713,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,13.1,26.6,20.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24714,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,13.1,26.6,20.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,390-540,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,24715,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,13.1,26.6,20.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,FFV,E85,290/410,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 340,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,24716,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,FFV,E85,230,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,24717,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,FFV,E85,230,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24718,0,0,Chevrolet,Van 15/25 2WD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.2,16.3,"Vans, Cargo Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,24719,0,0,Chevrolet,Van 1500/2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,12.4,24.3,17.5,"Vans, Cargo Type",2008,-6250,,CLKUP,,,FFV,E85,310/340,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2472,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24720,0,0,Chevrolet,Van 1500 AWD Conversion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.1,16.2,"Vans, Cargo Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,24721,0,0,Chevrolet,Van 1500/2500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,12.2,23.4,16.9,"Vans, Cargo Type",2008,-6250,,CLKUP,,,FFV,E85,310/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24722,0,0,GMC,Savana 15/25 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.2,16.3,"Vans, Cargo Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430-470,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,24723,0,0,GMC,Savana 1500/2500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,12.4,24.3,17.5,"Vans, Cargo Type",2008,-6250,,CLKUP,,,FFV,E85,310/340,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,24724,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.3,11.5,22.1,16.2,"Vans, Cargo Type",2008,-7750,,CLKUP,,,FFV,E85,310/340,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,440-470,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,24725,0,0,GMC,Savana 1500/2500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6,12.2,23.4,16.9,"Vans, Cargo Type",2008,-6250,,CLKUP,,,FFV,E85,310/340,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,24726,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.6,25.6,17.7,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,FFV,E85,230,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,24727,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,17.7,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,FFV,E85,230,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24728,0,14,Suzuki,SX4 Sedan,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.2,0.0,42.9,0.0,Compact Cars,2008,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24729,0,14,Suzuki,SX4 Sedan,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,42.3,0.0,Compact Cars,2008,1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2473,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24730,0,9,Suzuki,SX4,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,41.7,0.0,Small Station Wagons,2008,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24731,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9911,0.0,41.5882,0.0,Small Station Wagons,2008,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24732,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5317,0.0,39.0,0.0,Small Station Wagons,2008,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24733,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,38.8,0.0,Small Station Wagons,2008,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24734,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3,0.0,31.2,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24735,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.3,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24736,0,0,Suzuki,Grand Vitara AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,29.7,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24737,0,0,Suzuki,Grand Vitara AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.1,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24739,10,0,Mercedes-Benz,CLK550,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,30.3,0.0,Subcompact Cars,2008,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2474,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24740,9,0,Mercedes-Benz,CLK550 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.0,0.0,29.5,0.0,Subcompact Cars,2008,-5750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24742,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.2,0.0,25.7,0.0,Two Seaters,2008,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24743,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1945,0.0,27.4018,0.0,Two Seaters,2008,-8000,G,4MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24744,0,0,BMW,Z4 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Two Seaters,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24745,0,0,BMW,Z4 3.0i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Two Seaters,2008,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24746,0,0,BMW,Z4 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Two Seaters,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24747,0,0,BMW,Z4 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Two Seaters,2008,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24748,0,0,BMW,Z4 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Two Seaters,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24749,0,0,BMW,Z4 Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Two Seaters,2008,-1750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2475,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,23.0,0.0,Standard Pickup Trucks,1986,-5250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24750,0,0,BMW,Z4 M Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,31.9,0.0,Two Seaters,2008,-4750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,MOTORSPORT,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24751,0,0,BMW,Z4 M Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,31.9,0.0,Two Seaters,2008,-4750,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24752,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2008,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24753,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2008,-6750,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24754,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7498,0.0,22.4,0.0,Two Seaters,2008,-11250,G,SIL 3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24755,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.8,0.0,22.2,0.0,Two Seaters,2008,-11250,G,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24756,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.9992,0.0,20.9995,0.0,Two Seaters,2008,-13250,G,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24757,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.2,0.0,21.1,0.0,Two Seaters,2008,-13250,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24758,0,0,Honda,S2000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,33.1,0.0,Two Seaters,2008,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24759,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,37.6,0.0,Two Seaters,2008,0,,EMS,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2476,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24760,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,37.0,0.0,Two Seaters,2008,-500,,EMS,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24761,0,0,Nissan,350z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,34.7,0.0,Two Seaters,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24762,0,0,Nissan,350z,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4963,0.0,32.9853,0.0,Two Seaters,2008,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24763,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,33.8,0.0,Two Seaters,2008,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24764,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,32.5,0.0,Two Seaters,2008,-3750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24765,5,0,Aston Martin,DB9 Coupe,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2008,-13250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24766,5,0,Aston Martin,DB9 Coupe,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.6,0.0,24.4,0.0,Minicompact Cars,2008,-11250,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24767,5,0,Aston Martin,DB9 Volante,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.5,0.0,22.5,0.0,Minicompact Cars,2008,-13250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24768,5,0,Aston Martin,DB9 Volante,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,0.0,23.4,0.0,Minicompact Cars,2008,-11250,G,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24769,9,0,Lexus,SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2995,0.0,31.6,0.0,Minicompact Cars,2008,-3750,,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2477,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24770,0,7,MINI,Cooper Convertible,N,false,0,70,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.3,0.0,41.9,0.0,Minicompact Cars,2008,0,,3MODE VLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24771,0,7,MINI,Cooper Convertible,N,false,0,70,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.9,0.0,44.9,0.0,Minicompact Cars,2008,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24772,0,7,MINI,Cooper S Convertible,N,false,0,70,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.6365,0.0,40.2563,0.0,Minicompact Cars,2008,-500,,,,S,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24773,0,7,MINI,Cooper S Convertible,N,false,0,70,0,0.0,0.0,0.0,0.0,Automatic (S6),24.558,0.0,40.2747,0.0,Minicompact Cars,2008,-1000,,3MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24774,10,0,Audi,RS4 Cabriolet,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.8,0.0,26.0,0.0,Subcompact Cars,2008,-9500,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24775,0,12,Audi,S5,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.3,0.0,Subcompact Cars,2008,-6750,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24776,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.4969,0.0,23.2298,0.0,Subcompact Cars,2008,-13250,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24777,0,11,BMW,328ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Subcompact Cars,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24778,0,11,BMW,328ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Subcompact Cars,2008,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24779,0,9,BMW,328ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2906,0.0,37.1716,0.0,Subcompact Cars,2008,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2478,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24780,0,9,BMW,328ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5502,0.0,38.0979,0.0,Subcompact Cars,2008,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24781,0,11,BMW,328cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7612,0.0,35.2733,0.0,Subcompact Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24782,0,11,BMW,328cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,35.2164,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24783,0,11,BMW,335ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9933,0.0,35.9952,0.0,Subcompact Cars,2008,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24784,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7412,0.0,36.2321,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24785,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9933,0.0,35.9952,0.0,Subcompact Cars,2008,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24786,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7412,0.0,36.2321,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24787,0,11,BMW,335cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5496,0.0,34.2236,0.0,Subcompact Cars,2008,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24788,0,11,BMW,335cxi,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0379,0.0,34.606,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24789,0,13,BMW,650ci,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.714,0.0,30.6951,0.0,Subcompact Cars,2008,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4896,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2479,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.9231,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24790,0,13,BMW,650ci,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0711,0.0,31.466,0.0,Subcompact Cars,2008,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24791,0,11,BMW,650ci Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,28.8,0.0,Subcompact Cars,2008,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24792,0,11,BMW,650ci Convertible,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Subcompact Cars,2008,-4750,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24793,0,13,BMW,M6,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1261,0.0,23.2779,0.0,Subcompact Cars,2008,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24794,0,13,BMW,M6,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0847,0.0,23.6701,0.0,Subcompact Cars,2008,-11250,G,6MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24795,0,11,BMW,M6 Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9,0.0,23.7,0.0,Subcompact Cars,2008,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24796,0,11,BMW,M6 Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S7),12.9504,0.0,24.0505,0.0,Subcompact Cars,2008,-11250,G,6MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24797,8,0,Nissan,Altima Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.3254,0.0,43.3253,0.0,Subcompact Cars,2008,1500,,VMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24798,8,0,Nissan,Altima Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.3544,0.0,45.4439,0.0,Subcompact Cars,2008,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24799,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.4,0.0,35.6,0.0,Subcompact Cars,2008,-1750,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12031,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,248,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Compact Cars,1985,-5250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4895,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2480,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24800,8,0,Nissan,Altima Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,37.8,0.0,Subcompact Cars,2008,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24801,14,14,Pontiac,G5/Pursuit,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,43.4,0.0,Subcompact Cars,2008,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24802,14,14,Pontiac,G5/Pursuit,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,46.3,0.0,Subcompact Cars,2008,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24803,14,14,Pontiac,G5/Pursuit,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9,0.0,43.1,0.0,Subcompact Cars,2008,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24804,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,38.3,0.0,Subcompact Cars,2008,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24805,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Subcompact Cars,2008,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24806,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.0319,0.0,33.009,0.0,Subcompact Cars,2008,-4750,,2MODE CLKUP,T,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,85,24807,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.6644,0.0,49.649,0.0,Subcompact Cars,2008,3000,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,85,24808,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.7675,0.0,51.0192,0.0,Subcompact Cars,2008,3500,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24809,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.8,0.0,23.8,0.0,Compact Cars,2008,-11250,G,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4897,(305) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2481,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24810,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Compact Cars,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24811,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Compact Cars,2008,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24812,0,12,BMW,328xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7612,0.0,35.2733,0.0,Compact Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24813,0,12,BMW,328xi,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,35.2164,0.0,Compact Cars,2008,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24814,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9933,0.0,35.9952,0.0,Compact Cars,2008,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24815,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7412,0.0,36.2321,0.0,Compact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24816,0,12,BMW,335xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5496,0.0,34.2236,0.0,Compact Cars,2008,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24817,0,12,BMW,335xi,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0379,0.0,34.606,0.0,Compact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24818,0,15,Dodge,Caliber,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6906,0.0,40.6284,0.0,Small Station Wagons,2008,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24819,0,15,Dodge,Caliber,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Small Station Wagons,2008,500,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4898,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2482,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24820,0,15,Dodge,Caliber,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.1,0.0,35.3,0.0,Small Station Wagons,2008,0,,CMODE VLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24821,0,15,Dodge,Caliber,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,40.1,0.0,Small Station Wagons,2008,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24822,0,15,Dodge,Caliber AWD,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Small Station Wagons,2008,-500,,CMODE VLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24823,14,14,Ford,Focus,Y,false,93,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.083,0.0,46.6144,0.0,Compact Cars,2008,2250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,24824,14,14,Ford,Focus,Y,false,93,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8908,0.0,48.8064,0.0,Compact Cars,2008,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24825,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.1998,0.0,42.2654,0.0,Compact Cars,2008,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24826,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,43.5,0.0,Compact Cars,2008,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24827,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,39.8553,0.0,Compact Cars,2008,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24828,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7,0.0,35.3,0.0,Compact Cars,2008,-1750,,,,,,,,, +7.844718,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1300,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,24829,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2008,5500,,EMS,,,Hybrid,,,158V Ni-MH, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2483,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,24830,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0998,0.0,47.1153,0.0,Compact Cars,2008,2250,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,24831,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3499,0.0,44.4433,0.0,Compact Cars,2008,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,92,24832,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.198,0.0,48.8121,0.0,Compact Cars,2008,2500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,24833,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3727,0.0,44.5948,0.0,Compact Cars,2008,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,HEV,-1,2600,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24834,0,8,Lexus,GS 450h,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9,0.0,35.3494,0.0,Compact Cars,2008,-1000,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24835,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3,0.0,35.8,0.0,Compact Cars,2008,-2250,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24836,0,12,Mercedes-Benz,C350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4392,0.0,34.7946,0.0,Compact Cars,2008,-3000,,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24837,0,11,Rolls-Royce,Phantom Drophead Coupe,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2008,-9500,G,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24838,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.5,0.0,40.0,0.0,Compact Cars,2008,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24839,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Compact Cars,2008,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2484,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24840,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),18.0319,0.0,33.009,0.0,Compact Cars,2008,-4750,,2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24841,0,13,Bentley,Continental Flying Spur,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),12.4969,0.0,23.2298,0.0,Midsize Cars,2008,-13250,G,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24842,0,14,BMW,535i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9933,0.0,35.9952,0.0,Midsize Cars,2008,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24843,0,14,BMW,535xi,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5496,0.0,34.2236,0.0,Midsize Cars,2008,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24844,0,14,Cadillac,CTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,35.1,0.0,Midsize Cars,2008,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,Direct Injection,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24845,0,14,Cadillac,CTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,35.5,0.0,Midsize Cars,2008,-2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24846,0,14,Cadillac,CTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,36.7,0.0,Midsize Cars,2008,-1000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,Direct Injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24847,0,14,Cadillac,CTS AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.7,0.0,Midsize Cars,2008,-1750,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24848,0,16,Chrysler,Sebring,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,38.3,0.0,Midsize Cars,2008,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24849,0,16,Dodge,Avenger,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,0.0,38.3,0.0,Midsize Cars,2008,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2485,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24850,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,11.4498,0.0,21.7,0.0,Midsize Cars,2008,-15500,G,3MODE,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24851,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.7,0.0,21.3,0.0,Midsize Cars,2008,-13250,G,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24852,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6392,0.0,46.0769,0.0,Midsize Cars,2008,2250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24853,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.9,0.0,Midsize Cars,2008,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24854,0,14,Infiniti,G35,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,34.6,0.0,Midsize Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24855,0,14,Infiniti,G35,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4513,0.0,33.1986,0.0,Midsize Cars,2008,-3000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24856,0,14,Infiniti,G35x,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7499,0.0,31.9499,0.0,Midsize Cars,2008,-3750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24857,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.9,0.0,43.4,0.0,Midsize Cars,2008,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24858,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,43.6,0.0,Midsize Cars,2008,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24859,0,14,Kia,Optima,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.6,0.0,39.3,0.0,Midsize Cars,2008,0,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2486,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24860,0,15,Lexus,ES 350,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,38.3,0.0,Midsize Cars,2008,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24861,0,13,Lexus,GS 350,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0,0.0,37.6,0.0,Midsize Cars,2008,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24862,0,13,Lexus,GS 350 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24863,0,13,Lexus,GS 460,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),21.0489,0.0,34.0499,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24864,0,13,Lexus,LS 460,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1489,0.0,33.5499,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24865,0,11,Lexus,LS 460 L,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2008,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24866,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),25.3458,0.0,38.0915,0.0,Midsize Cars,2008,0,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24867,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6669,0.0,34.9004,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24868,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.3254,0.0,43.3253,0.0,Midsize Cars,2008,1500,,VMODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,24869,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.3544,0.0,45.4439,0.0,Midsize Cars,2008,1500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2487,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24870,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.4,0.0,35.6,0.0,Midsize Cars,2008,-1750,,VMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24871,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,37.8,0.0,Midsize Cars,2008,-1750,,,,,,,,, +9.690534,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24872,0,10,Nissan,Altima Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.8,0.0,46.6,0.0,Midsize Cars,2008,4000,,EMS,,,Hybrid,,,245V Ni-MH, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24873,0,16,Nissan,Maxima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.6983,0.0,35.493,0.0,Midsize Cars,2008,-2250,,VMODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24874,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),31.9,0.0,46.4,0.0,Midsize Cars,2008,2250,,VMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24875,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.4,0.0,43.2,0.0,Midsize Cars,2008,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,24876,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.3,0.0,42.5,0.0,Midsize Cars,2008,1500,,VMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24877,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5756,0.0,40.0714,0.0,Midsize Cars,2008,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24878,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2008,-9500,G,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24879,0,14,Rolls-Royce,Phantom EWB,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2008,-9500,G,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2488,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-4250,,Overdrive,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24880,0,16,Saab,9-5 Sedan,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,38.7,0.0,Midsize Cars,2008,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24881,0,16,Saab,9-5 Sedan,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1137,0.0,36.831,0.0,Midsize Cars,2008,-3000,,2MODE CLKUP,T,,,,,, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,HEV,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,24882,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2008,6000,,VMODE VLKUP,,,Hybrid,,,202V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24883,0,18,BMW Alpina,B7,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9,0.0,29.1479,0.0,Large Cars,2008,-6750,G,3MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24884,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,26.7,0.0,Large Cars,2008,-8000,G,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24885,0,18,BMW,750i,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2008,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24886,0,18,BMW,750li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9,0.0,31.9,0.0,Large Cars,2008,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24887,0,18,BMW,760li,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),15.886,0.0,27.9119,0.0,Large Cars,2008,-8000,G,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24888,0,18,Chrysler,300 AWD,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24889,0,18,Chrysler,300 AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2489,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24890,0,18,Chrysler,300/SRT-8,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2008,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24891,0,18,Chrysler,300/SRT-8,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2008,-1750,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24892,0,18,Chrysler,300/SRT-8,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2008,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24893,0,18,Chrysler,300/SRT-8,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8952,0.0,31.2843,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24894,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2008,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24895,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2008,-1750,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24896,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Large Cars,2008,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24897,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8952,0.0,31.2843,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24898,0,16,Dodge,Charger AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24899,0,16,Dodge,Charger AWD,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Large Cars,2008,-3250,,CMODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4431,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,249,13,0,Buick,Riviera Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,31.0,0.0,Compact Cars,1985,-5750,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4853,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2490,0,0,GMC,C15 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24900,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.5114,0.0,42.9416,0.0,Large Cars,2008,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,24901,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8036,0.0,43.1123,0.0,Large Cars,2008,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24902,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7825,0.0,41.0585,0.0,Large Cars,2008,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24903,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,36.2,0.0,Large Cars,2008,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24904,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,35.6,0.0,Large Cars,2008,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24905,0,15,Infiniti,M35,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8486,0.0,32.1487,0.0,Large Cars,2008,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24906,0,15,Infiniti,M35x,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4,0.0,30.4,0.0,Large Cars,2008,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24907,0,15,Infiniti,M45,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.3541,0.0,29.5272,0.0,Large Cars,2008,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24908,0,15,Infiniti,M45x,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),17.3,0.0,27.2,0.0,Large Cars,2008,-6750,G,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24909,0,16,Kia,Amanti,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,33.8,0.0,Large Cars,2008,-2500,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2491,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24910,0,21,Lincoln,Town Car,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,30.6,0.0,Large Cars,2008,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24911,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.3993,0.0,24.1499,0.0,Large Cars,2008,-9500,G,SIL 3MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24912,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,21.4,0.0,Large Cars,2008,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24913,0,15,Maybach,57S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2008,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24914,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,21.4,0.0,Large Cars,2008,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24915,0,15,Maybach,62S,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2008,-13250,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24916,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2906,0.0,37.1716,0.0,Small Station Wagons,2008,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24917,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5502,0.0,38.0979,0.0,Small Station Wagons,2008,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24918,0,25,BMW,328xi Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7612,0.0,35.2733,0.0,Small Station Wagons,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24919,0,25,BMW,328xi Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7672,0.0,35.2164,0.0,Small Station Wagons,2008,-3000,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4870,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2492,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,24920,0,21,Honda,Fit,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.7,0.0,49.3,0.0,Small Station Wagons,2008,2750,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,24921,0,21,Honda,Fit,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.72,0.0,48.2,0.0,Small Station Wagons,2008,3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,24922,0,21,Honda,Fit,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),34.3,0.0,47.7,0.0,Small Station Wagons,2008,2500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,24923,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.5,0.0,40.0,0.0,Small Station Wagons,2008,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24924,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Small Station Wagons,2008,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24925,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),18.0319,0.0,33.009,0.0,Small Station Wagons,2008,-4750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24926,0,34,BMW,535xi Sport Wagon,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2789,0.0,32.2925,0.0,Midsize Station Wagons,2008,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24927,0,35,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,36.7,0.0,Midsize Station Wagons,2008,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24928,0,35,Kia,Rondo,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.6,0.0,36.1,0.0,Midsize Station Wagons,2008,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24929,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6,0.0,38.7,0.0,Midsize Station Wagons,2008,-2250,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2493,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24930,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1137,0.0,36.831,0.0,Midsize Station Wagons,2008,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24931,0,37,Volvo,V70 FWD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,33.3,0.0,Midsize Station Wagons,2008,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24932,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Small Pickup Trucks 2WD,2008,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24933,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2008,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24934,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2079,0.0,27.2597,0.0,Small Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24935,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4441,0.0,27.45,0.0,Small Pickup Trucks 2WD,2008,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24936,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.6,0.0,34.7,0.0,Small Pickup Trucks 2WD,2008,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24937,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.5832,0.0,35.2369,0.0,Small Pickup Trucks 2WD,2008,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24938,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6723,0.0,26.1454,0.0,Small Pickup Trucks 4WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24939,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0172,0.0,26.7465,0.0,Small Pickup Trucks 4WD,2008,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4854,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2494,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24940,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,30.0,0.0,Small Pickup Trucks 4WD,2008,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24941,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7639,0.0,25.6188,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24942,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4637,0.0,24.8087,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24943,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4993,0.0,26.3456,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24944,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.8263,0.0,27.0267,0.0,Standard Pickup Trucks 2WD,2008,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24945,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8483,0.0,25.8255,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24946,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6128,0.0,23.8808,0.0,Standard Pickup Trucks 2WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24947,0,0,Ford,F150 STX SE 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7219,0.0,25.9038,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24948,0,0,Lincoln,Mark LT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8,0.0,22.4,0.0,Standard Pickup Trucks 2WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24949,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,25.8,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2495,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1986,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24950,0,0,Roush Performance,Stage 3 F150 Regular Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24951,0,0,Roush Performance,Stage 3 F150 Super Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24952,0,0,Roush Performance,Stage 3 F150 Super Crew 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24953,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9388,0.0,26.0786,0.0,Standard Pickup Trucks 2WD,2008,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24954,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.8697,0.0,23.6284,0.0,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,24955,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.1408,0.0,25.1818,0.0,Standard Pickup Trucks 2WD,2008,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24956,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24957,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3211,0.0,23.5653,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24958,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9262,0.0,23.4877,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24959,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.423,0.0,22.8797,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2496,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24960,0,0,Lincoln,Mark LT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4079,0.0,22.8557,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24961,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24962,0,0,Roush Performance,Stage 3 F150 Regular Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24963,0,0,Roush Performance,Stage 3 F150 Super Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,24964,0,0,Roush Performance,Stage 3 F150 Super Crew 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,24965,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.4053,0.0,22.5966,0.0,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,24966,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4819,0.0,23.4462,0.0,Standard Pickup Trucks 4WD,2008,-7750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24967,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.0988,0.0,Minivan - 2WD,2008,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24968,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,33.0988,0.0,Minivan - 2WD,2008,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24969,0,0,Hyundai,Entourage,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2008,-3250,,2MODE CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4893,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2497,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-3500,,Creeper,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24970,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2008,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24971,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2869,0.0,32.7073,0.0,Minivan - 2WD,2008,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24972,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4004,0.0,34.0006,0.0,Minivan - 2WD,2008,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24973,0,0,Toyota,Sienna 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.2,0.0,Minivan - 4WD,2008,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24974,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24975,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,24976,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24977,0,0,Dodge,Magnum,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24978,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24979,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8952,0.0,31.2843,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2498,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24980,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3489,0.0,32.8574,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24981,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2008,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24982,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24983,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24984,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,CMODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24985,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2008,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24986,0,23,Hyundai,Tucson 2WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2008,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,24987,0,23,Hyundai,Tucson 2WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24988,0,0,Hyundai,Veracruz 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,24989,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2499,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24990,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2008,500,,VMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24991,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2008,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,24992,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,24993,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2008,500,,VMODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,24994,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2008,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,24995,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2008,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,24996,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.9,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24997,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,24998,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2008,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,24999,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,32.4,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41310,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25,0,0,Pininfarina,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Two Seaters,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4320,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,250,13,0,Buick,Riviera Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Compact Cars,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2500,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,HEV,-1,2400,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25000,0,0,Lexus,RX 400h 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.9,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2008,0,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25001,0,0,Lincoln,MKX FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3489,0.0,32.8574,0.0,Sport Utility Vehicle - 2WD,2008,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25002,0,0,Mitsubishi,Endeavor 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1432,0.0,29.9719,0.0,Sport Utility Vehicle - 2WD,2008,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25003,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8798,0.0,34.2389,0.0,Sport Utility Vehicle - 2WD,2008,-1750,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25004,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.6,0.0,38.4,0.0,Sport Utility Vehicle - 2WD,2008,500,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25005,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,28.1,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25006,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,27.7,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25007,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2008,-4250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25008,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.8192,0.0,38.1226,0.0,Sport Utility Vehicle - 2WD,2008,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25009,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2501,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25010,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.0059,0.0,23.3116,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25011,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8781,0.0,25.6033,0.0,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25012,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25013,0,0,Acura,RDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2008,-3750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25014,0,0,BMW,X3 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0865,0.0,32.6973,0.0,Sport Utility Vehicle - 4WD,2008,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25015,0,0,BMW,X3 3.0si,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.49,0.0,33.3596,0.0,Sport Utility Vehicle - 4WD,2008,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25016,0,0,BMW,X5 3.0si,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2,0.0,29.6,0.0,Sport Utility Vehicle - 4WD,2008,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25017,0,0,BMW,X5 4.8i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.7251,0.0,26.6996,0.0,Sport Utility Vehicle - 4WD,2008,-6750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25018,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25019,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,23.4,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2502,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25020,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25021,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25022,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.122,0.0,29.9554,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25023,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8621,0.0,35.6263,0.0,Sport Utility Vehicle - 4WD,2008,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25024,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25025,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25026,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25027,0,23,Hyundai,Tucson 4WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25028,0,23,Hyundai,Tucson 4WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25029,0,0,Hyundai,Veracruz 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.8,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,2MODE CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2503,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25030,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.1,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25031,0,0,Jeep,Compass 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2008,-500,,CMODE VLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25032,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,38.1,0.0,Sport Utility Vehicle - 4WD,2008,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25033,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25034,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2008,-500,,CMODE VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,CVT2L,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25035,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CMODE VLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25036,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4,0.0,38.1,0.0,Sport Utility Vehicle - 4WD,2008,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25037,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25038,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25039,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4891,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2504,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1986,-5500,,Creeper,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25040,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1,0.0,29.3986,0.0,Sport Utility Vehicle - 4WD,2008,-2500,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25041,0,0,Lexus,GX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25042,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.1491,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2400,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25043,0,0,Lexus,RX 400h 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.2,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2008,0,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25044,0,0,Lincoln,MKX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.122,0.0,29.9554,0.0,Sport Utility Vehicle - 4WD,2008,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25045,0,49,Mercedes-Benz,G500,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.2,0.0,20.5,0.0,Sport Utility Vehicle - 4WD,2008,-11250,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,25046,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,18.5,0.0,Sport Utility Vehicle - 4WD,2008,-13250,,EMS 2MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25047,0,16,Mercedes-Benz,GL550 4matic,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.7,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2008,-9500,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25048,0,0,Mitsubishi,Endeavor AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25049,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5239,0.0,33.1041,0.0,Sport Utility Vehicle - 4WD,2008,-1750,,2MODE CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,1901,"(DSL,TRBO) (MPFI) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2505,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,40.0,0.0,Standard Pickup Trucks,1986,500,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25050,0,0,Nissan,Rogue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0418,0.0,35.9256,0.0,Sport Utility Vehicle - 4WD,2008,0,,VMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25051,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2008,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25052,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2008,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25053,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,24.1,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25054,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.3499,0.0,34.9989,0.0,Sport Utility Vehicle - 4WD,2008,1500,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25055,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.7491,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25056,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5576,0.0,35.4928,0.0,Sport Utility Vehicle - 4WD,2008,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25057,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,35.7494,0.0,Sport Utility Vehicle - 4WD,2008,-1000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25058,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.3151,0.0,22.4373,0.0,Sport Utility Vehicle - 4WD,2008,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25059,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9036,0.0,24.5123,0.0,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2506,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1986,-2500,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=340,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,16,0.0,0.0,0.0,0.0,0,0,25060,0,21,Lincoln,Town Car,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5995,14.1979,31.4944,22.2,Large Cars,2008,-3250,,CLKUP,,,FFV,E85,250,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25061,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7639,11.0,25.6188,16.5,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,25062,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4637,11.0,24.8087,16.5,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 360,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25063,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.4,11.0,23.9,16.5,Standard Pickup Trucks 2WD,2008,-7750,,,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=390,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25064,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0126,12.11,24.3225,17.9175,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,FFV,E85,290,, +21.974,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=390/400,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25065,0,0,Ford,F150 STX SE 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7412,12.6774,25.6062,18.8796,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,FFV,E85,310/320,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25066,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,11.0,25.8,16.5,Standard Pickup Trucks 2WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25067,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25068,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3211,11.0,23.5653,16.5,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 360,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25069,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.3,11.0,22.3,16.5,Standard Pickup Trucks 4WD,2008,-7750,,,,,FFV,E85,290,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2507,0,0,Jeep,Comanche 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.0,0.0,Standard Pickup Trucks,1986,0,,SIL,,,,,,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,RNG=390,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25070,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8453,10.9651,23.7254,16.5426,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,FFV,E85,260,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25071,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Standard Pickup Trucks 4WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,GAS 380,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,25072,0,0,Chrysler,Town and Country/Voyager/Grand Voy. 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,22.9,Minivan - 2WD,2008,-2500,,CLKUP,,,FFV,E85,260,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,GAS 380,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,25073,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,22.9,Minivan - 2WD,2008,-2500,,CLKUP,,,FFV,E85,260,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25074,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,25075,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Sport Utility Vehicle - 2WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25076,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,11.0,23.4,16.5,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25077,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,11.0,23.4,16.5,Sport Utility Vehicle - 4WD,2008,-6250,,CLKUP,,,FFV,E85,240,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25078,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.5,0.0,43.4,0.0,Subcompact Cars,2008,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25079,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4,0.0,46.3,0.0,Subcompact Cars,2008,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2508,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25080,14,14,Chevrolet,Cobalt,N,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.9,0.0,43.1,0.0,Subcompact Cars,2008,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25081,0,11,Chrysler,Sebring Convertible,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8,0.0,35.6,0.0,Subcompact Cars,2008,-1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,25082,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,32.8206,0.0,50.9711,0.0,Subcompact Cars,2008,2500,,CLKUP,,,,,,, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,RNG=170,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,25083,0,6,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2008,6500,,CLKUP,,,CNG,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25084,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.7717,0.0,48.2789,0.0,Subcompact Cars,2008,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25085,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2008,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25086,15,0,Hyundai,Tiburon,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7378,0.0,38.1832,0.0,Subcompact Cars,2008,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25087,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,39.2,0.0,Subcompact Cars,2008,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25088,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2358,0.0,33.2499,0.0,Subcompact Cars,2008,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25089,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.5,0.0,34.1,0.0,Subcompact Cars,2008,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2509,0,0,Jeep,Comanche 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25090,15,0,Hyundai,Tiburon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,33.7,0.0,Subcompact Cars,2008,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25091,7,0,Infiniti,G37 Coupe,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.7,0.0,Subcompact Cars,2008,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25092,7,0,Infiniti,G37 Coupe,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.0771,0.0,34.1256,0.0,Subcompact Cars,2008,-3000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25093,0,11,Lexus,IS 250,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8997,0.0,36.8,0.0,Subcompact Cars,2008,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25094,0,11,Lexus,IS 250,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.7626,0.0,41.1041,0.0,Subcompact Cars,2008,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25095,0,11,Lexus,IS 250 AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5898,0.0,36.2901,0.0,Subcompact Cars,2008,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25096,0,11,Lexus,IS 350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4334,0.0,34.3402,0.0,Subcompact Cars,2008,-3000,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25097,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6486,0.0,26.9455,0.0,Subcompact Cars,2008,-8000,G,3MODE CLKUP FW,,,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,GAS 440,-1,2850,3050,Premium or E85,Premium Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,25098,0,12,Mercedes-Benz,C300,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.3,16.4,35.5,26.4,Compact Cars,2008,-2250,,EMS 2MODE CLKU,,,FFV,E85,320,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,25099,0,0,Lamborghini,Murcielago Reventon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2008,-15500,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,251,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1985,500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2510,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25100,10,0,Mercedes-Benz,SLR,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.2105,0.0,21.7982,0.0,Two Seaters,2008,-11250,G,EMS 2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25101,0,0,Porsche,911 GT2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.1,0.0,32.3,0.0,Two Seaters,2008,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25102,0,0,Shelby,Mustang GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3,0.0,30.2,0.0,Two Seaters,2008,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25103,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.8,0.0,Subcompact Cars,2008,-6750,G,EMS,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25104,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,34.1,0.0,Subcompact Cars,2008,-3000,,2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25105,13,0,Saleen Performance,S281 Family,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.5,0.0,24.7,0.0,Subcompact Cars,2008,-9500,G,,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25106,13,0,Saleen Performance,S281 Family,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.2,0.0,25.2,0.0,Subcompact Cars,2008,-9500,G,,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25107,0,12,Mercedes-Benz,C300 4matic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.8,0.0,34.4,0.0,Compact Cars,2008,-3000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25108,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,36.0,0.0,Compact Cars,2008,-2250,,2MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25109,0,16,Dodge,Challenger,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Midsize Cars,2008,-8000,G,CMODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2511,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25110,0,18,Chrysler,300/SRT-8,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2008,-8000,G,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25111,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Large Cars,2008,-8000,G,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25112,0,17,Pontiac,G8,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8235,0.0,32.8199,0.0,Large Cars,2008,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25113,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,34.1,0.0,Small Station Wagons,2008,-3000,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25114,0,19,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1781,0.0,31.4672,0.0,Small Station Wagons,2008,-3750,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25115,0,0,Saleen Performance,F150 Supercharged,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,21.0,0.0,Standard Pickup Trucks 2WD,2008,-11250,,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25116,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,32.4,0.0,Minivan - 2WD,2008,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25117,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,35.4,0.0,Minivan - 2WD,2008,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25118,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,39.2,0.0,Minivan - 2WD,2008,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25119,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),26.4,0.0,38.1,0.0,Minivan - 2WD,2008,0,,DC/FW,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2512,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Standard Pickup Trucks,1986,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25120,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25121,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25122,0,0,Chevrolet,Tahoe Hybrid 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25123,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,39.9,0.0,Sport Utility Vehicle - 2WD,2008,-500,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25124,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6996,0.0,40.5,0.0,Sport Utility Vehicle - 2WD,2008,500,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25125,0,0,Dodge,Magnum,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,25.3,0.0,Sport Utility Vehicle - 2WD,2008,-8000,,CMODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25126,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25127,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 2WD,2008,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25128,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,0.0,26.1,0.0,Sport Utility Vehicle - 2WD,2008,-9500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25129,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.6,0.0,34.9,0.0,Sport Utility Vehicle - 2WD,2008,-500,,VMODE VLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2513,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.8974,0.0,Standard Pickup Trucks,1986,0,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25130,0,0,Saturn,Vue Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,45.3,0.0,Sport Utility Vehicle - 2WD,2008,2250,,CLKUP,,,Hybrid,,,36V Ni-MH, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25131,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.9,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2008,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25132,0,0,GMC,Yukon 1500 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.9,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2008,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25133,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,34.5,0.0,Sport Utility Vehicle - 4WD,2008,-500,,VMODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25134,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.1,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25135,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.5,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2008,-11250,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25136,0,6,MINI,Cooper,Y,false,0,76,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.0,0.0,52.0,0.0,Minicompact Cars,2008,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25137,0,6,MINI,Cooper,Y,false,0,76,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9253,0.0,48.6268,0.0,Minicompact Cars,2008,1500,,3MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25138,0,6,MINI,Cooper S,Y,false,0,76,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7705,0.0,48.6557,0.0,Minicompact Cars,2008,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25139,0,6,MINI,Cooper S,Y,false,0,76,0,0.0,0.0,0.0,0.0,Automatic (S6),29.964,0.0,44.5393,0.0,Minicompact Cars,2008,750,,3MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2514,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25140,0,12,Audi,A5 quattro,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,35.8,0.0,Subcompact Cars,2008,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25142,0,12,Audi,A5 quattro,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,36.5,0.0,Subcompact Cars,2008,-2250,,3MODE CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25144,0,17,MINI,Clubman,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.0,0.0,51.9,0.0,Subcompact Cars,2008,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25145,0,17,MINI,Clubman,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9253,0.0,48.6268,0.0,Subcompact Cars,2008,1500,,3MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25146,0,17,MINI,Clubman S,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7705,0.0,48.6557,0.0,Subcompact Cars,2008,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25147,0,17,MINI,Clubman S,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic (S6),29.964,0.0,44.5393,0.0,Subcompact Cars,2008,750,,3MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25148,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2008,0,,CMODE VLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25149,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2008,0,,CMODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2515,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,0,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,25150,0,0,smart,fortwo convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),44.3,0.0,57.8,0.0,Two Seaters,2008,3500,,SIL 2MODE CLKUP,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,0,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,25151,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),44.3,0.0,57.8,0.0,Two Seaters,2008,3500,,SIL 2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25152,0,12,Audi,S5,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.0,0.0,Subcompact Cars,2008,-3750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25153,0,10,BMW,128i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Subcompact Cars,2008,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25154,0,10,BMW,128i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (S6),23.277,0.0,39.6485,0.0,Subcompact Cars,2008,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25155,0,8,BMW,128i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5585,0.0,38.8792,0.0,Subcompact Cars,2008,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25156,0,8,BMW,128i Convertible,Y,false,0,78,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5502,0.0,38.0979,0.0,Subcompact Cars,2008,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25157,0,10,BMW,135i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8,0.0,35.1,0.0,Subcompact Cars,2008,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25158,0,10,BMW,135i,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,35.8,0.0,Subcompact Cars,2008,-2250,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25159,0,8,BMW,135i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9933,0.0,35.9952,0.0,Subcompact Cars,2008,-3000,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2516,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25160,0,8,BMW,135i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7412,0.0,36.2321,0.0,Subcompact Cars,2008,-3000,,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25161,0,11,BMW,M3 Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2008,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25162,0,11,Lexus,IS F,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6214,0.0,32.0888,0.0,Subcompact Cars,2008,-4750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25163,0,12,BMW,M3,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Compact Cars,2008,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25164,0,7,Mitsubishi,Lancer Evolution,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.2,0.0,30.6,0.0,Compact Cars,2008,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25165,0,7,Mitsubishi,Lancer Evolution,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.0,0.0,Compact Cars,2008,-3750,,2MODE CLKUP,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25166,0,0,Saturn,Astra 2DR Hatchback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1,0.0,42.1,0.0,Compact Cars,2008,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25167,0,0,Saturn,Astra 2DR Hatchback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.1,0.0,Compact Cars,2008,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25168,0,0,Saturn,Astra 4DR Hatchback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1,0.0,42.1,0.0,Compact Cars,2008,1750,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25169,0,0,Saturn,Astra 4DR Hatchback,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.1,0.0,Compact Cars,2008,1750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2517,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25170,0,17,Pontiac,G8,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,34.6,0.0,Large Cars,2008,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25171,0,19,Infiniti,EX35,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6662,0.0,33.3535,0.0,Small Station Wagons,2008,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25172,0,19,Infiniti,EX35,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2,0.0,32.3795,0.0,Small Station Wagons,2008,-3750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25173,0,0,"Tecstar, LP",Foose F150 Regular Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25174,0,0,"Tecstar, LP",Foose F150 Super Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25175,0,0,"Tecstar, LP",Foose F150 Super Crew 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25176,0,0,"Tecstar, LP",Foose F150 Regular Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25177,0,0,"Tecstar, LP",Foose F150 Super Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,Sold at Ford dealerships,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25178,0,0,"Tecstar, LP",Foose F150 Super Crew 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,20.6,0.0,Standard Pickup Trucks 4WD,2008,-11250,,EMS CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25179,10,0,Jaguar,XJS Convertible,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Minicompact Cars,1995,-4750,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2518,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25180,0,17,Buick,LeSabre,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,38.0,0.0,Large Cars,1996,-1750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25181,0,9,BMW,M3 Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2008,-6750,G,6MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25182,0,9,BMW,M3 Convertible,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,26.7,0.0,Subcompact Cars,2008,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25183,0,11,BMW,M3 Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S7),17.1163,0.0,27.8771,0.0,Subcompact Cars,2008,-6750,G,6MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25184,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1,0.0,41.9,0.0,Subcompact Cars,2008,0,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,25185,0,0,Chevrolet,Cobalt XFE,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.4657,0.0,50.3279,0.0,Subcompact Cars,2008,2500,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25186,0,0,Pontiac,G5 XFE,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,49.8,0.0,Subcompact Cars,2008,2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25187,0,12,BMW,M3,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),17.1163,0.0,27.8771,0.0,Compact Cars,2008,-6750,G,6MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25189,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S7),15.2,0.0,26.7,0.0,Compact Cars,2008,-8000,G,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4855,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2519,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25190,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1464,0.0,33.2695,0.0,Compact Cars,2008,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25191,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,34.1,0.0,Compact Cars,2008,-3750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25192,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4,0.0,45.2,0.0,Midsize Cars,2008,1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25193,0,30,Saab,9-3 Aero SportCombi AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1464,0.0,33.2695,0.0,Small Station Wagons,2008,-4750,,2MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25194,0,30,Saab,9-3 Aero SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,34.1,0.0,Small Station Wagons,2008,-3750,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25195,0,0,Saleen Performance,S331 Family,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.6,0.0,20.6,0.0,Standard Pickup Trucks 2WD,2008,-11250,,,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25196,0,26,BMW,X6 xDrive35i,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2008,-5750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25197,0,26,BMW,X6 xDrive50i,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),15.7,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2008,-8000,,3MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25198,0,0,Aston Martin,DBS Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,22.9,0.0,Two Seaters,2009,-11250,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25199,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1619,0.0,39.0337,0.0,Two Seaters,2009,-500,,3MODE,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,252,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1985,-3000,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4952,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2520,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25200,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2499,0.0,34.3493,0.0,Two Seaters,2009,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25201,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2009,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25202,7,0,Mercedes-Benz,SL550,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.5,0.0,29.3,0.0,Two Seaters,2009,-6750,G,EMS 2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25203,7,0,Mercedes-Benz,SL600,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,24.2,0.0,Two Seaters,2009,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25204,7,0,Mercedes-Benz,SL63 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.6,0.0,26.0,0.0,Two Seaters,2009,-9500,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25205,7,0,Mercedes-Benz,SL65 AMG,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.1,0.0,24.6,0.0,Two Seaters,2009,-9500,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25206,7,0,Mercedes-Benz,SLK300,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,35.9,0.0,Two Seaters,2009,-3000,,EMS,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25207,7,0,Mercedes-Benz,SLK300,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3,0.0,36.2,0.0,Two Seaters,2009,-2250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25208,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2,0.0,36.3,0.0,Two Seaters,2009,-2250,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25209,7,0,Mercedes-Benz,SLK350,N,false,49,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,36.1,0.0,Two Seaters,2009,-2250,,EMS,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2521,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25210,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.8,0.0,23.7,0.0,Minicompact Cars,2009,-11250,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25211,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,26.7,0.0,Minicompact Cars,2009,-9500,G,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25212,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2009,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25213,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,34.5,0.0,Minicompact Cars,2009,-3750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25214,10,0,Jaguar,XKR,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2009,-4750,,3MODE CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25215,10,0,Jaguar,XKR Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,31.5,0.0,Minicompact Cars,2009,-4750,,3MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25216,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,34.6,0.0,Minicompact Cars,2009,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25217,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1499,0.0,33.2499,0.0,Minicompact Cars,2009,-3750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25218,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.229,0.0,36.9829,0.0,Minicompact Cars,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25219,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.2157,0.0,36.2707,0.0,Minicompact Cars,2009,-500,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2522,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-7750,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25220,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.259,0.0,39.1308,0.0,Minicompact Cars,2009,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25221,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8494,0.0,39.7251,0.0,Minicompact Cars,2009,0,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,25222,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1619,0.0,39.0337,0.0,Subcompact Cars,2009,-500,,3MODE,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,25223,0,0,Chevrolet,Aveo 5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2009,2250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25224,0,8,Mazda,RX-8,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2009,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25225,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2,0.0,32.1,0.0,Subcompact Cars,2009,-3750,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,16,82,25226,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,34.6,0.0,Subcompact Cars,2009,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,82,25227,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1499,0.0,33.2499,0.0,Subcompact Cars,2009,-3750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,82,25228,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.2132,0.0,36.2744,0.0,Subcompact Cars,2009,-500,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,82,25229,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1471,0.0,38.6206,0.0,Subcompact Cars,2009,0,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2523,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,25230,0,0,Pontiac,G3 Wave 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2009,2250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,25231,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,38.2,0.0,Subcompact Cars,2009,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,85,25232,0,0,Scion,tC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.2,0.0,Subcompact Cars,2009,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,25233,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0356,0.0,39.3363,0.0,Subcompact Cars,2009,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,25234,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1672,0.0,40.8,0.0,Subcompact Cars,2009,0,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25235,0,13,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.9,0.0,39.3,0.0,Compact Cars,2009,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25236,0,13,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1,0.0,42.3,0.0,Compact Cars,2009,0,,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25237,8,0,Bentley,Azure,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.5028,0.0,21.0609,0.0,Compact Cars,2009,-15500,G,3MODE CLKUP,T,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,25238,11,0,Bentley,Brooklands,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (S6),11.7,0.0,19.9,0.0,Compact Cars,2009,-15500,G,3MODE CLKUP,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25239,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Compact Cars,2009,2250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2524,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25240,0,13,Mercedes-Benz,CLS550,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,29.0,0.0,Compact Cars,2009,-6750,G,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25241,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.5,0.0,37.6,0.0,Compact Cars,2009,0,,VMODE VLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25242,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.8,0.0,Compact Cars,2009,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25243,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.6669,0.0,39.7932,0.0,Compact Cars,2009,500,,VMODE VLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,DOHC,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25244,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8024,0.0,41.5258,0.0,Compact Cars,2009,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25245,0,12,Pontiac,G3 Wave,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Compact Cars,2009,2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25246,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,33.7,0.0,Compact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25247,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1443,0.0,33.2396,0.0,Compact Cars,2009,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25248,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6249,0.0,33.5704,0.0,Compact Cars,2009,-3000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25249,0,11,Subaru,Legacy AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9906,0.0,34.1764,0.0,Compact Cars,2009,-2250,,,T,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2525,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25250,0,11,Subaru,Legacy AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7947,0.0,37.0519,0.0,Compact Cars,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25251,0,11,Subaru,Legacy AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0487,0.0,36.5784,0.0,Compact Cars,2009,-500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25252,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,42.2,0.0,Compact Cars,2009,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25253,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),27.6,0.0,42.6,0.0,Compact Cars,2009,1000,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25254,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.0,0.0,49.3,0.0,Compact Cars,2009,2750,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25255,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Compact Cars,2009,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,94,25256,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0737,0.0,41.4298,0.0,Compact Cars,2009,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,25257,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3522,0.0,40.3742,0.0,Compact Cars,2009,0,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25258,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2843,0.0,39.2832,0.0,Compact Cars,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25259,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),24.9704,0.0,38.6874,0.0,Compact Cars,2009,500,,3MODE CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2526,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5500,,Creeper,,,Diesel,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25260,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0737,0.0,41.4298,0.0,Compact Cars,2009,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25261,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3522,0.0,40.3742,0.0,Compact Cars,2009,0,,3MODE,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,25262,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),38.5034,0.0,56.6944,0.0,Compact Cars,2009,3000,,3MODE CLKUP,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,25263,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.6,0.0,58.1,0.0,Compact Cars,2009,3250,,,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,94,25264,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6169,0.0,39.4885,0.0,Compact Cars,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,94,25265,0,0,Volkswagen,Rabbit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.9704,0.0,38.6874,0.0,Compact Cars,2009,500,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25266,0,13,Acura,RL,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,30.9,0.0,Midsize Cars,2009,-4750,,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,25267,0,13,Bentley,Arnage,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),11.7,0.0,19.9,0.0,Midsize Cars,2009,-15500,G,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25268,0,18,Jaguar,XF,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,34.5,0.0,Midsize Cars,2009,-3750,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25269,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.8,0.0,44.6,0.0,Midsize Cars,2009,1000,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2527,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25270,0,14,Kia,Optima,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,44.6,0.0,Midsize Cars,2009,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,25271,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5796,0.0,42.3865,0.0,Midsize Cars,2009,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,98,25272,0,12,Kia,Spectra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2265,0.0,44.5381,0.0,Midsize Cars,2009,1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25273,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.4316,0.0,34.5708,0.0,Midsize Cars,2009,-3750,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,SOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25274,0,13,Mitsubishi,Galant,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S4),25.3617,0.0,38.1231,0.0,Midsize Cars,2009,0,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25275,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.8,0.0,Midsize Cars,2009,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25276,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.2554,0.0,44.0337,0.0,Midsize Cars,2009,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25277,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.1,0.0,Midsize Cars,2009,1000,,,,,,,,, +9.690534,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25278,0,11,Toyota,Camry Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.2454,0.0,48.2,0.0,Midsize Cars,2009,4000,,VMODE VLKUP,,,Hybrid,,,245V Ni-MH, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25279,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,39.0,0.0,Midsize Cars,2009,-1000,,3MODE CLKUP,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2528,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,19.0,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25281,0,13,Bentley,Arnage RL,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S6),11.5028,0.0,21.0609,0.0,Large Cars,2009,-15500,G,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25282,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,35.6,0.0,Large Cars,2009,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25283,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,36.2,0.0,Large Cars,2009,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25284,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.9,0.0,38.3,0.0,Large Cars,2009,-1000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25285,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,34.2,0.0,Large Cars,2009,-3750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25286,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.1,0.0,40.1,0.0,Large Cars,2009,-500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25287,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.5,0.0,44.4,0.0,Large Cars,2009,1000,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25288,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8492,0.0,44.8,0.0,Large Cars,2009,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25289,0,15,Jaguar,Super V8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2009,-4750,,2MODE CLKUP,,S,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2529,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25290,0,15,Jaguar,Vdp,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0499,0.0,34.3499,0.0,Large Cars,2009,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25291,0,16,Jaguar,XJ,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2009,-3750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25292,0,15,Jaguar,XJ8L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3499,0.0,34.4482,0.0,Large Cars,2009,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25293,0,16,Jaguar,XJR,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7499,0.0,30.4,0.0,Large Cars,2009,-4750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25294,0,16,Kia,Amanti,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,33.8,0.0,Large Cars,2009,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25295,0,18,Lincoln,MKS AWD,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3377,0.0,31.3651,0.0,Large Cars,2009,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25296,0,18,Lincoln,MKS FWD,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8468,0.0,33.0246,0.0,Large Cars,2009,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25297,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2484,0.0,40.8595,0.0,Small Station Wagons,2009,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25298,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1248,0.0,38.9863,0.0,Small Station Wagons,2009,-500,,3MODE,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25299,0,20,Audi,A3 quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.2,0.0,37.1,0.0,Small Station Wagons,2009,-500,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,253,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Compact Cars,1985,-2250,,,T,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2530,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-6500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25300,0,20,Pontiac,Vibe,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3296,0.0,35.5877,0.0,Small Station Wagons,2009,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25301,0,20,Pontiac,Vibe,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,38.6,0.0,Small Station Wagons,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25302,0,20,Pontiac,Vibe,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),27.0,0.0,40.0,0.0,Small Station Wagons,2009,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25303,0,20,Pontiac,Vibe,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,43.7,0.0,Small Station Wagons,2009,2250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25304,0,20,Pontiac,Vibe,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,44.8,0.0,Small Station Wagons,2009,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25305,0,20,Toyota,Matrix,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.49,0.0,36.1596,0.0,Small Station Wagons,2009,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25306,0,20,Toyota,Matrix,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2419,0.0,38.942,0.0,Small Station Wagons,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25307,0,20,Toyota,Matrix,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),27.0768,0.0,40.222,0.0,Small Station Wagons,2009,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25308,0,20,Toyota,Matrix,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7182,0.0,43.629,0.0,Small Station Wagons,2009,2250,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25309,0,20,Toyota,Matrix,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5697,0.0,44.7392,0.0,Small Station Wagons,2009,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2531,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Standard Pickup Trucks,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25310,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25311,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2009,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25312,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2843,0.0,39.2832,0.0,Small Station Wagons,2009,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25313,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),24.9704,0.0,38.6874,0.0,Small Station Wagons,2009,500,,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25314,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0737,0.0,41.4298,0.0,Small Station Wagons,2009,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25315,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3522,0.0,40.3742,0.0,Small Station Wagons,2009,0,,3MODE,T,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1800,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,25316,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),38.5034,0.0,56.6944,0.0,Small Station Wagons,2009,3000,,3MODE CLKUP,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1750,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,25317,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.6,0.0,58.1,0.0,Small Station Wagons,2009,3250,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25318,0,36,Volkswagen,Passat Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,38.5,0.0,Midsize Station Wagons,2009,-1750,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2532,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25320,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4439,0.0,23.9989,0.0,Standard Pickup Trucks 2WD,2009,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25321,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.848,0.0,23.0589,0.0,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25322,0,0,Hyundai,Entourage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25323,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,31.5,0.0,Minivan - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25324,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2883,0.0,33.5926,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25325,0,0,Ford,Flex FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25326,0,23,Hyundai,Tucson 2WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.2,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25327,0,23,Hyundai,Tucson 2WD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2009,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25328,0,23,Hyundai,Tucson 2WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.2483,0.0,Sport Utility Vehicle - 2WD,2009,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25329,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2009,-9500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2533,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25330,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,29.5,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25331,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.9,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25332,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25333,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25334,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2009,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25335,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2009,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25336,0,0,Lexus,RX 350 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2009,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25337,0,0,Lexus,RX 350 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2009,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25338,0,0,Mazda,CX-7 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2009,-3000,,DC/FW,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25339,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2199,0.0,25.0138,0.0,Sport Utility Vehicle - 2WD,2009,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2534,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25340,0,0,Nissan,Murano FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.7,0.0,32.6,0.0,Sport Utility Vehicle - 2WD,2009,-3000,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25341,0,0,Pontiac,Torrent FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2883,0.0,33.5926,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25342,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.2,0.0,Sport Utility Vehicle - 2WD,2009,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25343,0,0,Volkswagen,Tiguan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2009,-2250,,3MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25344,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25345,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25346,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2891,0.0,30.0878,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25347,0,23,Hyundai,Tucson 4WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.5,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25348,0,23,Hyundai,Tucson 4WD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25349,0,0,Infiniti,QX56 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2535,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25350,0,0,Kia,Borrego 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,29.2986,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25351,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25352,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7,0.0,28.2,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25353,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25354,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25355,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,6MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25356,0,0,Lexus,RX 350 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2009,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25357,0,0,Lexus,RX 350 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2009,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25358,0,0,Mazda,CX-7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2009,-4750,,DC/FW,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25359,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0931,0.0,24.2308,0.0,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2536,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,30.0,0.0,Standard Pickup Trucks,1986,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25360,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.1834,0.0,31.6296,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,VMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25361,0,0,Pontiac,Torrent AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25362,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.9267,0.0,33.0743,0.0,Sport Utility Vehicle - 4WD,2009,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25363,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7947,0.0,37.0519,0.0,Sport Utility Vehicle - 4WD,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25364,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0487,0.0,36.5784,0.0,Sport Utility Vehicle - 4WD,2009,-500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25365,0,0,Subaru,Outback Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25366,0,0,Subaru,Outback Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1443,0.0,33.2396,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25367,0,0,Subaru,Outback Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6249,0.0,33.5704,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25368,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7947,0.0,37.0519,0.0,Sport Utility Vehicle - 4WD,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25369,0,0,Subaru,Outback Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0487,0.0,36.5784,0.0,Sport Utility Vehicle - 4WD,2009,-500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2537,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25370,0,0,Subaru,Tribeca AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.8,0.0,29.4,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25371,0,0,Volkswagen,Tiguan 4motion,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4494,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,3MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25372,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.7,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,3MODE CLKUP,,,,,,, +23.534154,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG390/520,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25373,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3909,11.4247,24.2318,18.0118,Standard Pickup Trucks 2WD,2009,-7750,,CLKUP,,,FFV,E85,310/410,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,RNG390/520,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25374,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9169,10.9843,23.1763,17.189,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,FFV,E85,280/370,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,RNG390,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25375,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2224,11.2745,25.0331,18.3306,Sport Utility Vehicle - 2WD,2009,-7750,,CLKUP,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25376,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2748,11.0168,24.9172,18.1997,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,280,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25377,0,0,Dodge,Journey 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,35.0,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25378,0,0,Dodge,Journey 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.4,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25379,0,0,Dodge,Journey 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2538,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25380,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9375,0.0,26.855,0.0,Two Seaters,2009,-8000,G,4MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25381,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.0,0.0,25.6,0.0,Two Seaters,2009,-9500,G,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25382,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.3,0.0,26.8,0.0,Two Seaters,2009,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25383,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4,0.0,25.0451,0.0,Two Seaters,2009,-8000,G,3MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25384,0,0,Audi,TT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,42.2,0.0,Two Seaters,2009,0,,3MODE,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25385,0,0,Cadillac,XLR-V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0,0.0,32.3,0.0,Two Seaters,2009,-5750,G,CLKUP,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25386,0,0,Cadillac,XLR,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.1,0.0,Two Seaters,2009,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25387,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,33.7,0.0,Two Seaters,2009,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25388,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.8,0.0,27.0,0.0,Two Seaters,2009,-6750,G,,,S,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,25389,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.5,0.0,Two Seaters,2009,-18250,G,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2539,0,0,Nissan,Truck 4WD (new Version),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,25390,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2009,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,25391,0,0,Lamborghini,Murcielago Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,10.1,0.0,17.5,0.0,Two Seaters,2009,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,4-Wheel or All-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,25392,0,0,Lamborghini,Murcielago Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),10.9,0.0,19.9,0.0,Two Seaters,2009,-15500,G,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25393,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3,0.0,37.0545,0.0,Two Seaters,2009,-1000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25394,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7209,0.0,32.8754,0.0,Two Seaters,2009,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25395,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.2,0.0,Two Seaters,2009,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25396,0,0,Pontiac,Solstice,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,40.0,0.0,Two Seaters,2009,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25397,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.3,0.0,37.0545,0.0,Two Seaters,2009,-1000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25398,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7209,0.0,32.8754,0.0,Two Seaters,2009,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25399,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.7,0.0,35.2,0.0,Two Seaters,2009,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,254,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38084,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2540,0,0,Nissan,Truck 4WD (new Version),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25400,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.3,0.0,40.0,0.0,Two Seaters,2009,-1750,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25401,0,6,MINI,John Cooper Works,N,false,0,76,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4602,0.0,48.2339,0.0,Minicompact Cars,2009,1500,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25402,0,7,MINI,John Cooper Works Convertible,Y,false,0,70,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4602,0.0,48.2339,0.0,Minicompact Cars,2009,1500,,,T,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25403,12,0,Audi,A5 quattro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,35.8,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25404,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0916,0.0,36.1369,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,74,25405,0,0,Audi,TT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.1,0.0,43.6,0.0,Subcompact Cars,2009,500,,3MODE,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25406,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5188,0.0,23.259,0.0,Subcompact Cars,2009,-13250,G,3MODE CLKUP,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,25407,0,0,Chevrolet,Aveo 5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.6,0.0,48.4,0.0,Subcompact Cars,2009,2750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25408,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8571,0.0,41.4543,0.0,Subcompact Cars,2009,1000,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25409,14,14,Chevrolet,Cobalt,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2009,1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,2944,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2541,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1986,-7750,,Creeper,,,,,,, +10.987,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25410,14,14,Chevrolet,Cobalt XFE,Y,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2009,2750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25411,13,0,Ford,Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0177,0.0,35.701,0.0,Subcompact Cars,2009,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25412,13,0,Ford,Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4019,0.0,33.1455,0.0,Subcompact Cars,2009,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25413,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8917,0.0,29.8677,0.0,Subcompact Cars,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25414,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.9,0.0,31.7,0.0,Subcompact Cars,2009,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25415,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9089,0.0,27.3699,0.0,Subcompact Cars,2009,-6750,G,SIL,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25416,0,6,Maserati,GranTurismo,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6486,0.0,26.9455,0.0,Subcompact Cars,2009,-8000,G,2MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25417,0,17,MINI,John Cooper Works Clubman,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4602,0.0,48.2339,0.0,Subcompact Cars,2009,1500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25418,9,0,Nissan,GT-R,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7992,0.0,29.3353,0.0,Subcompact Cars,2009,-4750,,EMS,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,25419,0,0,Pontiac,G3 Wave 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.6,0.0,48.4,0.0,Subcompact Cars,2009,2750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2542,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25420,14,14,Pontiac,G5,N,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2009,2500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25421,14,14,Pontiac,G5,Y,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2009,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25422,14,0,Pontiac,G5 GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2009,2500,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25423,14,0,Pontiac,G5 GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2009,1500,,CLKUP,,,,,,, +10.987,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25424,14,0,Pontiac,G5 XFE,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2009,2750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25425,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.8,0.0,Subcompact Cars,2009,-6750,G,EMS,,S,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25426,13,0,Roush Performance,Stage 3 Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.1,0.0,Subcompact Cars,2009,-5750,G,EMS,,S,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25427,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0737,0.0,41.4298,0.0,Subcompact Cars,2009,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25428,11,0,Volkswagen,Eos,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3,0.0,41.7,0.0,Subcompact Cars,2009,0,,3MODE,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25429,13,0,Volvo,C70 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1,0.0,37.1,0.0,Subcompact Cars,2009,-1000,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2543,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25430,13,0,Volvo,C70 Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.0,0.0,36.5,0.0,Subcompact Cars,2009,-1000,,2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25431,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0916,0.0,36.1369,0.0,Compact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25432,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.8,0.0,23.8,0.0,Compact Cars,2009,-11250,G,3MODE CLKUP,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25433,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.6,0.0,48.4,0.0,Compact Cars,2009,2750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,25434,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.3,0.0,46.1,0.0,Compact Cars,2009,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,92,25435,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.1,0.0,49.5,0.0,Compact Cars,2009,2500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,25436,0,11,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3113,0.0,41.1816,0.0,Compact Cars,2009,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,95,25437,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.6239,0.0,39.8231,0.0,Compact Cars,2009,500,,DC/FW,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,95,25438,0,11,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0221,0.0,44.655,0.0,Compact Cars,2009,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,95,25439,0,11,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),28.5434,0.0,42.5117,0.0,Compact Cars,2009,1000,,DC/FW,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2544,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,20.0,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25440,0,13,Mercedes-Benz,CLS63 AMG,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),14.7485,0.0,24.7984,0.0,Compact Cars,2009,-9500,G,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25441,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,34.9,0.0,Compact Cars,2009,-3000,,2MODE CLKUP,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25442,0,12,Pontiac,G3 Wave,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.6,0.0,48.4,0.0,Compact Cars,2009,2750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25443,13,14,Pontiac,G6,N,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,0.0,46.8,0.0,Compact Cars,2009,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25444,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,42.6,0.0,Compact Cars,2009,1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25445,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S4),21.5,0.0,36.4,0.0,Compact Cars,2009,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25446,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Compact Cars,2009,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25447,13,14,Pontiac,G6,N,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Compact Cars,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25448,13,14,Pontiac,G6,N,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,31.0,0.0,Compact Cars,2009,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25449,0,11,Rolls-Royce,Phantom Coupe,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2009,-9500,G,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2545,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-11000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25450,0,11,Rolls-Royce,Phantom Drophead Coupe,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2009,-9500,G,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,89,25451,0,0,Saturn,Astra 2DR Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.1,0.0,Compact Cars,2009,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,89,25452,0,0,Saturn,Astra 2DR Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1,0.0,42.1,0.0,Compact Cars,2009,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,25453,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Compact Cars,2009,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,25454,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.4014,0.0,39.3024,0.0,Compact Cars,2009,0,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,25455,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8025,0.0,38.6039,0.0,Compact Cars,2009,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,89,25456,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.799,0.0,39.1979,0.0,Compact Cars,2009,0,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25457,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.5,0.0,Compact Cars,2009,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25458,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1514,0.0,36.4702,0.0,Compact Cars,2009,-1000,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25459,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Compact Cars,2009,0,,,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,2546,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Standard Pickup Trucks,1986,-15500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25460,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.4014,0.0,39.3024,0.0,Compact Cars,2009,0,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25461,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8025,0.0,38.6039,0.0,Compact Cars,2009,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25462,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.2,0.0,Compact Cars,2009,500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25463,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.8994,0.0,36.5421,0.0,Compact Cars,2009,-1000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25464,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1514,0.0,36.4702,0.0,Compact Cars,2009,-1000,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25465,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1843,0.0,36.4603,0.0,Compact Cars,2009,-1000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25466,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,37.6,0.0,Compact Cars,2009,-500,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25467,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.4014,0.0,39.3024,0.0,Compact Cars,2009,0,,2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25468,0,13,Bentley,Continental Flying Spur,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5188,0.0,23.259,0.0,Midsize Cars,2009,-13250,G,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25469,0,16,Buick,Lacrosse/Allure,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,38.6,0.0,Midsize Cars,2009,-1000,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2547,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25470,0,16,Buick,Lacrosse/Allure,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Midsize Cars,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,DI,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25471,0,14,Cadillac,CTS,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),21.465,0.0,36.8354,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,255HP,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25472,0,14,Cadillac,CTS,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,36.9,0.0,Midsize Cars,2009,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,DI,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25473,0,14,Cadillac,CTS,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,35.3,0.0,Midsize Cars,2009,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,255HP,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25474,0,14,Cadillac,CTS,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.5,0.0,Midsize Cars,2009,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,DI,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25475,0,14,Cadillac,CTS AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.7,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,255HP,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25476,0,14,Cadillac,CTS AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,35.0,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25477,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.1,0.0,Midsize Cars,2009,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,DI,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25478,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.465,0.0,36.8354,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25479,0,14,Cadillac,STS-V,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,26.9,0.0,Midsize Cars,2009,-8000,G,CLKUP,,S,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2548,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,DI,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25480,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.7,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25481,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,30.3,0.0,Midsize Cars,2009,-5750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25482,0,15,Chevrolet,Malibu,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,0.0,46.8,0.0,Midsize Cars,2009,1500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25483,0,15,Chevrolet,Malibu,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,42.6,0.0,Midsize Cars,2009,1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25484,0,15,Chevrolet,Malibu,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Midsize Cars,2009,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25485,0,15,Chevrolet,Malibu,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25486,0,15,Chevrolet,Malibu Hybrid,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.2,0.0,48.1,0.0,Midsize Cars,2009,2500,,CLKUP,,,Hybrid,,,36V Ni-MH, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25487,0,16,Ford,Fusion AWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9413,0.0,34.4146,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25488,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2009,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25489,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.815,0.0,39.6041,0.0,Midsize Cars,2009,0,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2549,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25490,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2009,-1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25491,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.9,0.0,Midsize Cars,2009,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25492,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.6342,0.0,46.0764,0.0,Midsize Cars,2009,2250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25493,0,18,Jaguar,XF Supercharged,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0,0.0,31.9,0.0,Midsize Cars,2009,-5750,,3MODE CLKUP,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25494,0,16,Mercury,Milan AWD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9413,0.0,34.4146,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25495,0,16,Mercury,Milan,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,40.3,0.0,Midsize Cars,2009,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25496,0,16,Mercury,Milan,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.815,0.0,39.6041,0.0,Midsize Cars,2009,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25497,0,16,Mercury,Milan,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,36.1,0.0,Midsize Cars,2009,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25498,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.2,0.0,Midsize Cars,2009,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25499,0,16,Lincoln,MKZ FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,38.5,0.0,Midsize Cars,2009,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,255,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Compact Cars,1985,500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,2550,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Standard Pickup Trucks,1986,-15500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25500,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.4472,0.0,40.1842,0.0,Midsize Cars,2009,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25501,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),27.0769,0.0,41.6313,0.0,Midsize Cars,2009,500,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25502,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5603,0.0,34.4497,0.0,Midsize Cars,2009,-1750,,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,20,95,25503,0,0,Mazda,Speed 3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,35.2732,0.0,Midsize Cars,2009,-3000,,,T,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25504,0,14,Mercedes-Benz,E320 Bluetec,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,29.1,0.0,45.2991,0.0,Midsize Cars,2009,500,,EMS 2MODE CLKUP,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25505,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.3176,0.0,36.4577,0.0,Midsize Cars,2009,-1750,,VMODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,95,25506,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.0707,0.0,44.1413,0.0,Midsize Cars,2009,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,25507,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.4493,0.0,46.2499,0.0,Midsize Cars,2009,2500,,VMODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,95,25508,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.748,0.0,44.6913,0.0,Midsize Cars,2009,1750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25509,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2009,-9500,G,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2551,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,92,25510,0,0,Saturn,Astra 4DR Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1,0.0,42.1,0.0,Midsize Cars,2009,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,92,25511,0,0,Saturn,Astra 4DR Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,45.1,0.0,Midsize Cars,2009,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25512,0,16,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,0.0,46.8,0.0,Midsize Cars,2009,1500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25513,0,16,Saturn,Aura,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25514,0,16,Saturn,Aura Hybrid,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.2,0.0,48.1,0.0,Midsize Cars,2009,2500,,CLKUP,,,Hybrid,,,36V Ni-MH, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25515,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0408,0.0,32.1293,0.0,Midsize Cars,2009,-3250,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25516,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7027,0.0,30.8105,0.0,Midsize Cars,2009,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25517,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5767,0.0,35.4373,0.0,Midsize Cars,2009,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25518,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,36.6,0.0,Large Cars,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25519,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2009,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3751,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2552,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25520,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,300HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25521,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2009,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25522,0,0,Cadillac,Funeral Coach / Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.7,0.0,Large Cars,2009,-7750,G,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,0,275HP,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25523,0,0,Cadillac,Limousine,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,0.0,25.1,0.0,Large Cars,2009,-7750,G,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25524,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Large Cars,2009,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25525,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.2,0.0,34.1,0.0,Large Cars,2009,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25526,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.3993,0.0,24.1499,0.0,Large Cars,2009,-9500,G,SIL 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25527,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.8,0.0,24.0,0.0,Large Cars,2009,-11250,G,EMS 2MODE CLKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25528,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S7),13.8,0.0,24.0,0.0,Large Cars,2009,-11250,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25529,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S5),13.5,0.0,23.1,0.0,Large Cars,2009,-11250,G,EMS 2MODE CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3750,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2553,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25530,0,17,Pontiac,G8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S5),21.4,0.0,34.6,0.0,Large Cars,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25531,0,17,Pontiac,G8,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,32.9,0.0,Large Cars,2009,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25532,0,14,Rolls-Royce,Phantom EWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2009,-9500,G,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25533,0,28,Hyundai,Elantra Touring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,43.5,0.0,Small Station Wagons,2009,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25534,0,28,Hyundai,Elantra Touring,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9,0.0,42.6,0.0,Small Station Wagons,2009,1500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25535,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.5,0.0,Small Station Wagons,2009,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25536,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1514,0.0,36.4702,0.0,Small Station Wagons,2009,-1000,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25537,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,39.5,0.0,Small Station Wagons,2009,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25538,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),24.4014,0.0,39.3024,0.0,Small Station Wagons,2009,0,,2MODE CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25539,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8025,0.0,38.6039,0.0,Small Station Wagons,2009,0,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3752,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2554,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25540,0,32,Volvo,V50 FWD,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.2,0.0,Small Station Wagons,2009,500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25541,0,32,Kia,Rondo,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7573,0.0,37.0711,0.0,Midsize Station Wagons,2009,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25542,0,32,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,35.9,0.0,Midsize Station Wagons,2009,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25543,0,37,Volvo,V70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5767,0.0,35.4373,0.0,Midsize Station Wagons,2009,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25544,0,0,Chevrolet,Colorado 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7871,0.0,32.7122,0.0,Small Pickup Trucks 2WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25545,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.978,0.0,31.7078,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25546,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6466,0.0,33.5791,0.0,Small Pickup Trucks 2WD,2009,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25547,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.8,0.0,Small Pickup Trucks 2WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25548,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25549,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,33.8,0.0,Small Pickup Trucks 2WD,2009,-1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2555,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25550,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7819,0.0,32.7174,0.0,Small Pickup Trucks 2WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25551,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9624,0.0,31.6984,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25552,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.6199,0.0,33.6188,0.0,Small Pickup Trucks 2WD,2009,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25553,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,27.4,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25554,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,32.8,0.0,Small Pickup Trucks 2WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25555,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25556,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,33.8,0.0,Small Pickup Trucks 2WD,2009,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25557,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6218,0.0,36.25,0.0,Small Pickup Trucks 2WD,2009,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25558,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9737,0.0,35.414,0.0,Small Pickup Trucks 2WD,2009,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25559,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6,0.0,26.7,0.0,Small Pickup Trucks 2WD,2009,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2556,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25560,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,29.2,0.0,Small Pickup Trucks 2WD,2009,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25561,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,31.9,0.0,Small Pickup Trucks 4WD,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25562,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5073,0.0,30.8655,0.0,Small Pickup Trucks 4WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25563,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,32.7,0.0,Small Pickup Trucks 4WD,2009,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25564,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,27.4,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25565,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.4,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25566,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.4,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25567,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9,0.0,31.9,0.0,Small Pickup Trucks 4WD,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25568,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3247,0.0,30.6002,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25569,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,32.7,0.0,Small Pickup Trucks 4WD,2009,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3853,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2557,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25570,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.4,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25571,0,0,GMC,Canyon Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5,0.0,29.4,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25572,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,30.3,0.0,Small Pickup Trucks 4WD,2009,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25573,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8,0.0,25.7,0.0,Small Pickup Trucks 4WD,2009,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25574,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.3,0.0,Small Pickup Trucks 4WD,2009,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25575,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9878,0.0,27.4704,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25576,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9742,0.0,27.3352,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25577,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25578,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Standard Pickup Trucks 2WD,2009,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25579,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9866,0.0,27.4654,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2558,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.6667,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25580,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9748,0.0,27.3354,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25581,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,0.0,27.4,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25582,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Standard Pickup Trucks 2WD,2009,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25583,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9134,0.0,26.9909,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25584,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8126,0.0,27.0046,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25585,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.6766,0.0,26.8829,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25586,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Standard Pickup Trucks 4WD,2009,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25587,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8909,0.0,26.9503,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25588,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8099,0.0,26.9956,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25589,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.7095,0.0,27.0054,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3752,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2559,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25590,0,0,GMC,Sierra 15 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Standard Pickup Trucks 4WD,2009,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25591,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2009,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25592,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25593,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0709,0.0,21.8212,0.0,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25594,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,39.2,0.0,Minivan - 2WD,2009,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25595,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),26.4,0.0,38.1,0.0,Minivan - 2WD,2009,0,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25596,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4,0.0,34.0,0.0,Minivan - 2WD,2009,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25597,0,0,Toyota,Sienna 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.2,0.0,Minivan - 4WD,2009,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25598,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25599,0,0,Cadillac,Escalade Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,256,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2560,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25600,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.5,0.0,28.3,0.0,Sport Utility Vehicle - 2WD,2009,-6750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25601,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.5,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25602,0,0,Chevrolet,Avalanche 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25603,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.3455,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25604,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25605,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.3455,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25606,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25607,0,0,Chevrolet,Tahoe Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25608,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25609,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,40.5,0.0,Sport Utility Vehicle - 2WD,2009,500,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3853,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2561,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25610,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,40.2,0.0,Sport Utility Vehicle - 2WD,2009,0,,CLKUP,T,,,,,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,25611,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.8,42.2171,30.6086,Sport Utility Vehicle - 2WD,2009,1000,,CLKUP,,,FFV,E85,290,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25612,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,40.5,0.0,Sport Utility Vehicle - 2WD,2009,500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25613,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,40.2,0.0,Sport Utility Vehicle - 2WD,2009,0,,CLKUP,T,,,,,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,25614,0,0,Chevrolet,HHR Panel FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.8,42.2171,30.6086,Sport Utility Vehicle - 2WD,2009,1000,,CLKUP,,,FFV,E85,290,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25615,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25616,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.5,0.0,Sport Utility Vehicle - 2WD,2009,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25617,0,0,Chevrolet,TrailBlazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.1,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25618,0,0,Chevrolet,Traverse FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25619,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2009,500,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3950,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2562,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25620,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.9,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25621,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25622,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,43.1,0.0,Sport Utility Vehicle - 2WD,2009,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25623,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25624,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25625,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25626,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25627,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8,0.0,27.3455,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25628,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.0,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25629,0,0,GMC,Envoy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4,0.0,29.3,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2563,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25630,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6404,0.0,31.9969,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25631,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,33.4,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25632,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25633,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25634,0,0,Hyundai,Veracruz 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25635,0,0,Infiniti,FX35 RWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.097,0.0,31.3751,0.0,Sport Utility Vehicle - 2WD,2009,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25636,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25637,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.8,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25638,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,0.0,29.9,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25639,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,DC/FW,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2564,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25640,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2009,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25641,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.9,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25642,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25643,0,0,Mazda,Tribute Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,43.1,0.0,Sport Utility Vehicle - 2WD,2009,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25644,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.9,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25645,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,35.9,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25646,0,0,Mercury,Mariner Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,43.1,0.0,Sport Utility Vehicle - 2WD,2009,3500,,VLKUP,,,Hybrid,,,330V Ni-MH, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25647,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.8,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2009,-500,,VMODE VLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25648,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8824,0.0,33.8072,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25649,0,0,Pontiac,Torrent FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2565,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25650,0,0,Saturn,Outlook FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25651,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2009,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25652,0,0,Saturn,Vue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25653,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25654,0,0,Saturn,Vue Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,45.3,0.0,Sport Utility Vehicle - 2WD,2009,2250,,CLKUP,,,Hybrid,,,36V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25655,0,0,Suzuki,XL7 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25656,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25657,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2009,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25658,0,0,Volvo,XC 90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7813,0.0,28.002,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25659,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.9,0.0,29.9,0.0,Sport Utility Vehicle - 4WD,2009,-3750,,2MODE CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2566,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-6250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25660,0,0,Buick,Enclave AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25661,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25662,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.6,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25663,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25664,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25665,0,0,Chevrolet,TrailBlazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25666,0,0,Chevrolet,TrailBlazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,27.9,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25667,0,0,Chevrolet,TrailBlazer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.4,0.0,Sport Utility Vehicle - 4WD,2009,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25668,0,0,Chevrolet,Traverse AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25669,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.9545,0.0,34.7998,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2567,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1986,-9250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25670,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.6255,0.0,33.2006,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25671,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.4,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2009,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25672,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25673,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25674,0,0,GMC,Envoy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,27.9,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25675,0,0,GMC,Yukon 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.8,0.0,30.1459,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,CLKUP,,,Hybrid,,,288V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25676,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25677,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.4,0.0,25.4,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25678,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25679,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.9,0.0,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4855,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2568,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25680,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25681,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25682,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25683,0,0,Hyundai,Veracruz 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.8,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25684,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),19.538,0.0,29.698,0.0,Sport Utility Vehicle - 4WD,2009,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25685,0,0,Infiniti,FX50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.6486,0.0,27.0677,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25686,0,0,Isuzu,Ascender 5-passenger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25687,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25688,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25689,0,0,Kia,Borrego 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4952,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2569,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1986,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25690,0,0,Land Rover,LR3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25691,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.3,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,6MODE CLKUP,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25692,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1,0.0,24.8,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,6MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25693,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.8,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,6MODE CLKUP,,S,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25694,0,0,Land Rover,Range Rover Sport,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,25.2,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,6MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25695,0,0,Mazda,CX-9 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,DC/FW,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25696,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.9545,0.0,34.7998,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25697,0,0,Mazda,Tribute 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.6255,0.0,33.2006,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25698,0,0,Mazda,Tribute Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.4,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2009,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25699,0,16,Mercedes-Benz,GL450 4matic,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.1,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,EMS 2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,257,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Compact Cars,1985,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2570,0,0,GMC,K15 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25700,0,16,Mercedes-Benz,GL550 4matic,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.7,0.0,23.7,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25701,0,41,Mercedes-Benz,ML550 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25702,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.9545,0.0,34.7998,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25703,0,0,Mercury,Mariner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.6255,0.0,33.2006,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25704,0,0,Mercury,Mariner Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.4,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2009,2250,,VLKUP,,,Hybrid,,,330V Ni-MH, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25705,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.7,0.0,34.8,0.0,Sport Utility Vehicle - 4WD,2009,-500,,VMODE VLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,SOHC,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25706,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.148,0.0,32.2229,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25707,0,0,Pontiac,Torrent AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25708,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.0,0.0,28.1,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25709,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2571,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1986,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25710,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.5,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2009,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25711,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.1,0.0,25.5,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25712,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.0,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25713,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,2MODE,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25714,0,0,Porsche,Cayenne Turbo S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,2MODE,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25715,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,27.4,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel or All-Wheel Drive,0,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25716,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.4,0.0,Sport Utility Vehicle - 4WD,2009,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25717,0,0,Saab,9-7X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,27.9,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25718,0,0,Saturn,Outlook AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25719,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2572,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25720,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25721,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25722,0,0,Suzuki,XL7 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25723,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25724,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,35.7494,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25725,0,0,Volvo,XC 70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8999,0.0,30.399,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25726,0,0,Volvo,XC 70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25727,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2814,0.0,27.3422,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25728,0,0,Volvo,XC 90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0999,0.0,26.1999,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25729,0,0,Volvo,XC 60 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8999,0.0,30.399,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,2MODE CLKUP,T,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2573,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +15.689436,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,20,0.0,0.0,0.0,0.0,0,0,25730,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2009,-1000,,CLKUP,,,FFV,E85,350-370,, +14.327048,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,25731,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.6,41.2,30.3,Large Cars,2009,0,,CLKUP,,,FFV,E85,300,, +15.689436,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,25732,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2009,-1000,,CLKUP,,,FFV,E85,350-370,, +20.589638,5.758082,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,555.4375,16,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25733,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0689,13.7404,27.5423,20.5856,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,FFV,E85,330-450,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25734,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25735,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.9,26.1,19.1,Standard Pickup Trucks 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +20.589638,5.758082,0.0,0.0,14,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,555.4375,16,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3500,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25736,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1793,13.8324,27.6346,20.641,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,FFV,E85,330-450,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25737,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25738,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.9,26.1,19.1,Standard Pickup Trucks 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25739,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2574,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25740,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25741,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +21.974,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25742,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,11.7,26.6,19.5,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25743,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +21.974,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25744,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,11.7,26.6,19.5,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25745,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +21.974,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25746,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,11.7,26.6,19.5,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +21.974,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25747,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,11.7,26.6,19.5,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25748,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +21.974,6.806822,0.0,0.0,12,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25749,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,11.7,26.6,19.5,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,FFV,E85,280-350,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2575,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5500,,Creeper,,,Diesel,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25750,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.5,22.3,16.3,"Vans, Passenger Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25751,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.5,24.7,17.8,"Vans, Cargo Type",2009,-6250,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25752,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.5,22.3,16.3,"Vans, Cargo Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25753,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.5,22.3,16.3,"Vans, Passenger Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,25754,0,0,Chevrolet,Van 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,12.5,24.7,17.8,"Vans, Cargo Type",2009,-6250,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25755,0,0,Chevrolet,Van 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.5,22.3,16.3,"Vans, Cargo Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25756,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,22.4,16.3,"Vans, Passenger Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25757,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,22.4,16.3,"Vans, Cargo Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25758,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,12.2,23.5,17.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25759,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,22.4,16.3,"Vans, Passenger Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2576,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1986,-11000,,,,,,,,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,25760,0,0,Chevrolet,Van 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,12.2,23.5,17.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,FFV,E85,310-340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,25761,0,0,Chevrolet,Van 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.6,22.4,16.3,"Vans, Cargo Type",2009,-7750,,CLKUP,,,FFV,E85,310-340,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,25762,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.8568,32.2285,Sport Utility Vehicle - 2WD,2009,1500,,,,,FFV,E85,300,, +13.73375,3.9402660000000003,0.0,0.0,21,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,370.2916666666667,24,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,25763,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.8,41.9,31.6,Sport Utility Vehicle - 2WD,2009,500,,,,,FFV,E85,300,, +13.73375,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,370.2916666666667,24,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,25764,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.0,40.8998,29.1,Sport Utility Vehicle - 2WD,2009,500,,CLKUP,,,FFV,E85,270,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,25765,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.8568,32.2285,Sport Utility Vehicle - 2WD,2009,1500,,,,,FFV,E85,300,, +13.73375,3.9402660000000003,0.0,0.0,21,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,370.2916666666667,24,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,25766,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.8,41.9,31.6,Sport Utility Vehicle - 2WD,2009,500,,,,,FFV,E85,300,, +13.73375,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,370.2916666666667,24,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,25767,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.0,40.8998,29.1,Sport Utility Vehicle - 2WD,2009,500,,CLKUP,,,FFV,E85,270,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25768,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.371,12.7718,26.1385,18.8488,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,FFV,E85,300-420,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25769,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2577,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,19.0,0.0,Standard Pickup Trucks,1986,-13000,,Creeper,,,,,,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25770,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25771,0,0,GMC,Sierra K15 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25772,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3282,12.73,26.0936,18.724,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,FFV,E85,300-420,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25773,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25774,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25775,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25776,0,0,Chevrolet,Tahoe 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,25777,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9,12.6,27.3,20.5,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,FFV,E85,310-420,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25778,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,25779,0,0,GMC,Yukon Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.8,11.5,25.6,18.8,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,280-350,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2578,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1986,-5500,,,,,Diesel,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2350,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25780,0,14,Mercedes-Benz,E300 Diesel,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Compact Cars,1995,250,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25781,0,0,Aston Martin,DBS Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4,0.0,24.7,0.0,Two Seaters,2009,-9500,G,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25782,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8745,0.0,34.1689,0.0,Two Seaters,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25783,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3987,0.0,33.5729,0.0,Two Seaters,2009,-3000,,3MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25784,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.8,0.0,22.2,0.0,Two Seaters,2009,-11250,G,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25785,0,0,Ferrari,F430,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7498,0.0,22.4,0.0,Two Seaters,2009,-11250,G,SIL 3MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25786,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.2,0.0,21.1,0.0,Two Seaters,2009,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25787,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.9992,0.0,20.9995,0.0,Two Seaters,2009,-13250,G,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25788,0,0,Honda,S2000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,33.1,0.0,Two Seaters,2009,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25789,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2009,-8000,G,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2579,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-6500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25790,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1,0.0,25.4,0.0,Two Seaters,2009,-6750,G,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25791,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2009,-9500,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25792,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0,0.0,25.4,0.0,Two Seaters,2009,-6750,G,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25793,7,0,Mercedes-Benz,SLK55 AMG,N,false,49,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.7,0.0,30.8,0.0,Two Seaters,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25794,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6,0.0,33.8,0.0,Two Seaters,2009,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25795,0,0,Nissan,350z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,32.5,0.0,Two Seaters,2009,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25796,0,0,Porsche,911 GT2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.1,0.0,32.3,0.0,Two Seaters,2009,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25797,0,0,Spyker,C8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,25.3,0.0,Two Seaters,2009,-6250,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25798,9,0,Lexus,SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2995,0.0,31.6,0.0,Minicompact Cars,2009,-3750,,2MODE CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25799,0,6,MINI,Cooper,Y,false,0,76,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.0,0.0,52.0,0.0,Minicompact Cars,2009,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4231,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,258,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,44.0,0.0,Compact Cars,1985,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2580,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Standard Pickup Trucks,1986,-1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25800,0,6,MINI,Cooper,Y,false,0,76,0,0.0,0.0,0.0,0.0,Automatic (S6),32.82,0.0,48.522,0.0,Minicompact Cars,2009,1500,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25801,0,6,MINI,Cooper S,Y,false,0,76,0,0.0,0.0,0.0,0.0,Automatic (S6),29.7707,0.0,44.4889,0.0,Minicompact Cars,2009,500,,3MODE CLKUP,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25802,0,6,MINI,Cooper S,Y,false,0,76,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4602,0.0,48.2339,0.0,Minicompact Cars,2009,1500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25803,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8066,0.0,31.5222,0.0,Minicompact Cars,2009,-4750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25804,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,32.4,0.0,Minicompact Cars,2009,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25805,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8066,0.0,31.5222,0.0,Minicompact Cars,2009,-4750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25806,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,32.8,0.0,Minicompact Cars,2009,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25807,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2,0.0,35.1937,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25808,5,0,Porsche,Carrera 2 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3717,0.0,37.6861,0.0,Minicompact Cars,2009,-1750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25809,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2,0.0,35.1937,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2581,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25810,5,0,Porsche,Carrera 2 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3717,0.0,37.6861,0.0,Minicompact Cars,2009,-1750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25811,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6383,0.0,35.4021,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25812,5,0,Porsche,Carrera 2 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4598,0.0,36.9387,0.0,Minicompact Cars,2009,-1750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25813,5,0,Porsche,Carrera 2 S Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6383,0.0,35.4021,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25814,5,0,Porsche,Carrera 2 S Coupe,Y,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4598,0.0,36.9387,0.0,Minicompact Cars,2009,-1750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25815,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,34.8932,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25816,5,0,Porsche,Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,36.4,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25817,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0,0.0,36.8,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25818,5,0,Porsche,Carrera 4 Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,34.8932,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25819,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2,0.0,37.1,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2582,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25820,5,0,Porsche,Carrera 4 S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1791,0.0,34.5014,0.0,Minicompact Cars,2009,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25821,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0,0.0,36.0,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25822,5,0,Porsche,Carrera 4 S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1791,0.0,34.5014,0.0,Minicompact Cars,2009,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25823,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2,0.0,37.1,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25824,5,0,Porsche,Carrera 4 S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1791,0.0,34.5014,0.0,Minicompact Cars,2009,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25825,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,36.4,0.0,Minicompact Cars,2009,-2250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25826,5,0,Porsche,Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9,0.0,34.8932,0.0,Minicompact Cars,2009,-2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25827,10,0,Audi,A4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7642,0.0,42.4439,0.0,Subcompact Cars,2009,0,,3MODE,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25828,10,0,Audi,A4 Cabriolet quattro,Y,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9973,0.0,37.8274,0.0,Subcompact Cars,2009,-1000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25829,10,0,Audi,A4 Cabriolet quattro,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.3,0.0,34.6,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2583,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.9231,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25830,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.1,0.0,26.8,0.0,Subcompact Cars,2009,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25831,10,0,Audi,S4 Cabriolet,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.817,0.0,28.8042,0.0,Subcompact Cars,2009,-6750,G,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25832,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.3,0.0,Subcompact Cars,2009,-5750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25833,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.0,0.0,Subcompact Cars,2009,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,74,25834,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8745,0.0,34.1689,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,74,25835,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3987,0.0,33.5729,0.0,Subcompact Cars,2009,-3000,,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25836,0,10,BMW,128i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3879,0.0,38.72,0.0,Subcompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25837,0,10,BMW,128i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0549,0.0,39.5165,0.0,Subcompact Cars,2009,-1750,,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25838,0,8,BMW,128i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3879,0.0,38.72,0.0,Subcompact Cars,2009,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25839,0,8,BMW,128i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5809,0.0,38.0812,0.0,Subcompact Cars,2009,-2250,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2584,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25840,0,10,BMW,135i,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8,0.0,35.1,0.0,Subcompact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25841,0,10,BMW,135i,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,35.5,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25842,0,8,BMW,135i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9561,0.0,36.0905,0.0,Subcompact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25843,0,8,BMW,135i Convertible,N,false,0,78,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7374,0.0,36.3061,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25844,0,11,BMW,328ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3879,0.0,38.72,0.0,Subcompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25845,0,11,BMW,328ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0549,0.0,39.5165,0.0,Subcompact Cars,2009,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25846,0,9,BMW,328ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.261,0.0,37.1444,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25847,0,9,BMW,328ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5809,0.0,38.0812,0.0,Subcompact Cars,2009,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25848,0,11,BMW,328ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8735,0.0,35.4336,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25849,0,11,BMW,328ci xDrive,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7665,0.0,35.2524,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2585,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,30.0,0.0,Standard Pickup Trucks,1986,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25850,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9561,0.0,36.0905,0.0,Subcompact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25851,0,11,BMW,335ci,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7374,0.0,36.3061,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25852,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9561,0.0,36.0905,0.0,Subcompact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25853,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7374,0.0,36.3061,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25854,0,11,BMW,335ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5724,0.0,34.2517,0.0,Subcompact Cars,2009,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25855,0,11,BMW,335ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0675,0.0,34.6141,0.0,Subcompact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25856,0,13,BMW,650ci,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7138,0.0,30.6961,0.0,Subcompact Cars,2009,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25857,0,13,BMW,650ci,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0748,0.0,31.474,0.0,Subcompact Cars,2009,-4750,,3MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25858,0,11,BMW,650ci Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,28.8,0.0,Subcompact Cars,2009,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25859,0,11,BMW,650ci Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,31.8,0.0,Subcompact Cars,2009,-4750,,3MODE CLKUP,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,1900,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2586,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Standard Pickup Trucks,1986,250,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25860,0,9,BMW,M3 Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,27.3,0.0,Subcompact Cars,2009,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25861,0,9,BMW,M3 Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2009,-6750,G,6MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25862,0,11,BMW,M3 Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2009,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25863,0,11,BMW,M3 Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S7),17.1163,0.0,27.8771,0.0,Subcompact Cars,2009,-6750,G,6MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25864,0,13,BMW,M6,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1362,0.0,23.3082,0.0,Subcompact Cars,2009,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25865,0,13,BMW,M6,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S7),13.1051,0.0,23.7127,0.0,Subcompact Cars,2009,-11250,G,6MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25866,0,11,BMW,M6 Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9,0.0,23.7,0.0,Subcompact Cars,2009,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25867,0,11,BMW,M6 Convertible,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S7),12.9504,0.0,24.0505,0.0,Subcompact Cars,2009,-11250,G,6MODE CLKUP,,,,,,, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,RNG=170,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,25868,0,6,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2009,6500,,CLKUP,,,CNG,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25869,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,48.6,0.0,Subcompact Cars,2009,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2587,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,28.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,25870,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,32.8723,0.0,51.0436,0.0,Subcompact Cars,2009,2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25871,0,11,Lexus,IS 250,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8997,0.0,36.8,0.0,Subcompact Cars,2009,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25872,0,11,Lexus,IS 250,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.6,0.0,40.7,0.0,Subcompact Cars,2009,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25873,0,11,Lexus,IS 250 AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5898,0.0,36.2901,0.0,Subcompact Cars,2009,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25874,0,11,Lexus,IS 350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4334,0.0,34.3402,0.0,Subcompact Cars,2009,-3000,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25875,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6214,0.0,32.0888,0.0,Subcompact Cars,2009,-4750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25876,10,0,Mercedes-Benz,CLK350,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.3,0.0,35.5,0.0,Subcompact Cars,2009,-3000,,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25877,9,0,Mercedes-Benz,CLK350 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,35.4,0.0,Subcompact Cars,2009,-3000,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25878,10,0,Mercedes-Benz,CLK550,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,30.3,0.0,Subcompact Cars,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25879,9,0,Mercedes-Benz,CLK550 (Cabriolet),N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.0,0.0,29.5,0.0,Subcompact Cars,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2588,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.0,0.0,Standard Pickup Trucks,1986,-1000,,SIL,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,25880,0,17,MINI,Clubman,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.0,0.0,51.9,0.0,Subcompact Cars,2009,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25881,0,17,MINI,Clubman,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic (S6),32.82,0.0,48.522,0.0,Subcompact Cars,2009,1500,,3MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25882,0,17,MINI,Clubman S,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic (S6),29.7707,0.0,44.4889,0.0,Subcompact Cars,2009,500,,3MODE CLKUP,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,25883,0,17,MINI,Clubman S,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4602,0.0,48.2339,0.0,Subcompact Cars,2009,1500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25884,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.3,0.0,45.4,0.0,Subcompact Cars,2009,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25885,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.316,0.0,43.3105,0.0,Subcompact Cars,2009,1500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25886,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9327,0.0,37.9324,0.0,Subcompact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25887,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.1944,0.0,35.6452,0.0,Subcompact Cars,2009,-1750,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25888,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Subcompact Cars,2009,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25889,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9663,0.0,33.2987,0.0,Subcompact Cars,2009,-3250,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1852,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2589,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25890,13,0,Saleen Performance,S281 Family,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.8,0.0,Subcompact Cars,2009,-9500,G,,,S,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,25891,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2009,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,11,84,25892,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,45.1,0.0,Subcompact Cars,2009,2250,,CLKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,84,25893,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.7309,0.0,50.8763,0.0,Subcompact Cars,2009,3500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,25894,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.4655,0.0,48.8826,0.0,Subcompact Cars,2009,3000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25895,0,12,Audi,A4,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7642,0.0,42.4439,0.0,Compact Cars,2009,0,,3MODE,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25896,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6,0.0,42.1,0.0,Compact Cars,2009,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25897,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9973,0.0,37.8274,0.0,Compact Cars,2009,-1000,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25898,0,12,BMW,328i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3879,0.0,38.72,0.0,Compact Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25899,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0549,0.0,39.5165,0.0,Compact Cars,2009,-1750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,259,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Compact Cars,1985,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2590,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1986,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25900,0,12,BMW,328i xDrive,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8735,0.0,35.4336,0.0,Compact Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25901,0,12,BMW,328i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7665,0.0,35.2524,0.0,Compact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25902,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9561,0.0,36.0905,0.0,Compact Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25903,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7374,0.0,36.3061,0.0,Compact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25904,0,12,BMW,335i xDrive,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5724,0.0,34.2517,0.0,Compact Cars,2009,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25905,0,12,BMW,335i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0675,0.0,34.6141,0.0,Compact Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25906,0,12,BMW,M3,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Compact Cars,2009,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,DCT TRANS,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25907,0,12,BMW,M3,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),17.1163,0.0,27.8771,0.0,Compact Cars,2009,-6750,G,6MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25908,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,40.1,0.0,Compact Cars,2009,0,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25909,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Compact Cars,2009,-1750,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2591,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25910,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Compact Cars,2009,-6250,G,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25911,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Compact Cars,2009,-1750,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25912,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6,0.0,34.3,0.0,Compact Cars,2009,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25913,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Compact Cars,2009,-2500,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25914,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.8,0.0,30.1,0.0,Compact Cars,2009,-5250,G,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,25915,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.8,0.0,48.9,0.0,Compact Cars,2009,2250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25916,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.6403,0.0,45.8151,0.0,Compact Cars,2009,1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25917,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,43.5,0.0,Compact Cars,2009,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25918,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.1816,0.0,42.2228,0.0,Compact Cars,2009,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25919,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,39.8329,0.0,Compact Cars,2009,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2592,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1986,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25920,12,0,Honda,Accord Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7,0.0,35.3,0.0,Compact Cars,2009,-1750,,,,,,,,, +7.844718,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,HEV,-1,1300,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,25921,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2009,5500,,EMS,,,Hybrid,,,158V Ni-MH, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,25922,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.585,0.0,47.0003,0.0,Compact Cars,2009,2750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,92,25923,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.9394,0.0,49.0501,0.0,Compact Cars,2009,2750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25924,0,12,Mercedes-Benz,C350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4424,0.0,34.811,0.0,Compact Cars,2009,-3000,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25925,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S7),15.1678,0.0,26.6865,0.0,Compact Cars,2009,-8000,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,25926,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,29.2,0.0,Compact Cars,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25927,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.6,0.0,23.0,0.0,Compact Cars,2009,-11250,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,25928,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S7),14.0,0.0,24.7,0.0,Compact Cars,2009,-9500,G,EMS 2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25929,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.7,0.0,23.4,0.0,Compact Cars,2009,-11250,G,EMS 2MODE CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2593,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25930,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.2,0.0,30.6,0.0,Compact Cars,2009,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25931,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.0,0.0,Compact Cars,2009,-3750,,2MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25932,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,33.4,0.0,Compact Cars,2009,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25933,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),18.975,0.0,33.4571,0.0,Compact Cars,2009,-3250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25934,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Compact Cars,2009,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25935,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9663,0.0,33.2987,0.0,Compact Cars,2009,-3250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25936,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.9267,0.0,33.0743,0.0,Compact Cars,2009,-2250,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25937,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7947,0.0,37.0519,0.0,Compact Cars,2009,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25938,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9906,0.0,34.1764,0.0,Compact Cars,2009,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25939,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0487,0.0,36.5784,0.0,Compact Cars,2009,-500,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2594,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1986,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25940,0,14,Suzuki,SX4 Sedan,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,42.3,0.0,Compact Cars,2009,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25941,0,14,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.2,0.0,42.9,0.0,Compact Cars,2009,1500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25942,0,14,Suzuki,SX4 Sport,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5,0.0,40.9,0.0,Compact Cars,2009,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25943,0,14,Suzuki,SX4 Sport,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,41.6,0.0,Compact Cars,2009,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25944,0,13,Volkswagen,CC,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0737,0.0,41.4298,0.0,Compact Cars,2009,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,25945,0,13,Volkswagen,CC,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,39.0,0.0,Compact Cars,2009,-1000,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25946,0,13,Volkswagen,CC,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,35.1,0.0,Compact Cars,2009,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25947,0,13,Volkswagen,CC 4motion,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2009,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25948,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8642,0.0,31.4114,0.0,Midsize Cars,2009,-4750,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25949,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8642,0.0,31.4114,0.0,Midsize Cars,2009,-4750,,3MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2595,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25950,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.7,0.0,Midsize Cars,2009,-6750,G,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,5.2,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25951,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),15.7,0.0,25.7,0.0,Midsize Cars,2009,-8000,G,3MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25952,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3879,0.0,38.72,0.0,Midsize Cars,2009,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25953,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5809,0.0,38.0812,0.0,Midsize Cars,2009,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25954,0,14,BMW,528i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8735,0.0,35.4336,0.0,Midsize Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25955,0,14,BMW,528i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7665,0.0,35.2524,0.0,Midsize Cars,2009,-3000,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25956,0,14,BMW,535i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9561,0.0,36.0905,0.0,Midsize Cars,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25957,0,14,BMW,535i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7374,0.0,36.3061,0.0,Midsize Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25958,0,14,BMW,535i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5724,0.0,34.2517,0.0,Midsize Cars,2009,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25959,0,14,BMW,535i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0675,0.0,34.6141,0.0,Midsize Cars,2009,-3000,,3MODE CLKUP,T,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2596,0,0,Jeep,J-20 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1986,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25960,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7138,0.0,30.6961,0.0,Midsize Cars,2009,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25961,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0748,0.0,31.474,0.0,Midsize Cars,2009,-4750,,3MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25962,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.1362,0.0,23.3082,0.0,Midsize Cars,2009,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,0,SMG TRANS,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,25963,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),13.1051,0.0,23.7127,0.0,Midsize Cars,2009,-11250,G,6MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25964,0,14,Chrysler,Sebring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2009,500,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25965,0,14,Chrysler,Sebring,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Midsize Cars,2009,-1750,,CMODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,25966,0,13,Dodge,Avenger,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2009,500,,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25967,0,13,Dodge,Avenger,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Midsize Cars,2009,-1750,,CMODE,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,95,25968,0,19,Dodge,Caliber,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.3,0.0,41.8,0.0,Small Station Wagons,2009,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,95,25969,0,19,Dodge,Caliber,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Small Station Wagons,2009,500,,VMODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57085,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2597,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.7692,0.0,Standard Pickup Trucks,1986,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,95,25970,0,19,Dodge,Caliber,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,40.1,0.0,Small Station Wagons,2009,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,95,25971,0,19,Dodge,Caliber,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.1,0.0,35.3,0.0,Small Station Wagons,2009,0,,CMODE VLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,95,25972,0,19,Dodge,Caliber,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0,0.0,37.5,0.0,Small Station Wagons,2009,-1750,,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,25973,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.7,0.0,21.3,0.0,Midsize Cars,2009,-13250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,0,,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,25974,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,11.4498,0.0,21.7,0.0,Midsize Cars,2009,-15500,G,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,25975,0,14,Kia,Optima,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.9,0.0,39.8,0.0,Midsize Cars,2009,0,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25976,0,15,Lexus,ES 350,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,38.3,0.0,Midsize Cars,2009,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,25977,0,14,Mercedes-Benz,E350,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.7042,0.0,33.8669,0.0,Midsize Cars,2009,-3750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25978,0,14,Mercedes-Benz,E350 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,0.0,30.6,0.0,Midsize Cars,2009,-4750,,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,25979,0,14,Mercedes-Benz,E550,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.4,0.0,31.1,0.0,Midsize Cars,2009,-5750,,EMS 2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2598,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25980,0,14,Mercedes-Benz,E550 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,26.7,0.0,Midsize Cars,2009,-6750,G,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,25981,0,14,Mercedes-Benz,E63 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S7),16.0,0.0,27.3,0.0,Midsize Cars,2009,-8000,G,EMS 2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,25982,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.3,0.0,45.4,0.0,Midsize Cars,2009,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,25983,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.316,0.0,43.3105,0.0,Midsize Cars,2009,1500,,VMODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,25984,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9327,0.0,37.9324,0.0,Midsize Cars,2009,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25985,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.1944,0.0,35.6452,0.0,Midsize Cars,2009,-1750,,VMODE CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,HEV,-1,1600,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,25986,0,10,Nissan,Altima Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.8,0.0,46.6,0.0,Midsize Cars,2009,4000,,EMS,,,Hybrid,,,245V Ni-MH, +7.163524,0.0,0.0,0.0,48,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,HEV,-1,1200,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,96,25987,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),66.6,0.0,64.8,0.0,Midsize Cars,2009,6000,,VMODE VLKUP,,,Hybrid,,,202V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25988,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8642,0.0,31.4114,0.0,Large Cars,2009,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25989,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,26.7,0.0,Large Cars,2009,-8000,G,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2599,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-2500,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25990,0,17,Chrysler,300 AWD,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,31.9,0.0,Large Cars,2009,-3250,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,25991,0,17,Chrysler,300 AWD,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.1,0.0,Large Cars,2009,-2500,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25992,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Large Cars,2009,-6250,G,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25993,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2009,-1750,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25994,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2009,-1000,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25995,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2009,-2500,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,25996,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Large Cars,2009,-6250,G,CMODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25997,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2009,-1750,,CMODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,25998,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.8989,0.0,Large Cars,2009,-1000,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,25999,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2009,-2500,,CMODE,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41310,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26,0,0,Pininfarina,Spider,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,260,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57088,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2600,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,2MODE 2LKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26000,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5,0.0,34.7,0.0,Large Cars,2009,-2500,,CMODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26001,0,16,Dodge,Charger AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,31.9,0.0,Large Cars,2009,-3250,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26002,0,16,Dodge,Charger AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.1,0.0,Large Cars,2009,-2500,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26003,0,21,Ford,Taurus AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.2,0.0,Large Cars,2009,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26004,0,21,Ford,Taurus FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,38.5,0.0,Large Cars,2009,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26005,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.797,0.0,43.0857,0.0,Large Cars,2009,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26006,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.4401,0.0,42.7553,0.0,Large Cars,2009,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26007,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7657,0.0,40.923,0.0,Large Cars,2009,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26008,0,21,Mercury,Sable AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.2,0.0,Large Cars,2009,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26009,0,21,Mercury,Sable FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,38.5,0.0,Large Cars,2009,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57088,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2601,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1986,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26010,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.9,0.0,30.5,0.0,Large Cars,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26011,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.5,0.0,29.8,0.0,Large Cars,2009,-5750,G,EMS 2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26012,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.8,0.0,Large Cars,2009,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26013,0,20,Audi,A3 quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,34.6,0.0,Small Station Wagons,2009,-2250,,3MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26014,0,28,Audi,A4 Avant quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9973,0.0,37.8274,0.0,Small Station Wagons,2009,-1000,,3MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26015,0,25,BMW,328i Sport Wagon,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.261,0.0,37.1444,0.0,Small Station Wagons,2009,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26016,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5809,0.0,38.0812,0.0,Small Station Wagons,2009,-2250,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26017,0,25,BMW,328i Sport Wagon xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8735,0.0,35.4336,0.0,Small Station Wagons,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26018,0,25,BMW,328i Sport Wagon xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7665,0.0,35.2524,0.0,Small Station Wagons,2009,-3000,,3MODE CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26019,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,36.5,0.0,49.3,0.0,Small Station Wagons,2009,3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57087,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2602,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Standard Pickup Trucks,1986,-1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26020,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.4276,0.0,45.9706,0.0,Small Station Wagons,2009,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,0,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26021,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),35.2,0.0,47.4,0.0,Small Station Wagons,2009,2750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26022,0,30,Saab,9-3 Aero SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.8,0.0,33.4,0.0,Small Station Wagons,2009,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26023,0,30,Saab,9-3 Aero SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),18.975,0.0,33.4571,0.0,Small Station Wagons,2009,-3250,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26024,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7,0.0,36.0,0.0,Small Station Wagons,2009,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26025,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9663,0.0,33.2987,0.0,Small Station Wagons,2009,-3250,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26026,0,19,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.9267,0.0,33.0743,0.0,Small Station Wagons,2009,-2250,,2MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26027,0,19,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.9906,0.0,34.1764,0.0,Small Station Wagons,2009,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26028,0,19,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7947,0.0,37.0519,0.0,Small Station Wagons,2009,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26029,0,19,Subaru,Impreza Wagon/Outback SPT AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4,0.0,31.8,0.0,Small Station Wagons,2009,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2603,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26030,0,19,Subaru,Impreza Wagon/Outback SPT AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0487,0.0,36.5784,0.0,Small Station Wagons,2009,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26031,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5,0.0,40.9,0.0,Small Station Wagons,2009,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26032,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.4,0.0,41.6,0.0,Small Station Wagons,2009,1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26033,0,9,Suzuki,SX4 AWD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3,0.0,38.8,0.0,Small Station Wagons,2009,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26034,0,9,Suzuki,SX4 AWD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5317,0.0,39.0,0.0,Small Station Wagons,2009,500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26035,0,34,BMW,535i Sport Wagon xDrive,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2864,0.0,32.3177,0.0,Midsize Station Wagons,2009,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26036,0,34,BMW,535i Sport Wagon xDrive,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),20.333,0.0,33.5146,0.0,Midsize Station Wagons,2009,-3750,,3MODE CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26037,0,41,Mercedes-Benz,E350 4matic (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,29.3,0.0,Midsize Station Wagons,2009,-4750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26038,0,41,Mercedes-Benz,E63 AMG (wagon),N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S7),15.5,0.0,25.5,0.0,Midsize Station Wagons,2009,-8000,G,EMS 2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26039,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2499,0.0,28.8,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2604,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26040,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2499,0.0,28.8,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26041,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Small Pickup Trucks 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26042,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7881,0.0,32.8925,0.0,Small Pickup Trucks 2WD,2009,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26043,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,28.6,0.0,Small Pickup Trucks 2WD,2009,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26044,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.4588,0.0,28.4227,0.0,Small Pickup Trucks 2WD,2009,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26045,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2499,0.0,28.8,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26046,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2499,0.0,28.8,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26047,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7881,0.0,32.8925,0.0,Small Pickup Trucks 2WD,2009,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26048,0,0,Mazda,B2300 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.8,0.0,Small Pickup Trucks 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26049,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2009,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2605,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Vans,1986,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26050,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26051,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6736,0.0,28.1,0.0,Small Pickup Trucks 2WD,2009,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26052,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.4661,0.0,27.9881,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26053,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.0,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26054,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.0,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26055,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Small Pickup Trucks 4WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26056,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.221,0.0,24.461,0.0,Small Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26057,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.0,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26058,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,26.0,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26059,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4,0.0,26.2,0.0,Small Pickup Trucks 4WD,2009,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2606,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26060,0,0,Mazda,B4000 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.221,0.0,24.461,0.0,Small Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26061,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1752,0.0,26.9554,0.0,Small Pickup Trucks 4WD,2009,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26062,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9731,0.0,26.7792,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26063,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6758,0.0,27.8117,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26064,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6257,0.0,26.153,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26065,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.3,0.0,Standard Pickup Trucks 2WD,2009,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26066,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26067,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26068,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2009,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26069,0,0,Ford,Explorer Sport Trac 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2607,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,28.0,0.0,Vans,1986,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26070,0,0,Ford,Explorer Sport Trac 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9705,0.0,28.7372,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26071,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6386,0.0,25.7993,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26072,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0797,0.0,28.1975,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26073,0,0,GMC,Sierra C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6775,0.0,27.8137,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26074,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7736,0.0,26.1916,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26075,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.3,0.0,Standard Pickup Trucks 2WD,2009,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26076,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26077,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6995,0.0,25.7499,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26078,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.872,0.0,23.6293,0.0,Standard Pickup Trucks 2WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26079,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.1551,0.0,25.1154,0.0,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2608,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Vans,1986,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26080,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26081,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8774,0.0,24.9457,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26082,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,26.1,0.0,Standard Pickup Trucks 4WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26083,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26084,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0232,0.0,25.4274,0.0,Standard Pickup Trucks 4WD,2009,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26085,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4469,0.0,25.7624,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26086,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8379,0.0,26.6162,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26087,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8912,0.0,24.4216,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26088,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8256,0.0,25.7866,0.0,Standard Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26089,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2609,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26090,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7786,0.0,24.8556,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26091,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26092,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,26.1,0.0,Standard Pickup Trucks 4WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26093,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26094,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.4377,0.0,22.6945,0.0,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26095,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4837,0.0,23.4472,0.0,Standard Pickup Trucks 4WD,2009,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26096,0,0,Chevrolet,Van 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2009,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26097,0,0,Chevrolet,Van 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.7,0.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26098,0,0,Chevrolet,Van 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.9,0.0,"Vans, Cargo Type",2009,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26099,0,0,Chevrolet,Van 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.5,0.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,261,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2610,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26100,0,0,Chevrolet,Van 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1417,0.0,21.3266,0.0,"Vans, Cargo Type",2009,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26101,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2009,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26102,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.7,0.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26103,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.9,0.0,"Vans, Cargo Type",2009,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26104,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1417,0.0,21.3266,0.0,"Vans, Cargo Type",2009,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26105,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7,0.0,23.5,0.0,"Vans, Cargo Type",2009,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26106,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.9,0.0,"Vans, Passenger Type",2009,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26107,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1417,0.0,21.3266,0.0,"Vans, Passenger Type",2009,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26108,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4,0.0,21.9,0.0,"Vans, Passenger Type",2009,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26109,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1417,0.0,21.3266,0.0,"Vans, Passenger Type",2009,-7750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2611,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26110,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2009,-3250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26111,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.1,0.0,Minivan - 2WD,2009,-1750,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26112,0,0,Dodge,Caravan/Grand Caravan FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2009,-3250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26113,0,0,Dodge,Caravan/Grand Caravan FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.1,0.0,Minivan - 2WD,2009,-1750,,CMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26114,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,32.4,0.0,Minivan - 2WD,2009,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,VCM,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26115,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,35.5,0.0,Minivan - 2WD,2009,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26116,0,0,Volkswagen,Routan FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2009,-3250,,CMODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26117,0,0,Volkswagen,Routan FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.1,0.0,Minivan - 2WD,2009,-1750,,CMODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26118,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4165,0.0,26.0975,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26119,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2612,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26120,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5,0.0,36.6858,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26121,0,0,Chrysler,PT Cruiser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26122,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26123,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26124,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26125,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26126,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26127,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26128,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26129,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9705,0.0,28.7372,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2613,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Vans,1986,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26130,0,0,Ford,Taurus X FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26131,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4165,0.0,26.0975,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26132,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2009,0,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26133,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26134,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26135,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2009,500,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26136,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26137,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2009,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26138,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26139,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2614,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Vans,1986,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26140,0,0,Jeep,Liberty 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26141,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2009,500,,VMODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26142,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2009,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26143,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2009,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26144,0,0,Jeep,Wrangler 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CMODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26145,0,0,Lincoln,MKX FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2009,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26146,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26147,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9705,0.0,28.7372,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,SOHC,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26148,0,0,Mitsubishi,Endeavor 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1021,0.0,29.8084,0.0,Sport Utility Vehicle - 2WD,2009,-4750,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26149,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.531,0.0,30.2537,0.0,Sport Utility Vehicle - 2WD,2009,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2615,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.9231,0.0,Vans,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26150,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.0,0.0,25.6984,0.0,Sport Utility Vehicle - 2WD,2009,-8000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26151,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.6,0.0,38.4,0.0,Sport Utility Vehicle - 2WD,2009,500,,VMODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26152,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6794,0.0,28.0981,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26153,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6265,0.0,28.6533,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26154,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2009,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26155,0,0,Suzuki,Grand Vitara,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2009,-1000,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26156,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.0,0.0,33.8,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26157,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,0.0,28.6,0.0,Sport Utility Vehicle - 2WD,2009,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26158,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.9,0.0,26.0,0.0,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26159,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,29.2,0.0,Sport Utility Vehicle - 2WD,2009,-4750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4852,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2616,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26160,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2009,500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26161,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),17.006,0.0,23.3118,0.0,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26162,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8132,0.0,25.7044,0.0,Sport Utility Vehicle - 2WD,2009,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26163,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.9,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2009,-5750,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26164,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.555,0.0,27.0051,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26165,0,0,BMW,X3 xDrive 30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0865,0.0,32.6973,0.0,Sport Utility Vehicle - 4WD,2009,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26166,0,0,BMW,X3 xDrive 30i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4909,0.0,33.3632,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26167,0,0,BMW,X5 xDrive 30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2,0.0,29.6,0.0,Sport Utility Vehicle - 4WD,2009,-4750,,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26168,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26169,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4870,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2617,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26170,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26171,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26172,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26173,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4469,0.0,25.7624,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26174,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8379,0.0,26.6162,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26175,0,0,Ford,Taurus X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26176,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8621,0.0,35.6263,0.0,Sport Utility Vehicle - 4WD,2009,-500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26177,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26178,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,0.0,24.7,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26179,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,38.6,0.0,Sport Utility Vehicle - 4WD,2009,1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2618,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1986,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26180,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2009,-500,,CMODE VLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.1,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,26181,0,0,Jeep,Grand Cherokee SRT8 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,19.4,0.0,Sport Utility Vehicle - 4WD,2009,-13250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26182,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26183,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,25.6,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26184,0,0,Jeep,Liberty 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26185,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,38.6,0.0,Sport Utility Vehicle - 4WD,2009,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,CVT2L,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26186,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,CMODE VLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26187,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2009,-500,,CMODE VLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26188,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.6,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26189,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3513,0.0,26.5966,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,CMODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2619,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.6667,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26190,0,0,Lexus,GX 470,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,2MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26191,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.1491,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26192,0,0,Lincoln,MKX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2009,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26193,0,41,Mercedes-Benz,ML350 4matic,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.4,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2009,-5750,,EMS 2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26194,0,41,Mercedes-Benz,ML63 AMG,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S7),12.8,0.0,19.7,0.0,Sport Utility Vehicle - 4WD,2009,-13250,,EMS 2MODE CLKUP,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26195,0,14,Mercedes-Benz,R320 Bluetec,Y,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2009,-2750,,EMS 2MODE CLKUP,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26196,0,14,Mercedes-Benz,R350 4matic,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,26.8,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,EMS 2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26197,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4469,0.0,25.7624,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26198,0,0,Mercury,Mountaineer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.8379,0.0,26.6162,0.0,Sport Utility Vehicle - 4WD,2009,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel or All-Wheel Drive,0,SOHC,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26199,0,0,Mitsubishi,Endeavor AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2009,-5750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,262,0,14,Buick,Skylark,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4854,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2620,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0769,0.0,Vans,1986,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26200,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6431,0.0,27.3268,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel or All-Wheel Drive,0,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26201,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.5498,0.0,24.2996,0.0,Sport Utility Vehicle - 4WD,2009,-9500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26202,0,0,Nissan,Rogue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.1863,0.0,36.003,0.0,Sport Utility Vehicle - 4WD,2009,0,,VMODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26203,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2998,0.0,27.1895,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26204,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1798,0.0,27.5791,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26205,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3,0.0,34.3,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26206,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26207,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2009,-2500,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26208,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5494,0.0,27.9321,0.0,Sport Utility Vehicle - 4WD,2009,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26209,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,24.1,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2621,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1986,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26210,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.8,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26211,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5494,0.0,27.9321,0.0,Sport Utility Vehicle - 4WD,2009,-5750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26212,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.7491,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26213,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7755,0.0,38.3517,0.0,Sport Utility Vehicle - 4WD,2009,500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26214,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),16.301,0.0,22.4675,0.0,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26215,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2009,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26216,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.555,0.0,27.0051,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,3MODE CLKUP,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,450,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,26217,0,0,Chevrolet,Silverado C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.01,13.5,28.81,21.61,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,FFV,E85,340,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,26218,0,0,Chevrolet,Tahoe 1500 XFE 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.7,29.6999,22.8999,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,FFV,E85,330,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26219,0,0,Chrysler,Aspen 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,FFV,E85,240,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2622,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.0,0.0,Vans,1986,-3500,,,,,Diesel,,,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26220,0,0,Chrysler,Aspen 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,11.0,24.6,16.5,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,FFV,E85,240,, +14.964294,4.679378,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 370,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,26221,0,14,Chrysler,Sebring,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2009,-500,,,,,FFV,E85,270,, +15.689436,4.994,0.0,0.0,18,0.0,12,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 350,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,26222,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,15.6,36.5,26.5,Compact Cars,2009,-1000,,,,,FFV,E85,250,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,GAS 380,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,16,0.0,0.0,0.0,0.0,0,0,26223,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,22.9,Minivan - 2WD,2009,-2500,,CLKUP,,,FFV,E85,260,, +14.964294,4.679378,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,0,GAS 370,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,26224,0,13,Dodge,Avenger,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2009,-500,,,,,FFV,E85,270,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,GAS 380,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,16,0.0,0.0,0.0,0.0,0,0,26225,0,0,Dodge,Caravan/Grand Caravan FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,22.9,Minivan - 2WD,2009,-2500,,CLKUP,,,FFV,E85,260,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26226,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.742,10.7182,25.6124,17.2303,Standard Pickup Trucks 2WD,2009,-6250,,CMODE,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,26227,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Standard Pickup Trucks 4WD,2009,-6250,,CMODE,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26228,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26229,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,11.0,24.6,16.5,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,FFV,E85,240,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2623,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26230,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Standard Pickup Trucks 2WD,2009,-6250,,CMODE,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26231,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7904,10.9989,24.466,16.4984,Standard Pickup Trucks 4WD,2009,-6250,,CMODE,,,FFV,E85,240,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=360,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,26232,0,21,Ford,Crown Victoria FFV,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7458,14.4379,33.0928,23.9476,Large Cars,2009,-2500,,CLKUP,,,FFV,E85,270,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=420,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,26233,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.6958,12.7724,27.4904,19.8663,Standard Pickup Trucks 2WD,2009,-5250,,CLKUP,,,FFV,E85,310,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,RNG=390,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,26234,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.761,12.1058,24.7556,17.9327,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,FFV,E85,290,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,450,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,26235,0,0,GMC,Sierra C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.01,13.5,28.81,21.61,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,FFV,E85,340,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,430,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,26236,0,0,GMC,Yukon 1500 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.7,29.6999,22.8999,Sport Utility Vehicle - 2WD,2009,-4250,,CLKUP,,,FFV,E85,330,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26237,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.6,25.6,17.7,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,FFV,E85,280,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26238,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,11.0,24.7,16.5,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,FFV,E85,280,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26239,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.6,25.6,17.7,Sport Utility Vehicle - 2WD,2009,-6250,,CMODE,,,FFV,E85,280,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2624,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 340,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26240,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Sport Utility Vehicle - 4WD,2009,-6250,,CMODE,,,FFV,E85,280,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=360,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,26241,0,21,Mercury,Grand Marquis FFV,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7458,14.4379,33.0928,23.9476,Large Cars,2009,-2500,,CLKUP,,,FFV,E85,270,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,RNG=360,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,26242,0,21,Lincoln,Town Car FFV,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7458,14.4379,33.0928,23.9476,Large Cars,2009,-2500,,CLKUP,,,FFV,E85,270,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,GAS 440,-1,2850,3050,Premium or E85,Premium Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,26243,0,12,Mercedes-Benz,C300,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.3,16.4,35.5,26.4,Compact Cars,2009,-2250,,EMS 2MODE CLKUP,,,FFV,E85,320,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,GAS 430,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,26244,0,12,Mercedes-Benz,C300 4matic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.8,16.0,34.2,25.6,Compact Cars,2009,-3000,,EMS 2MODE CLKUP,,,FFV,E85,320,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,26245,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,11.0,25.8,17.7,Standard Pickup Trucks 2WD,2009,-6250,,CMODE,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel or All-Wheel Drive,0,GAS 330,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,26246,0,0,Mitsubishi,Raider Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Standard Pickup Trucks 4WD,2009,-6250,,CMODE,,,FFV,E85,240,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,RNG=370,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26247,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4378,10.9928,24.2403,17.1595,Sport Utility Vehicle - 4WD,2009,-7750,,CLKUP,,,FFV,E85,260,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,RNG=400,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,26248,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3226,11.8278,23.9502,17.5336,Standard Pickup Trucks 4WD,2009,-6250,,CLKUP,,,FFV,E85,290,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26249,10,0,Mercedes-Benz,SLR,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic (S5),14.2105,0.0,21.7982,0.0,Two Seaters,2009,-11250,G,EMS 2MODE CLKUP,,S,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2625,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1986,-9250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26250,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2009,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,HEV,-1,2600,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26251,0,9,Lexus,GS 450h,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9,0.0,35.3494,0.0,Compact Cars,2009,-1000,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26252,0,13,Acura,TL 2WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,36.8,0.0,Midsize Cars,2009,-2250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26253,0,13,Acura,TL 4WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,34.3,0.0,Midsize Cars,2009,-3000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26254,0,13,Lexus,GS 350,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.703,0.0,36.5108,0.0,Midsize Cars,2009,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26255,0,13,Lexus,GS 350 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Midsize Cars,2009,-3000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26256,0,13,Lexus,GS 460,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),21.0489,0.0,34.0499,0.0,Midsize Cars,2009,-3000,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26257,0,13,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.159,0.0,33.6487,0.0,Midsize Cars,2009,-3750,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26258,0,13,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4495,0.0,32.0893,0.0,Midsize Cars,2009,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26259,0,11,Lexus,LS 460 L,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.159,0.0,33.6487,0.0,Midsize Cars,2009,-3750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2626,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26260,0,11,Lexus,LS 460 L AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4495,0.0,32.0893,0.0,Midsize Cars,2009,-4750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,HEV,-1,2850,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26261,0,12,Lexus,LS 600h L,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),24.7,0.0,30.3,0.0,Midsize Cars,2009,-2250,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26262,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.1,0.0,42.6998,0.0,Midsize Cars,2009,1500,,VMODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,0,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26263,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.927,0.0,39.9968,0.0,Midsize Cars,2009,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26264,0,15,Infiniti,M35,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S7),20.8,0.0,34.1997,0.0,Large Cars,2009,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26265,0,15,Infiniti,M35x,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6499,0.0,30.5499,0.0,Large Cars,2009,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,0,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26266,0,15,Infiniti,M45,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5,0.0,29.6,0.0,Large Cars,2009,-4750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26267,0,15,Infiniti,M45x,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),17.3,0.0,27.2,0.0,Large Cars,2009,-6750,G,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26268,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,21.4,0.0,Large Cars,2009,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26269,0,15,Maybach,57S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2009,-13250,G,EMS 2MODE CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2627,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26270,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,21.4,0.0,Large Cars,2009,-13250,G,EMS 2MODE CLKUP,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26271,0,15,Maybach,62S,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2009,-13250,G,EMS 2MODE CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,DOHC TURBO,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,95,26272,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,34.7,0.0,Small Station Wagons,2009,-3000,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,95,26273,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0915,0.0,37.2191,0.0,Small Station Wagons,2009,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,DOHC,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,18,95,26274,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3695,0.0,37.5092,0.0,Small Station Wagons,2009,0,,VMODE VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26275,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2009,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26276,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Small Pickup Trucks 2WD,2009,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26277,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5036,0.0,27.9107,0.0,Small Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26278,0,0,Suzuki,Equator 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9677,0.0,26.3129,0.0,Small Pickup Trucks 4WD,2009,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26279,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2869,0.0,32.7073,0.0,Minivan - 2WD,2009,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2628,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26280,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2009,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26281,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2009,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26282,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.6,0.0,Sport Utility Vehicle - 2WD,2009,-500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,4-Wheel or All-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26283,0,0,BMW,X5 xDrive 48i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.7247,0.0,26.6982,0.0,Sport Utility Vehicle - 4WD,2009,-6750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26284,0,0,Honda,Element 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2009,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26285,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel or All-Wheel Drive,0,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26286,0,49,Mercedes-Benz,G55 AMG,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,20.7,0.0,Sport Utility Vehicle - 4WD,2009,-13250,,EMS 2MODE CLKUP,,S,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26287,0,16,Mercedes-Benz,GL320 Bluetec,Y,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.1,0.0,31.5,0.0,Sport Utility Vehicle - 4WD,2009,-3500,,EMS 2MODE CLKUP,T,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26288,0,41,Mercedes-Benz,ML320 Bluetec,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2009,-2750,,EMS 2MODE CLKUP,T,,Diesel,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,HEV,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26289,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.3499,0.0,34.9989,0.0,Sport Utility Vehicle - 4WD,2009,1500,,VMODE VLKUP,,,Hybrid,,,288V Ni-MH, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2629,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1986,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26290,0,0,Toyota,Venza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,35.0,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,CLKUP,,,,,,, +20.589638,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=450,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,26291,0,0,Ford,Expedition 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0994,11.6,27.0,18.6,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310,, +20.589638,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,RNG=450,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,26292,0,0,Lincoln,Navigator 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0994,11.6,27.0,18.6,Sport Utility Vehicle - 2WD,2009,-5250,,CLKUP,,,FFV,E85,310,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,0,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,26293,0,0,smart,fortwo convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AM5),44.3,0.0,57.8,0.0,Two Seaters,2009,3500,,SIL 2MODE CLKUP,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,0,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,26294,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AM5),44.3,0.0,57.8,0.0,Two Seaters,2009,3500,,SIL 2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26295,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2009,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,0,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26296,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2009,-6750,G,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26297,14,14,Chevrolet,Cobalt,N,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2009,2500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26298,7,0,Infiniti,G37 Coupe,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.4973,0.0,36.7324,0.0,Subcompact Cars,2009,-2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26299,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2023,0.0,35.4901,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,263,14,0,Buick,Somerset Regal,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,41.0,0.0,Compact Cars,1985,500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2630,0,0,Dodge,B150/B250 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1986,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26300,7,0,Infiniti,G37x Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.0944,0.0,34.8649,0.0,Subcompact Cars,2009,-3000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26301,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6,0.0,37.9,0.0,Subcompact Cars,2009,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26302,12,0,Saab,9-3 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,37.5,0.0,Subcompact Cars,2009,-500,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26303,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2304,0.0,36.7227,0.0,Compact Cars,2009,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26304,0,15,Saab,9-3 Aero Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),21.657,0.0,37.7639,0.0,Compact Cars,2009,-1000,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26305,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.5,0.0,40.0,0.0,Compact Cars,2009,0,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26306,0,15,Saab,9-3 Sport Sedan,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.3,0.0,39.0,0.0,Compact Cars,2009,-500,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26307,0,14,Infiniti,G37,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),22.4973,0.0,36.7324,0.0,Midsize Cars,2009,-2250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26308,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2023,0.0,35.4901,0.0,Midsize Cars,2009,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,0,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26309,0,14,Infiniti,G37x,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),22.0944,0.0,34.8649,0.0,Midsize Cars,2009,-3000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2631,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.0,0.0,Vans,1986,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26310,0,16,Saab,9-5 Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,38.3,0.0,Midsize Cars,2009,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26311,0,16,Saab,9-5 Sedan,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,37.1,0.0,Midsize Cars,2009,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26312,0,30,Saab,9-3 Aero SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2304,0.0,36.7227,0.0,Small Station Wagons,2009,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26313,0,30,Saab,9-3 Aero SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.657,0.0,37.7639,0.0,Small Station Wagons,2009,-1000,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26314,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.5,0.0,40.0,0.0,Small Station Wagons,2009,0,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26315,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,37.5,0.0,Small Station Wagons,2009,-500,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26316,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5,0.0,38.3,0.0,Midsize Station Wagons,2009,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26317,0,37,Saab,9-5 SportCombi,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,37.1,0.0,Midsize Station Wagons,2009,-1750,,CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26318,0,0,Ford,F150 SFE 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,0.0,28.7,0.0,Standard Pickup Trucks 2WD,2009,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26319,0,0,BMW,X6 xDrive 35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2009,-5750,,3MODE CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2632,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel or All-Wheel Drive,0,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26320,0,0,BMW,X6 xDrive 50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,25.2,0.0,Sport Utility Vehicle - 4WD,2009,-8000,,3MODE CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,HEV,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26321,0,0,Dodge,Durango HEV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,Hybrid,,,300V Ni-MH, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,0,HEV,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26322,0,0,Chrysler,Aspen HEV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.8,0.0,30.1,0.0,Sport Utility Vehicle - 4WD,2009,-1000,,,,,Hybrid,,,300V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26323,0,0,Nissan,370z,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.1874,0.0,36.719,0.0,Two Seaters,2009,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26324,0,0,Nissan,370z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4666,0.0,35.9657,0.0,Two Seaters,2009,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26325,0,19,Infiniti,EX35,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6662,0.0,33.3535,0.0,Small Station Wagons,2009,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26326,0,19,Infiniti,EX35,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2,0.0,32.3795,0.0,Small Station Wagons,2009,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26327,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7197,0.0,32.8808,0.0,Minicompact Cars,2010,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26328,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4637,0.0,30.3378,0.0,Minicompact Cars,2010,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26329,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4171,0.0,30.8027,0.0,Minicompact Cars,2010,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2633,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,23.0,0.0,Vans,1986,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,117,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26330,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,37.5,0.0,Two Seaters,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,101,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26331,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2999,0.0,40.0,0.0,Two Seaters,2010,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,114,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26332,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,33.6,0.0,Two Seaters,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,115,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26333,0,0,Pontiac,Solstice,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.4,0.0,Two Seaters,2010,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,118,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26334,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.4,0.0,37.5,0.0,Two Seaters,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,102,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26335,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2999,0.0,40.0,0.0,Two Seaters,2010,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,113,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26336,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.5,0.0,33.6,0.0,Two Seaters,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,116,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26337,0,0,Saturn,SKY,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.4,0.0,Two Seaters,2010,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,14.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9464,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,10,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.9,0,0.0,0.0,0.0,0.0,0,0,26338,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.3,0.0,Subcompact Cars,2010,-5750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2573,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,9,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.2,0,0.0,0.0,0.0,0.0,0,0,26339,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.0,0.0,Subcompact Cars,2010,-3750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2634,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1986,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,651,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26340,13,0,BMW,650ci,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7597,0.0,30.5375,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,650,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26341,13,0,BMW,650ci,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0385,0.0,31.3747,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,653,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26342,11,0,BMW,650ci Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,28.8,0.0,Subcompact Cars,2010,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,652,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26343,11,0,BMW,650ci Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,31.8,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,661,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26344,13,0,BMW,M6,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.109,0.0,23.227,0.0,Subcompact Cars,2010,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,660,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26345,13,0,BMW,M6,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0599,0.0,23.6182,0.0,Subcompact Cars,2010,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,663,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26346,11,0,BMW,M6 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.9,0.0,23.7,0.0,Subcompact Cars,2010,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,662,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26347,11,0,BMW,M6 Convertible,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic (S7),12.9504,0.0,24.0505,0.0,Subcompact Cars,2010,-11250,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,134,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26348,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3374,0.0,32.7568,0.0,Subcompact Cars,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,130,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26349,13,0,Ford,Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.347,0.0,36.3926,0.0,Subcompact Cars,2010,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2635,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1986,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,131,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26350,13,0,Ford,Mustang,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2165,0.0,32.1109,0.0,Subcompact Cars,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,132,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26351,13,0,Ford,Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.5,0.0,33.8,0.0,Subcompact Cars,2010,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,133,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26352,13,0,Ford,Mustang,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.7,0.0,30.4,0.0,Subcompact Cars,2010,-5750,G,,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,1,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26353,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.2,0.0,41.7998,0.0,Subcompact Cars,2010,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,3,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26354,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0,0.0,42.0,0.0,Subcompact Cars,2010,500,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,2,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26355,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9,0.0,38.0484,0.0,Subcompact Cars,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26356,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,36.4,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,24,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26357,11,11,Lexus,IS 250/IS 250C,N,false,77,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6596,0.0,36.7047,0.0,Subcompact Cars,2010,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,23,PR,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26358,11,11,Lexus,IS 250/IS 250C,Y,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2372,0.0,40.8247,0.0,Subcompact Cars,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,27,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26359,11,11,Lexus,IS 350/IS 350C,Y,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7156,0.0,36.5564,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2636,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Vans,1986,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,71,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26360,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),18.8216,0.0,29.0307,0.0,Subcompact Cars,2010,-5750,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,2,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26361,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.61,0.0,29.14,0.0,Subcompact Cars,2010,-5750,G,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,1,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26362,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.66,0.0,31.61,0.0,Subcompact Cars,2010,-4750,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,85,26363,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.2,0.0,Subcompact Cars,2010,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,85,26364,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.6,0.0,38.2,0.0,Subcompact Cars,2010,0,,,,,,,,, +8.02051,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,2,,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,26365,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AV-S7),54.3737,0.0,62.2674,0.0,Compact Cars,2010,5250,,,,,Hybrid,,,101V Ni-MH, +8.02051,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,1,,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,26366,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6779,0.0,61.2,0.0,Compact Cars,2010,5250,,,,,Hybrid,,,101V Ni-MH, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,6,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26367,12,15,Kia,Forte,Y,false,90,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.3743,0.0,50.9,0.0,Compact Cars,2010,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26368,12,15,Kia,Forte,Y,false,90,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.1433,0.0,47.2964,0.0,Compact Cars,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,7,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26369,12,15,Kia,Forte,N,false,90,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.6,0.0,47.4,0.0,Compact Cars,2010,2250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2637,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Vans,1986,-13000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,8,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26370,12,15,Kia,Forte,N,false,90,97,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.8947,0.0,44.344,0.0,Compact Cars,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,9,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26371,12,15,Kia,Forte,Y,false,90,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.3,0.0,44.6,0.0,Compact Cars,2010,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,95,26372,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.8956,0.0,46.4387,0.0,Compact Cars,2010,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,95,26373,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),30.2378,0.0,46.624,0.0,Compact Cars,2010,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,26374,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0967,0.0,40.1876,0.0,Compact Cars,2010,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,26375,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),28.3381,0.0,40.8873,0.0,Compact Cars,2010,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26376,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.2,0.0,48.4,0.0,Compact Cars,2010,2500,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26377,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Compact Cars,2010,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,8,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26378,0,12,Toyota,Corolla,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,42.2,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,7,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26379,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),27.6,0.0,42.6,0.0,Compact Cars,2010,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2638,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Vans,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,8,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26380,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8911,0.0,31.5002,0.0,Midsize Cars,2010,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,7,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26381,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8911,0.0,31.5002,0.0,Midsize Cars,2010,-4750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,529,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26382,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Midsize Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,528,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26383,0,14,BMW,528i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5958,0.0,38.1696,0.0,Midsize Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,530,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26384,0,14,BMW,528i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8978,0.0,34.7818,0.0,Midsize Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,531,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26385,0,14,BMW,528i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7054,0.0,35.4606,0.0,Midsize Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,535,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26386,0,14,BMW,535i,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.362,0.0,35.8831,0.0,Midsize Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,536,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26387,0,14,BMW,535i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6278,0.0,35.7081,0.0,Midsize Cars,2010,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,538,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26388,0,14,BMW,535i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5025,0.0,34.2853,0.0,Midsize Cars,2010,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,537,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26389,0,14,BMW,535i xDrive,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9535,0.0,34.7288,0.0,Midsize Cars,2010,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3303,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2639,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,37.0,0.0,Vans,1986,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,551,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26390,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7597,0.0,30.5375,0.0,Midsize Cars,2010,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,550,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26391,0,14,BMW,550i,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),19.0385,0.0,31.3747,0.0,Midsize Cars,2010,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,561,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26392,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.109,0.0,23.227,0.0,Midsize Cars,2010,-11250,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,5.0,Rear-Wheel Drive,560,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26393,0,14,BMW,M5,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),13.0599,0.0,23.6182,0.0,Midsize Cars,2010,-11250,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,112,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26394,0,16,Cadillac,CTS,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0999,0.0,34.9,0.0,Midsize Cars,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,107,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26395,0,16,Cadillac,CTS,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.0,0.0,Midsize Cars,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,109,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26396,0,16,Cadillac,CTS AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2999,0.0,37.2,0.0,Midsize Cars,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,108,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26397,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.0,0.0,Midsize Cars,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,111,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26398,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2999,0.0,37.2,0.0,Midsize Cars,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,124,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26399,0,16,Ford,Fusion AWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6981,0.0,33.5,0.0,Midsize Cars,2010,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4232,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,264,14,0,Buick,Somerset Regal,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3404,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2640,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1986,-4250,,,,,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,120,,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,26400,0,16,Ford,Fusion AWD FFV,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,16.1,35.4655,25.8,Midsize Cars,2010,-1000,,,,,FFV,E85,250,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,118,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26401,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.6878,0.0,42.908,0.0,Midsize Cars,2010,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,102,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26402,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8,0.0,40.2,0.0,Midsize Cars,2010,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,127,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26403,0,16,Ford,Fusion FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Midsize Cars,2010,-1000,,,,,,,,, +14.964294,4.994,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,403.95454545454544,22,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,122,,-1,2500,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,26404,0,16,Ford,Fusion FWD FFV,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (A6),23.5,16.8,37.9,27.4,Midsize Cars,2010,-500,,,,,FFV,E85,280,, +8.438016000000001,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,116,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26405,0,12,Ford,Fusion Hybrid FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2010,5000,,,,,Hybrid,,,275V Ni-MH, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,141,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26406,0,16,Ford,Fusion S FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.2652,0.0,47.6493,0.0,Midsize Cars,2010,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,139,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26407,0,16,Ford,Fusion S FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5,0.0,44.2,0.0,Midsize Cars,2010,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,6,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26408,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6769,0.0,34.4855,0.0,Midsize Cars,2010,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,5,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26409,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9048,0.0,32.6701,0.0,Midsize Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2641,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Vans,1986,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26410,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5111,0.0,29.7559,0.0,Midsize Cars,2010,-5750,,,,S,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,121,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,26411,0,16,Mercury,Milan AWD FFV,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,16.1,35.4655,25.8,Midsize Cars,2010,-1000,,,,,FFV,E85,260,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,119,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26412,0,16,Mercury,Milan,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.6878,0.0,42.908,0.0,Midsize Cars,2010,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,103,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26413,0,16,Mercury,Milan,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8,0.0,40.2,0.0,Midsize Cars,2010,500,,,,,,,,, +14.964294,4.994,0.0,0.0,19,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,403.95454545454544,22,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,123,FFV,-1,2500,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,26414,0,16,Mercury,Milan FFV,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (A6),23.5,16.8,37.9,27.4,Midsize Cars,2010,-500,,,,,FFV,E85,280,, +8.438016000000001,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,117,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26415,0,12,Mercury,Milan Hybrid FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2010,5000,,,,,Hybrid,,,275V Ni-MH, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,142,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26416,0,16,Mercury,Milan S,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.2652,0.0,47.6493,0.0,Midsize Cars,2010,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,140,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26417,0,16,Mercury,Milan S,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5,0.0,44.2,0.0,Midsize Cars,2010,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,125,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26418,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6981,0.0,33.5,0.0,Midsize Cars,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,126,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26419,0,16,Lincoln,MKZ FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Midsize Cars,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3605,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2642,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Vans,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,7,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,95,26420,0,0,Mazda,Speed 3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.7,0.0,Midsize Cars,2010,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,17,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26421,0,15,Toyota,Camry,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0,0.0,46.8,0.0,Midsize Cars,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26422,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0186,0.0,45.0566,0.0,Midsize Cars,2010,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,14,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26423,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.8,0.0,Midsize Cars,2010,0,,,,,,,,, +9.690534,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,Hybrid,-1,1600,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26424,0,11,Toyota,Camry Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.2454,0.0,48.2,0.0,Midsize Cars,2010,4000,,,,,Hybrid,,,245V Ni-MH, +6.5922,0.0,0.0,0.0,51,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,177.74,50,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,20,,-1,1100,0,Regular,Regular Gasoline,-1,-1,48,0.0,0,0.0,0.0,0.0,0.0,22,94,26425,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.9537,0.0,69.6404,0.0,Midsize Cars,2010,6500,,,,,Hybrid,,,202V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,6,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26426,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8911,0.0,31.5002,0.0,Large Cars,2010,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,103,,-1,2600,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26427,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2999,0.0,40.4,0.0,Compact Cars,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,106,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26428,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.0,0.0,Compact Cars,2010,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,104,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26429,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7999,0.0,33.8,0.0,Compact Cars,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3604,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2643,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Vans,1986,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,105,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26430,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7999,0.0,35.2,0.0,Compact Cars,2010,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,5,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26431,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.5,0.0,44.4,0.0,Large Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,6,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26432,0,16,Hyundai,Sonata,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.8492,0.0,44.8,0.0,Large Cars,2010,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,7,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26433,0,16,Hyundai,Sonata,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.1,0.0,40.1,0.0,Large Cars,2010,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,144,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26434,0,18,Lincoln,MKS AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4,0.0,31.5,0.0,Large Cars,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,145,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26435,0,18,Lincoln,MKS FWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,33.0,0.0,Large Cars,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,100,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26436,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.0,0.0,Small Station Wagons,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,110,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26437,0,29,Cadillac,CTS Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2999,0.0,37.2,0.0,Small Station Wagons,2010,-1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,1,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26438,0,24,Kia,Soul,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,43.5,0.0,Small Station Wagons,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26439,0,24,Kia,Soul,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.8,0.0,44.2,0.0,Small Station Wagons,2010,2250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2644,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26440,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.9,0.0,41.8,0.0,Small Station Wagons,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26441,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.5,0.0,42.8,0.0,Small Station Wagons,2010,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,1,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26442,0,20,Pontiac,Vibe,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,43.7,0.0,Small Station Wagons,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26443,0,20,Pontiac,Vibe,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6,0.0,44.8,0.0,Small Station Wagons,2010,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,5,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26444,0,20,Pontiac,Vibe,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3297,0.0,35.5877,0.0,Small Station Wagons,2010,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26445,0,20,Pontiac,Vibe,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1,0.0,38.6,0.0,Small Station Wagons,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26446,0,20,Pontiac,Vibe,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.0,0.0,40.0,0.0,Small Station Wagons,2010,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26447,0,20,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7182,0.0,43.629,0.0,Small Station Wagons,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,6,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26448,0,20,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5698,0.0,44.7393,0.0,Small Station Wagons,2010,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,11,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26449,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.49,0.0,36.1596,0.0,Small Station Wagons,2010,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2645,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1986,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,10,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26450,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2141,0.0,38.9575,0.0,Small Station Wagons,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,9,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26451,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1117,0.0,40.2796,0.0,Small Station Wagons,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,13,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26452,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,12,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26453,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,540,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26454,0,34,BMW,535i Sport Wagon xDrive,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3493,0.0,32.5289,0.0,Midsize Station Wagons,2010,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,539,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26455,0,34,BMW,535i Sport Wagon xDrive,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3684,0.0,33.7229,0.0,Midsize Station Wagons,2010,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26456,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.6995,0.0,25.7499,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,31,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26457,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5688,0.0,28.0212,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,35,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26458,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.229,0.0,25.5551,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,32,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26459,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.3004,0.0,26.2295,0.0,Standard Pickup Trucks 4WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2646,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.8889,0.0,23.0,0.0,Vans,1986,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,36,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26460,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4562,0.0,23.4318,0.0,Standard Pickup Trucks 4WD,2010,-7750,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,39,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,26461,0,0,Toyota,Tundra 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3446,11.8549,23.9993,17.5664,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,290,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26462,0,0,Ford,Transit Connect,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,35.0,0.0,Special Purpose Vehicle 2WD,2010,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,28,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26463,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.4,0.0,34.0,0.0,Minivan - 2WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,29,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26464,0,0,Toyota,Sienna 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.2,0.0,Minivan - 4WD,2010,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,122,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26465,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5999,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,142,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26466,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,45.1,0.0,Sport Utility Vehicle - 2WD,2010,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,119,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26467,0,0,Chevrolet,Traverse FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5999,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,120,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26468,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5999,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,143,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26469,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,45.1,0.0,Sport Utility Vehicle - 2WD,2010,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2647,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Vans,1986,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,11,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26470,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,29.5,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,13,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26471,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,0.0,29.9,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,1,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26472,0,0,Lexus,RX 350 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,,,,,,, +10.987,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,18,Hybrid; PR,-1,2000,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26473,0,0,Lexus,RX 450h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),41.4485,0.0,39.0959,0.0,Sport Utility Vehicle - 2WD,2010,2000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,5,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26474,0,0,Mazda,CX-7 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,283,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26476,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,24.9477,0.0,Sport Utility Vehicle - 2WD,2010,-7750,,,,,,,,, +21.974,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,26477,0,0,Nissan,Armada 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2974,11.2334,25.1952,18.489,Sport Utility Vehicle - 2WD,2010,-6250,,,,,FFV,E85,310,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,121,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26478,0,0,Saturn,Outlook FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5999,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,33,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26479,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.605,0.0,26.5484,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2648,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1986,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,37,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26480,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8655,0.0,25.6179,0.0,Sport Utility Vehicle - 2WD,2010,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,11,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26481,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,126,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26482,0,0,Buick,Enclave AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,30.9,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,144,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26483,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.7999,0.0,40.3,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,124,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26484,0,0,Chevrolet,Traverse AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,123,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26485,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,145,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26486,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.7999,0.0,40.3,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,10,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26487,0,0,Kia,Borrego 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,29.2986,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,12,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26488,0,0,Kia,Borrego 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,1,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26489,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6318,0.0,30.347,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2649,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Vans,1986,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,6,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26490,0,0,Land Rover,LR4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3076,0.0,23.8204,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,2,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26491,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.1837,0.0,24.5722,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,3,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26492,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1205,0.0,25.5082,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,4,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26494,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4032,0.0,23.5743,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,2,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26495,0,0,Lexus,RX 350 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4854,0.0,33.7937,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,19,Hybrid; PR,-1,2100,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26496,0,0,Lexus,RX 450h AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),39.5123,0.0,38.7193,0.0,Sport Utility Vehicle - 4WD,2010,1500,,,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel Drive,6,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26497,0,0,Mazda,CX-7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2010,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,287,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26499,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0923,0.0,24.1924,0.0,Sport Utility Vehicle - 4WD,2010,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4407,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,265,14,0,Buick,Somerset Regal,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2650,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Vans,1986,-7750,,,,,,,,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,291,,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,26500,0,0,Nissan,Armada 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1498,11.4,24.1491,18.0,Sport Utility Vehicle - 4WD,2010,-7750,,,,,FFV,E85,310,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,1,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26501,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.8494,0.0,27.5811,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,2,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26502,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9398,0.0,28.1127,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,4,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26503,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.0831,0.0,25.56,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,5,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26504,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.4863,0.0,23.578,0.0,Sport Utility Vehicle - 4WD,2010,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,3,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26505,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.951,0.0,26.388,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,9,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26506,0,0,Porsche,Cayenne TransSiberia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.4863,0.0,23.578,0.0,Sport Utility Vehicle - 4WD,2010,-11250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,7,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26507,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5425,0.0,25.7761,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,6,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26508,0,0,Porsche,Cayenne Turbo Kit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5425,0.0,25.7761,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,8,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26509,0,0,Porsche,Cayenne Turbo S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5425,0.0,25.7761,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2651,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,125,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26510,0,0,Saturn,Outlook AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,2,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26511,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0678,0.0,35.9226,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,3,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26512,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8512,0.0,32.9103,0.0,Sport Utility Vehicle - 4WD,2010,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,1,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26513,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8571,0.0,37.071,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,34,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26514,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1909,0.0,24.8718,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,38,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26515,0,0,Toyota,Sequoia 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,40,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,26516,0,0,Toyota,Sequoia 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4255,11.0001,24.2206,17.1679,Sport Utility Vehicle - 4WD,2010,-7750,,,,,FFV,E85,260,, +18.304342000000002,0.0,0.0,0.0,16,15.705,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7186,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.4048,0,0.0,0.0,0.0,0.0,0,0,26517,0,0,Volvo,XC 60 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3392,0.0,29.7892,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,431,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26518,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.8263,0.0,39.593,0.0,Two Seaters,2009,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,430,,-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26519,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8286,0.0,40.3703,0.0,Two Seaters,2009,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2652,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1986,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26520,0,0,BMW,Z4 sDrive35i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.0758,0.0,35.2803,0.0,Two Seaters,2009,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,Dual clutch transmission,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26521,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.3727,0.0,33.6296,0.0,Two Seaters,2009,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,1,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26522,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.4646,0.0,37.62,0.0,Two Seaters,2009,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,2,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26523,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.1813,0.0,37.0028,0.0,Two Seaters,2009,-1750,,,,S,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,10,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26524,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.4518,0.0,38.8744,0.0,Two Seaters,2009,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,11,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26525,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2009,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,12,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26526,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0651,0.0,38.6043,0.0,Two Seaters,2009,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,2,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26527,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4669,0.0,41.3529,0.0,Two Seaters,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,1,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26528,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4331,0.0,37.3296,0.0,Two Seaters,2009,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,6,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26529,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9971,0.0,Two Seaters,2009,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2653,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,5,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26530,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2009,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,4,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26531,0,0,Porsche,Cayman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4669,0.0,41.3529,0.0,Two Seaters,2009,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26532,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4331,0.0,37.3296,0.0,Two Seaters,2009,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,8,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26533,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9971,0.0,Two Seaters,2009,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,7,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26534,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2009,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26535,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.5196,0.0,26.1157,0.0,Minicompact Cars,2009,-8000,G,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,14,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26536,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.6246,0.0,47.7333,0.0,Minicompact Cars,2009,1500,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,15,,-1,1900,0,Premium,Premium Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26537,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.8595,0.0,51.7245,0.0,Minicompact Cars,2009,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26538,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7259,0.0,47.5576,0.0,Minicompact Cars,2009,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,20,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,26539,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9663,0.0,44.5673,0.0,Minicompact Cars,2009,750,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2654,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,305,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26540,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,34.7,0.0,Compact Cars,2009,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,42,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26541,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,34.8,0.0,Midsize Cars,2009,-2250,,,,S,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26542,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.3869,0.0,46.2702,0.0,Midsize Cars,2009,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,103,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26543,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.9,0.0,43.0998,0.0,Midsize Cars,2009,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,13,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,26544,0,13,Nissan,Sentra FE,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.4392,0.0,47.382,0.0,Midsize Cars,2009,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,26545,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,46.5,0.0,Midsize Cars,2009,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,26546,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.1,0.0,47.3,0.0,Midsize Cars,2009,2500,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,26547,0,0,Nissan,Versa FE,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.8,0.0,47.5,0.0,Midsize Cars,2009,2750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26548,0,14,BMW,750i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,30.1784,0.0,Large Cars,2009,-5750,G,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26549,0,14,BMW,750li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.5625,0.0,29.608,0.0,Large Cars,2009,-5750,G,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2655,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1986,-4250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,14,,-1,1900,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26550,0,11,Nissan,Cube,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.7,0.0,42.8381,0.0,Small Station Wagons,2009,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26551,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.4479,0.0,41.3,0.0,Small Station Wagons,2009,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,43,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26552,0,34,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,34.8,0.0,Midsize Station Wagons,2009,-2250,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,60,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26553,0,41,Mercedes-Benz,ML350,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4021,0.0,28.6874,0.0,Sport Utility Vehicle - 2WD,2009,-4750,,,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,167,,-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26554,0,0,Saturn,Vue Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.5,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2009,2250,,,,,Hybrid,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,44,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26555,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2009,-3000,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,46,,-1,2950,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26556,0,0,Audi,Q7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2009,-2750,,,T,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,47,,-1,2950,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26557,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9,0.0,34.4,0.0,Sport Utility Vehicle - 4WD,2009,-2750,,,T,,Diesel,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,,-1,2200,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26558,0,0,BMW,335d,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.0,0.0,51.1,0.0,Compact Cars,2009,1000,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,0,,-1,2700,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26559,0,0,BMW,X5 xDrive35d,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.1477,0.0,36.6053,0.0,Sport Utility Vehicle - 4WD,2009,-1500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2656,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,9002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26561,0,0,Alfa Romeo,Spider Veloce 2000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Two Seaters,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,12710,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26562,0,0,Bertone,X1/9,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1984,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4180,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26563,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,28.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4161,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26564,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,28.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38061,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,50,26565,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Two Seaters,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,50,26566,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Two Seaters,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38061,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,50,26567,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Two Seaters,1984,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38060,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,50,26568,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Two Seaters,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26569,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Two Seaters,1984,0,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2657,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Vans,1986,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26570,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Two Seaters,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3130,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26571,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Two Seaters,1984,500,,,T,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,26011,,-1,1350,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,0,0,26572,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,67.0,0.0,Two Seaters,1984,5250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26573,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Two Seaters,1984,1750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26574,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,49.0,0.0,Two Seaters,1984,2750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,33740,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26575,0,0,Kenyon Corporation Of America,Kenyon 5.0 Cabrio,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0,0.0,Two Seaters,1984,-7750,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.8,,69001,(GUZZLER),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,26576,0,0,Lamborghini,Countach Lp500s,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Two Seaters,1984,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,35001,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26577,0,0,Lotus,Esprit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,25.0,0.0,Two Seaters,1984,-7750,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,,56010,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26578,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,,56010,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26579,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2658,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Vans,1986,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,,56011,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26580,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,,20040,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26581,0,0,Mercedes-Benz,380SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41310,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26582,0,0,Pininfarina,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Two Seaters,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26583,0,0,Pininfarina,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4236,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26584,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Two Seaters,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4223,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26585,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,47.0,0.0,Two Seaters,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4237,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26586,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,40.0,0.0,Two Seaters,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,,9001,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26587,7,0,Alfa Romeo,GT V6 2.5,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1984,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,10010,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26588,8,0,Avanti Motor Corporation,Avanti II,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,,36001,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26589,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,25.0,0.0,Minicompact Cars,1984,-7750,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2659,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Vans,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,42026,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26590,4,0,Porsche,911 SC,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,,42031,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,74,26591,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Minicompact Cars,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,,42031,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,74,26592,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,27.0,0.0,Minicompact Cars,1984,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,42010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26593,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Minicompact Cars,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,42010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26594,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Minicompact Cars,1984,-1750,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,57010,(CAL)(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,73,26595,0,0,Toyota,Starlet,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.0,0.0,54.0,0.0,Minicompact Cars,1984,4000,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,57011,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,10,73,26596,0,0,Toyota,Starlet,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,57.0,0.0,Minicompact Cars,1984,4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26597,6,0,Volkswagen,Rabbit Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Minicompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26598,6,0,Volkswagen,Rabbit Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Minicompact Cars,1984,0,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,26599,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1984,-18500,T,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,266,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Compact Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4852,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2660,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,26600,0,7,Aston Martin,Saloon/vantage/volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,15.0,0.0,Subcompact Cars,1984,-18500,T,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7001,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,26601,0,7,Aston Martin,Saloon/vantage/volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,13.0,0.0,Subcompact Cars,1984,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64020,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26602,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26603,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64051,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26604,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64051,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26605,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64041,"(FFS,TRBO)",-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26606,8,0,Audi,Quattro,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,28.0,0.0,Subcompact Cars,1984,-5250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,64011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26607,12,12,Audi,4000,N,false,87,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,64011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26608,12,12,Audi,4000,N,false,87,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64061,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26609,0,12,Audi,4000 S quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4870,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2661,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,12010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26610,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,12010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26611,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26612,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26613,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26614,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4221,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,26615,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4232,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,26616,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4234,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,26617,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,40.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,26618,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4131,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,26619,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2662,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1986,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4154,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,85,26620,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4152,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,85,26621,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26622,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26623,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26624,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,78,26625,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4101,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,9,78,26626,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,78,26627,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4111,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,78,26628,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,37.0,0.0,46.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4111,(DIESEL),-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,9,78,26629,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,60.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2663,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.6667,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,26630,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,26631,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,26632,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,26633,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26634,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26635,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26636,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26637,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38050,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26638,0,10,Nissan,Maxima,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38050,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26639,0,10,Nissan,Maxima,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4854,(305),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2664,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0769,0.0,Vans,1986,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,84,26640,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,26641,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,82,26642,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,82,26643,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38020,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,82,26644,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,38.0,0.0,44.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +9.299835,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,248.29268292682926,41,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38020,(DIESEL),-1,1450,0,Diesel,Diesel,-1,-1,46,0.0,0,0.0,0.0,0.0,0.0,16,82,26645,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,50.0,0.0,66.0,0.0,Subcompact Cars,1984,4750,,,,,Diesel,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38020,(DIESEL),-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,16,82,26646,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,38030,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,26647,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1984,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,38030,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,26648,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1984,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38041,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,76,26649,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,41.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2665,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1986,-3500,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,76,26650,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38061,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,73,26651,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Subcompact Cars,1984,-4250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38060,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,73,26652,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38061,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,73,26653,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,73,26654,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,26655,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,26656,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,77,26657,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,77,26658,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,53.0,0.0,Subcompact Cars,1984,4000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,77,26659,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,37.0,0.0,48.0,0.0,Subcompact Cars,1984,3000,,,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2666,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.0,0.0,Vans,1986,-3500,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,77,26660,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49030,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,77,26661,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26662,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26663,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26664,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26665,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,26666,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,26667,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,83,26668,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,43.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,26669,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2667,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26670,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26671,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26672,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26673,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,86,26674,0,14,Ford,Laser,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,26675,0,14,Ford,Laser,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,40.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,26676,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3301,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,26677,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3500,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,26678,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3702,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,26679,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2668,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3730,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,84,26680,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,29.0,0.0,Subcompact Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3711,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,26681,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,81,26682,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26030,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,81,26683,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1984,2250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,26011,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,15,70,26684,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.0,0.0,55.0,0.0,Subcompact Cars,1984,4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,70,26685,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,70,26686,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,45.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26687,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26688,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26689,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2669,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26690,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29020,(DIESEL),-1,2200,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26691,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29020,(DIESEL),-1,1700,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,26692,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Manual 4-spd,44.0,0.0,54.0,0.0,Subcompact Cars,1984,3500,,,,,,,,, +11.924172,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29020,(DIESEL),-1,1850,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26693,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,29010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,26694,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,29010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,77,26695,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,,30550,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26696,12,0,Jaguar,XJS,N,false,73,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1984,-9250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,,30540,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26697,0,10,Jaguar,XJ,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,26698,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3301,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,84,26699,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,267,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Compact Cars,1985,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2670,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3500,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,26700,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3702,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,84,26701,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3730,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,15,84,26702,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,29.0,0.0,Subcompact Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3711,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,26703,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,86,26704,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,26705,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,40.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56020,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,86,26706,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20010,(DIESEL),-1,2050,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26707,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.0,0.0,44.0,0.0,Subcompact Cars,1984,1750,,,,,Diesel,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20011,(DIESEL),-1,2100,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26708,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,Diesel,,,, +12.739500000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20011,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26709,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2671,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Vans,1986,-500,,SIL,,,,,,, +12.739500000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20010,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,26710,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,51.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,20020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26711,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,20020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26712,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,49040,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,78,26713,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,78,26714,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,35.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,78,26715,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49011,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,77,26716,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,53.0,0.0,Subcompact Cars,1984,4000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49011,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,77,26717,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,37.0,0.0,48.0,0.0,Subcompact Cars,1984,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,77,26718,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49031,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,77,26719,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2672,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1986,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26720,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26721,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26722,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26723,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,49040,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26724,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26725,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,35.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26726,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,29.0,0.0,38.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26727,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,77,26728,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,53.0,0.0,Subcompact Cars,1984,4000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,77,26729,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,37.0,0.0,48.0,0.0,Subcompact Cars,1984,3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2673,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,28.0,0.0,Vans,1986,-3250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,77,26730,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49030,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,77,26731,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26732,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,26733,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49062,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26734,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49060,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,26735,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,26736,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,26737,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,77,26738,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4221,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,26739,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2674,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Vans,1986,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4233,(CAL)(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,26740,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4235,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,26741,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,26742,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4131,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,26743,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4154,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,85,26744,0,0,Pontiac,Firebird,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4152,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,85,26745,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,78,26746,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4101,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,9,78,26747,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,78,26748,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4111,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,78,26749,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,37.0,0.0,46.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2675,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1986,-1750,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4111,(DIESEL),-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,9,78,26750,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,60.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4203,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26751,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4210,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26752,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4211,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26753,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26754,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,43001,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,83,26755,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,83,26756,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,83,26757,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26758,0,12,Renault,18i,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26759,0,12,Renault,18i,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2676,0,0,Toyota,Cargo Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1986,-1750,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44014,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,26760,9,0,Rolls-Royce,Corniche,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1984,-22500,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,66010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,78,26761,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,66010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,78,26762,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1984,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,78,26763,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,26764,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,78,26765,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,26766,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,57060,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,26767,10,0,Toyota,Celica,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,34.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,57060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,26768,10,0,Toyota,Celica,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57070,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,76,26769,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2677,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57070,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,14,76,26770,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57031,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,26771,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57031,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,26772,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57070,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26773,0,13,Toyota,Cressida,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57070,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26774,0,13,Toyota,Cressida,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,26775,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,42.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57020,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,84,26776,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1984,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,26777,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59022,(DIESEL),-1,1700,0,Diesel,Diesel,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,26778,13,13,Volkswagen,Jetta,Y,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,53.0,0.0,Subcompact Cars,1984,3500,,,,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59023,"(DSL,TRBO)",-1,1750,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,26779,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1984,3250,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2678,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26780,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59041,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26781,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59040,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26782,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59041,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26783,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26784,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59010,(DIESEL),-1,2050,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,14,79,26785,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,35.0,0.0,44.0,0.0,Subcompact Cars,1984,1750,,,,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59002,(DIESEL),-1,1550,0,Diesel,Diesel,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,14,79,26786,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,47.0,0.0,61.0,0.0,Subcompact Cars,1984,4250,,,,,Diesel,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59002,(DIESEL),-1,1650,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,14,79,26787,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,57.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,79,26788,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,45.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59031,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,79,26789,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2679,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Vans,1986,-500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,26790,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59041,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,26791,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59040,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,14,79,26792,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59041,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,14,79,26793,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,26794,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59060,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,73,26795,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,26796,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26797,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26798,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26799,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,268,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2680,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4425,"(FFS,TRBO)",-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26800,13,0,Buick,Riviera Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Compact Cars,1984,-6250,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4430,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26801,13,0,Buick,Riviera Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Compact Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4330,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26802,13,0,Buick,Riviera Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4200,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26803,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4210,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26804,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4211,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26805,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,26806,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26807,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26808,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26809,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Compact Cars,1984,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2681,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.9231,0.0,Vans,1986,-4250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4229,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26810,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26811,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26812,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26813,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26814,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4602,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26815,12,0,Cadillac,Eldorado Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,84,26816,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,84,26817,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4122,(FFS)(SIL),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,84,26818,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,47.0,0.0,Compact Cars,1984,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,84,26819,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2682,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Vans,1986,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,12120,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26820,13,0,Bill Dovell Motor Car Company,Dovell 230CE,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,12120,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,26821,0,13,Bill Dovell Motor Car Company,Dovell 230E,N,false,0,189,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,86,26822,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.0,0.0,Compact Cars,1984,0,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38040,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,86,26823,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Compact Cars,1984,1750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,26824,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,49.0,0.0,Compact Cars,1984,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,26825,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,26826,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1984,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,85,26827,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1984,0,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3110,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,26828,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,56.0,0.0,Compact Cars,1984,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3102,(CALIF),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,26829,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,44.0,0.0,Compact Cars,1984,1500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2683,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,85,26830,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,85,26831,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,26832,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3130,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,26833,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1984,500,,,T,,,,,, +9.783936,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.02564102564105,39,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3200,(DIESEL),-1,1500,0,Diesel,Diesel,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,17,85,26834,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.0,0.0,68.0,0.0,Compact Cars,1984,4500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3211,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,26835,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3210,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,26836,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3261,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26837,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1984,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3401,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26838,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3400,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26839,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1984,500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2684,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3501,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26840,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3500,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26841,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26842,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26843,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3710,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26844,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,33740,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26845,15,0,Kenyon Corporation Of America,Kenyon 5.0 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0,0.0,Compact Cars,1984,-7750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,33740,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26846,0,15,Kenyon Corporation Of America,Kenyon 5.0 Sp Sedan,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0,0.0,Compact Cars,1984,-7750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3501,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26847,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3500,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26848,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26849,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2685,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26850,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3710,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26851,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,85,26852,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1984,0,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3110,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,26853,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,56.0,0.0,Compact Cars,1984,3500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3102,(CALIF),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,26854,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1984,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,85,26855,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,85,26856,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,26857,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3130,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,26858,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1984,500,,,T,,,,,, +9.783936,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.02564102564105,39,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3200,(DIESEL),-1,1500,0,Diesel,Diesel,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,17,85,26859,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.0,0.0,68.0,0.0,Compact Cars,1984,4500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2686,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3211,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,26860,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3210,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,26861,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3262,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26862,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3401,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26863,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3400,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26864,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Compact Cars,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,87,26865,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,87,26866,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56050,(DIESEL),-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,21,87,26867,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,54.0,0.0,Compact Cars,1984,3000,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20031,(CALIF),-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26868,0,13,Mercedes-Benz,300D/300CD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20030,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26869,0,13,Mercedes-Benz,300D/300CD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,33.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2687,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,Vans,1986,-7750,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20030,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26870,0,15,Mercedes-Benz,300SD/380SE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,33.0,0.0,Compact Cars,1984,-1500,,,T,,Diesel,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20031,(CALIF),-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26871,0,15,Mercedes-Benz,300SD/380SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,,20040,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26872,0,15,Mercedes-Benz,300SD/380SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,20050,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26873,0,15,Mercedes-Benz,500SEC,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Compact Cars,1984,-9250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4200,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,83,26874,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,83,26875,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,83,26876,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,83,26877,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,83,26878,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26879,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Compact Cars,1984,0,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4852,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2688,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Vans,1986,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4230,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26880,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26881,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26882,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26883,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26884,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41026,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26885,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,31.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41020,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26886,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41026,"(DSL,TRBO)",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26887,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Compact Cars,1984,250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41020,"(DSL,TRBO)",-1,2450,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26888,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Compact Cars,1984,-250,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41020,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26889,0,14,Peugeot,604 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2689,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41020,"(DSL,TRBO)",-1,2450,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26890,0,14,Peugeot,604 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Compact Cars,1984,-250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,26891,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,49.0,0.0,Compact Cars,1984,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,26892,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,26893,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4200,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,84,26894,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4210,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,84,26895,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4211,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,84,26896,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,84,26897,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1984,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4201,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,16,84,26898,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,53.0,0.0,Compact Cars,1984,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,84,26899,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,269,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2690,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1986,-9250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,26900,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Compact Cars,1984,500,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1120,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,16,88,26901,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,52.0,0.0,Compact Cars,1984,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1110,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,26902,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Compact Cars,1984,2500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44014,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,26903,14,0,Rolls-Royce,Camargue,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Compact Cars,1984,-22500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,87,26904,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,87,26905,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,87,26906,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,87,26907,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +11.924172,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,57041,"(DSL,TRBO)",-1,1850,0,Diesel,Diesel,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,20,89,26908,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,52.0,0.0,Compact Cars,1984,2750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,57050,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,89,26909,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Compact Cars,1984,1500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2691,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1986,-9250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,57050,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,89,26910,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1984,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,85,26911,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Compact Cars,1984,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57030,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,26912,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Compact Cars,1984,2500,,,,,,,,, +12.306357,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,57040,(DIESEL),-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,20,85,26913,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,38.0,0.0,49.0,0.0,Compact Cars,1984,2500,,,,,Diesel,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,57040,(DIESEL),-1,1550,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,20,85,26914,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 4-spd,47.0,0.0,59.0,0.0,Compact Cars,1984,4250,,,,,Diesel,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,57040,(DIESEL),-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,20,85,26915,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Compact Cars,1984,3750,,,,,Diesel,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59003,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26916,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59004,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26917,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59003,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26918,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,50.0,0.0,Compact Cars,1984,3000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59004,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,26919,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,50.0,0.0,Compact Cars,1984,3000,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2692,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1986,-4500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59070,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26920,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59072,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26921,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60030,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26922,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Compact Cars,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60030,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26923,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60015,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26924,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60050,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26925,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60015,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26926,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Compact Cars,1984,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60050,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26927,14,14,Volvo,240 DL/GL/Turbo,Y,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60010,(DIESEL),-1,2450,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26928,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Compact Cars,1984,-250,,,,,Diesel,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60010,(DIESEL),-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26929,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1984,500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2693,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1986,-5500,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64071,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26930,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64031,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26931,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Cars,1984,-4250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64071,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26932,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,12211,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,26933,16,0,Bitter Gmbh and Co. Kg,SC,N,false,1,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Midsize Cars,1984,-9250,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,12210,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26934,16,0,Bitter Gmbh and Co. Kg,SC,N,false,1,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Midsize Cars,1984,-7750,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26935,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4402,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26936,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4416,"(CAL,FFS)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26937,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4303,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26938,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4401,(GM-BUICK),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26939,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2694,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1986,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4420,"(FFS,TRBO)",-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26940,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4435,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26941,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4302,(DIESEL),-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26942,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Midsize Cars,1984,-1000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26943,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4425,"(FFS,TRBO)",-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26944,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Midsize Cars,1984,-6250,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4430,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26945,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4330,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26946,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4350,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26947,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4600,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26948,15,0,Cadillac,Eldorado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4350,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26949,15,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2695,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1986,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4600,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26950,0,14,Cadillac,Seville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4350,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26951,0,14,Cadillac,Seville,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26952,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4224,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26953,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,38.0,0.0,Midsize Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26954,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26955,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,95,26956,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4230,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,95,26957,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Midsize Cars,1984,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,95,26958,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,95,26959,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2696,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Vans,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4140,(GM-CHEV),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26960,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4141,(GM-CHEV),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26961,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4152,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26962,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4154,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26963,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26964,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,26965,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26966,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26967,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26968,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,26969,0,14,Chrysler,Executive Sedan/Limousine,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2697,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26970,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26971,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Midsize Cars,1984,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2121,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,26972,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26973,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2121,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,26974,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,43.0,0.0,Midsize Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26975,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2170,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26976,0,16,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26977,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26978,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,41.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,26979,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Midsize Cars,1984,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2844,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2698,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,24.0,0.0,Vans,1986,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26980,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2170,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,26981,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2180,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,26982,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Midsize Cars,1984,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,26983,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,26984,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Midsize Cars,1984,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26985,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26986,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2120,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26987,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,39.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2130,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,26988,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Midsize Cars,1984,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26989,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2699,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1986,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26990,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26991,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,26992,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3720,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26993,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3711,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,26994,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,33740,(GUZZLER),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,26995,0,15,Kenyon Corporation Of America,Kenyon 5.0 Sedan,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0,0.0,Midsize Cars,1984,-7750,T,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,3600,"(DSL,TRBO)",-1,2600,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26996,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,-1000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26997,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,3600,"(DSL,TRBO)",-1,2600,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,26998,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,26999,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4230,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Two Seaters,1985,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4603,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,270,12,0,Cadillac,Eldorado Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Compact Cars,1985,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2700,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1986,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27000,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27001,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27002,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3720,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27003,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3711,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27004,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,4.9,,36002,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27005,0,10,Maserati,Quattroporte,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.0,0.0,13.0,0.0,Midsize Cars,1984,-22500,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,20050,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27006,0,15,Mercedes-Benz,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Midsize Cars,1984,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27007,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4402,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27008,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4416,"(CAL,FFS)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27009,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2701,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,Vans,1986,-9250,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27010,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,43.0,0.0,Midsize Cars,1984,250,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4401,(GM-BUICK),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27011,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4301,(DIESEL),-1,2600,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27012,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize Cars,1984,-1000,,,,,Diesel,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4302,(DIESEL),-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27013,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,41.0,0.0,Midsize Cars,1984,-1000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4331,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27014,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4331,(GM-OLDS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27015,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27016,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27017,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4430,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27018,15,0,Oldsmobile,Toronado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4330,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27019,15,0,Oldsmobile,Toronado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2702,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4350,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27020,15,0,Oldsmobile,Toronado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2170,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27021,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2180,(GUZZLER),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27022,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Midsize Cars,1984,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27023,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27024,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,41.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27025,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Midsize Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27026,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4401,(GM-BUICK),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27027,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4152,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27028,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4154,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27029,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2703,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,23.0769,0.0,Vans,1986,-9250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27030,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27031,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4401,(GM-BUICK),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27032,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4152,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27033,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4154,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27034,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27035,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27036,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Midsize Cars,1984,-2000,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,96,27037,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,96,27038,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,96,27039,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2704,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Vans,1986,-13000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27040,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4134,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27041,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27042,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,250,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44014,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27043,0,15,Rolls-Royce,Silver Spirit/Spur/Mulsanne,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,13.0,0.0,Midsize Cars,1984,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27044,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60040,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27045,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60020,"(DSL,TRBO)",-1,2600,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27046,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60020,"(DSL,TRBO)",-1,2350,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27047,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Midsize Cars,1984,250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,,60025,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27048,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4440,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27049,21,21,Buick,Electra/Park Avenue,N,false,10,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2705,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Vans,1986,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4333,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27050,21,21,Buick,Electra/Park Avenue,N,false,10,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27051,21,21,Buick,Electra/Park Avenue,N,false,10,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4400,(GM-BUICK),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27052,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4440,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27053,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4332,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27054,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4331,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27055,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27056,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,4601,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27057,20,20,Cadillac,Brougham/DeVille (RWD),N,false,8,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27058,20,20,Cadillac,Brougham/DeVille (RWD),N,false,8,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.0,,4610,(FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27059,0,17,Cadillac,Limousine,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Large Cars,1984,-18500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2706,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.9487,0.0,Vans,1986,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4142,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27060,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4143,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27061,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4150,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27062,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4160,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27063,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Large Cars,1984,-7750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27064,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27065,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27066,22,22,Ford,LTD Crown Victoria,N,false,10,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Large Cars,1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.8,,3900,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27067,22,22,Ford,LTD Crown Victoria,N,false,10,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Large Cars,1984,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27068,22,22,Mercury,Grand Marquis,N,false,10,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3800,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27069,0,22,Lincoln,Town Car,N,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Large Cars,1984,-5250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,2707,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,15.0,0.0,Vans,1986,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4400,(GM-BUICK),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27070,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4332,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27071,21,21,Oldsmobile,Delta 88,Y,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4331,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27072,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27073,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27074,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4331,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27075,20,20,Oldsmobile,Ninety-Eight,N,false,9,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27076,20,20,Oldsmobile,Ninety-Eight,N,false,9,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4400,(GM-BUICK),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27077,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4150,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27078,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27079,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3304,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2708,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Vans,1986,-500,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4352,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27080,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1984,-2000,,,,,Diesel,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44024,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,27081,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,139,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.0,0.0,Large Cars,1984,-22500,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4203,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27082,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,27083,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27084,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Small Station Wagons,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27085,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27086,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27087,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27088,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38050,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27089,0,33,Nissan,Maxima Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Small Station Wagons,1984,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3401,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2709,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1986,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27090,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27091,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Small Station Wagons,1984,2750,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38020,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27092,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,38.0,0.0,44.0,0.0,Small Station Wagons,1984,2000,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38020,(DIESEL),-1,1700,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,0,0,27093,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,57.0,0.0,Small Station Wagons,1984,3500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27094,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27095,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,28.0,0.0,36.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27096,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27097,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3102,(CALIF),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27098,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27099,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,84,271,13,14,Chevrolet,Cavalier,Y,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Compact Cars,1985,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3403,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2710,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Vans,1986,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3120,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27100,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27101,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3211,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,27102,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Small Station Wagons,1984,3250,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27103,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27104,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,45.0,0.0,Small Station Wagons,1984,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27105,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3102,(CALIF),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27106,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27107,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3211,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,27108,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Small Station Wagons,1984,3250,,,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56040,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27109,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,29.0,0.0,Small Station Wagons,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3605,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2711,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1986,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56040,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27110,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56040,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27111,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49051,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27112,0,37,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27113,0,37,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,28.0,0.0,36.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27114,0,37,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4200,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27115,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,27116,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27117,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Small Station Wagons,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27118,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27119,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3604,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2712,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1986,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27120,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27121,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,28.0,0.0,36.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49050,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27122,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4200,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27123,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4202,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,27124,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27125,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27126,0,35,Renault,Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Small Station Wagons,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27127,0,35,Renault,Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27128,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66021,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27129,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2713,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Vans,1986,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27130,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27131,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57070,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27132,0,37,Toyota,Cressida Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Small Station Wagons,1984,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27133,0,32,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,40.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,27134,0,32,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Small Station Wagons,1984,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27135,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,34.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27136,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59003,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27137,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59004,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27138,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59003,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27139,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,50.0,0.0,Small Station Wagons,1984,3000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2714,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1986,-7750,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59004,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27140,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,50.0,0.0,Small Station Wagons,1984,3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59070,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27141,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59072,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27142,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64071,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27143,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64071,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27144,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4227,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27145,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize Station Wagons,1984,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4403,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27146,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4416,"(CAL,FFS)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27147,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4303,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27148,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27149,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2715,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Vans,1986,-7750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4224,(CAL)(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27150,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,38.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4133,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27151,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4132,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27152,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27153,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27154,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27155,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27156,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27157,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Midsize Station Wagons,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27158,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Midsize Station Wagons,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27159,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2716,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27160,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27161,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3720,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27162,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3701,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27163,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27164,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3720,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27165,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20030,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27166,0,41,Mercedes-Benz,300TD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-1500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20031,(CALIF),-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27167,0,41,Mercedes-Benz,300TD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27168,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4403,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27169,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2717,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Vans,1986,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4416,"(CAL,FFS)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27170,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27171,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27172,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27173,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41026,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27174,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-1500,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41020,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27175,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-1500,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27176,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27177,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Midsize Station Wagons,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2110,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27178,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Midsize Station Wagons,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27179,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2718,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27180,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4133,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27181,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4132,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27182,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4300,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27183,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60030,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27184,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize Station Wagons,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60030,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27185,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60015,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27186,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,30.0,0.0,Midsize Station Wagons,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60050,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27187,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60015,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27188,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60050,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27189,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Midsize Station Wagons,1984,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2719,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1986,-5250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60010,(DIESEL),-1,2450,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27190,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Midsize Station Wagons,1984,-250,,,,,Diesel,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60010,(DIESEL),-1,2300,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27191,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Midsize Station Wagons,1984,500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4333,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27192,0,50,Buick,Electra Estate Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27193,0,50,Buick,Electra Estate Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4153,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27194,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27195,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1984,-2000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27196,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3801,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27197,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4333,(GM-OLDS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27198,0,50,Oldsmobile,Custom Cruiser Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27199,0,50,Oldsmobile,Custom Cruiser Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1984,-2000,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,84,272,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2720,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,22.0,0.0,Vans,1986,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4153,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27200,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4351,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27201,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1984,-2000,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4800,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27202,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,40.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4801,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27203,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27204,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27205,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27206,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4830,(DIESEL),-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27207,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +13.172643,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4830,(DIESEL),-1,2050,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27208,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,45.0,0.0,Small Pickup Trucks 2WD,1984,1750,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27209,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2721,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27210,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27211,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,38080,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27212,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,38081,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27213,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,38081,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27214,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.5,2-Wheel Drive,38082,(DIESEL),-1,2100,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27215,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,42.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2210,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27216,0,0,Dodge,Rampage Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2210,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27217,0,0,Dodge,Rampage Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,39.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2210,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27218,0,0,Dodge,Rampage Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27219,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2722,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,Vans,1986,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27220,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27221,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27222,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27223,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27224,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,49081,"(DSL,TRBO)",-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27225,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49084,(CALIF),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27226,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49082,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27227,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49082,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27228,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49084,(CALIF),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27229,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4852,(305),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2723,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Vans,1986,-11000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56080,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27230,0,0,Ford,Courier Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,3666,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27231,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,39.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,3802,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27232,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,3803,(DIESEL),-1,2300,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27233,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,39.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3805,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27234,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27235,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3897,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27236,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3807,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27237,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3896,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27238,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27239,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2724,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1986,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3814,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27240,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3813,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27241,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4800,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27242,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,40.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4801,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27243,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27244,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27245,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27246,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4830,(DIESEL),-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27247,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +13.172643,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4830,(DIESEL),-1,2050,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27248,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,45.0,0.0,Small Pickup Trucks 2WD,1984,1750,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27249,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2725,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27250,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27251,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29080,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27252,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29080,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27253,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29080,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27254,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,29081,(DIESEL),-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27255,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-250,,,,,Diesel,,,, +12.306357,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,29081,(DIESEL),-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27256,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,49.0,0.0,Small Pickup Trucks 2WD,1984,2500,,,,,Diesel,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,29081,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,27257,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,46.0,0.0,Small Pickup Trucks 2WD,1984,2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27258,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27259,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2726,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1986,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27260,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27261,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49080,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27262,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49083,(CALIF),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27263,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,49081,"(DSL,TRBO)",-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27264,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49084,(CALIF),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27265,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49082,,-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27266,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49084,(CALIF),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27267,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49082,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27268,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56080,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27269,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2727,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1986,-4500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56080,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27270,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56080,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27271,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,56081,(DIESEL),-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27272,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,40.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38090,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27273,0,0,Nissan,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49094,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27274,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27275,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49091,"(DSL,TRBO)",-1,2350,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27276,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,39.0,0.0,Small Pickup Trucks 4WD,1984,250,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49088,(CALIF),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27277,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27278,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49088,(CALIF),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27279,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4890,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2728,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1986,-5500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27280,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3924,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27281,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3986,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27282,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3923,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27283,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3985,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27284,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3928,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27285,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Small Pickup Trucks 4WD,1984,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3925,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27286,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3929,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27287,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27288,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29091,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27289,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,34.0,0.0,Small Pickup Trucks 4WD,1984,250,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2729,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1986,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,26790,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27290,9,0,Import Foreign Auto Sales Inc,1fas 410,N,false,28,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1400,(FFS)(SIL),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27291,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks 4WD,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27292,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27293,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks 4WD,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1524,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27294,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1500,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27295,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1510,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27296,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49094,(CALIF),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27297,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27298,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49091,"(DSL,TRBO)",-1,2350,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27299,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,39.0,0.0,Small Pickup Trucks 4WD,1984,250,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,273,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Compact Cars,1985,500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2730,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1986,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49088,(CALIF),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27300,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27301,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49088,(CALIF),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27302,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27303,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,54090,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27304,0,0,Suzuki,SJ410K P/U 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,30.0,0.0,Small Pickup Trucks 4WD,1984,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27305,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27306,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27307,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27308,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27309,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2731,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27310,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27311,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4860,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27312,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27313,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27314,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4881,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27315,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27316,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27317,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27318,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27319,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2732,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Vans,1986,-1750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27320,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27321,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4881,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27322,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4898,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27323,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4890,(GM-CHEV),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27324,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4891,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27325,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4894,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27326,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4892,(350 V8) (DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27327,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4893,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27328,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Standard Pickup Trucks 2WD,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27329,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2733,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Vans,1986,-500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27330,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27331,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27332,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27333,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27334,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2280,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27335,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27336,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27337,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27338,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27339,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2734,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1986,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27340,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2280,,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27341,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27342,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3817,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27343,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27344,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3828,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27345,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3826,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27346,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3839,,-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27347,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3837,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27348,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3834,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27349,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2735,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.9231,0.0,Vans,1986,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3838,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27350,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3851,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27351,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3849,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27352,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3850,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27353,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,,13.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3857,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27354,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3817,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27355,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3828,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27356,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3837,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27357,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3838,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27358,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3834,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27359,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2736,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Vans,1986,-4250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3851,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27360,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3850,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27361,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3857,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27362,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4898,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27363,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4890,(GM-CHEV),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27364,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4891,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27365,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4894,(GM-CHEV),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27366,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4892,(350 V8) (DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27367,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4893,(350 V8) (DIESEL),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27368,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Standard Pickup Trucks 2WD,1984,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27369,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2737,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1986,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27370,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27371,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27372,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27373,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27374,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27375,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4860,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27376,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27377,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27378,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4881,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27379,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2738,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1986,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27380,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27381,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,,16.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27382,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27383,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,Creeper,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27384,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27385,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4881,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27386,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4500,,Creeper,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57081,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27387,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,27.0,0.0,Standard Pickup Trucks 2WD,1984,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57081,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27388,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Standard Pickup Trucks 2WD,1984,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57081,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27389,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks 2WD,1984,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59018,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2739,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5 spd,17.0,0.0,19.2308,0.0,Vans,1986,-7750,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57079,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27390,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57079,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27391,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Standard Pickup Trucks 2WD,1984,-1000,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57084,(DIESEL),-1,2000,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27392,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,45.0,0.0,Standard Pickup Trucks 2WD,1984,2000,,,,,Diesel,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57084,(DIESEL),-1,2050,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27393,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,44.0,0.0,Standard Pickup Trucks 2WD,1984,1750,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27394,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 4WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4951,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27395,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4951,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27396,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27397,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27398,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27399,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,274,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59013,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2740,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1986,-7750,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27400,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27401,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(DIESEL),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27402,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,25.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,Creeper,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27403,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4973,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27404,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27405,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27406,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(DIESEL),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27407,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27408,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27409,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59013,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2741,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Vans,1986,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27410,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27411,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27412,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,2460,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27413,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27414,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27415,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2480,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27416,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2490,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27417,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27418,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27419,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2742,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1986,-7750,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2490,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27420,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3933,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27421,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3936,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27422,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 4WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3937,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27423,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3944,,-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27424,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3945,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27425,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3943,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27426,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3952,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27427,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27428,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3953,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27429,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2743,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27430,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3933,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27431,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3937,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27432,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3944,,-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27433,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3943,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27434,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3952,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27435,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3953,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27436,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27437,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27438,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 4WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4951,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27439,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2744,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,4-Wheel or All-Wheel Drive,4951,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27440,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27441,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27442,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27443,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27444,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27445,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(DIESEL),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27446,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,25.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,Creeper,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27447,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4973,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27448,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27449,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2745,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1986,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27450,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(DIESEL),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27451,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27452,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27453,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27454,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27455,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4941,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27456,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1524,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27457,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1508,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27458,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks 4WD,1984,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1600,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27459,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2746,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1986,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1600,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27460,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57090,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27461,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57092,(DIESEL),-1,2350,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27462,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,36.0,0.0,Standard Pickup Trucks 4WD,1984,250,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27463,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27464,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27465,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4851,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27466,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27467,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27468,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27469,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2747,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1986,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4860,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27470,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27471,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27472,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-2750,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27473,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27474,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27475,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27476,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,"Vans, Cargo Type",1984,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27477,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27478,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2280,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27479,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2748,0,0,Chevrolet,S10 Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1986,-500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27480,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27481,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2280,,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27482,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27483,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3817,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27484,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27485,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3828,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27486,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3819,(CAL)(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27487,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3826,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27488,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3837,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27489,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2749,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicle 2WD,1986,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3838,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27490,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3851,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27491,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3857,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27492,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3820,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27493,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3825,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27494,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3824,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27495,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3837,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27496,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3848,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27497,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,"Vans, Cargo Type",1984,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3857,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27498,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,"Vans, Cargo Type",1984,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27499,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,275,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2750,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27500,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27501,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4851,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27502,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27503,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27504,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27505,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4860,(GM-CHEV),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27506,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27507,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27508,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-2750,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27509,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2751,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27510,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57071,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27511,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,31.0,0.0,"Vans, Cargo Type",1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57071,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27512,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,31.0,0.0,"Vans, Cargo Type",1984,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27513,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27514,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27515,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27516,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27517,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27518,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27519,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,"Vans, Passenger Type",1984,-4500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2752,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27520,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,"Vans, Passenger Type",1984,-4500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27521,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,"Vans, Passenger Type",1984,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27522,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2260,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27523,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,"Vans, Passenger Type",1984,-5250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27524,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27525,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27526,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,"Vans, Passenger Type",1984,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27527,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27528,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,"Vans, Passenger Type",1984,-18500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3818,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27529,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2753,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1986,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3825,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27530,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3827,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27531,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3837,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27532,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3835,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27533,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3852,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27534,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,"Vans, Passenger Type",1984,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3857,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27535,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,"Vans, Passenger Type",1984,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4850,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27536,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,22.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4853,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27537,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27538,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27539,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2754,0,0,Dodge,AD100/AD150 Ramcharger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27540,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27541,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27542,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,"Vans, Passenger Type",1984,-4500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27543,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,"Vans, Passenger Type",1984,-4500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27544,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,"Vans, Passenger Type",1984,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27545,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,31.0,0.0,"Vans, Passenger Type",1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27546,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,31.0,0.0,"Vans, Passenger Type",1984,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,1.9,2-Wheel Drive,59082,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27547,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,"Vans, Passenger Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,1.9,2-Wheel Drive,59082,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27548,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,"Vans, Passenger Type",1984,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.2,2-Wheel Drive,1831,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27549,0,0,AM General,FJ8c Post Office,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2755,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicle 2WD,1986,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,2-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27550,0,0,AM General,DJ Po Vehicle 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27551,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27552,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27553,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-4500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27554,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27555,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27556,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27557,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27558,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27559,0,0,Chevrolet,S10 Utility Body 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2756,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27560,0,0,Chevrolet,S10 Utility Body 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2270,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27561,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2280,,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27562,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27563,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1984,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2211,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27564,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2211,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27565,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2211,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27566,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,2240,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27567,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4862,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27568,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27569,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2757,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-3250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4880,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27570,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-4500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27571,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27572,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27573,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27574,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27575,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27576,0,0,GMC,S15 Utility Body 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27577,0,0,GMC,S15 Utility Body 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +14.140845,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,2-Wheel Drive,24680,(DIESEL),-1,2200,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27578,0,0,Grumman Olson,Kubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,35.0,0.0,38.0,0.0,Special Purpose Vehicle 2WD,1984,1000,,,,,Diesel,,,, +12.306357,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,2-Wheel Drive,24680,(DIESEL),-1,1900,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27579,0,0,Grumman Olson,Kubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,45.0,0.0,Special Purpose Vehicle 2WD,1984,2500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2758,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1986,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2211,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27580,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2211,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27581,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,2240,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27582,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.0,2-Wheel Drive,21481,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27583,0,0,S and S Coach Company E.p. Dutton,Funeral Coach 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1984,-15500,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.0,2-Wheel Drive,21481,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27584,0,0,Superior Coaches Div E.p. Dutton,Funeral Coach 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1984,-15500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1430,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27585,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1405,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27586,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27587,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1524,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27588,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1504,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27589,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2759,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1514,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27590,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1405,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27591,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27592,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1524,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27593,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1504,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27594,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1514,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27595,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27596,0,0,Chevrolet,K5/K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27597,0,0,Chevrolet,K5/K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27598,0,0,Chevrolet,K5/K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27599,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,276,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Compact Cars,1985,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2760,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4972,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27600,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27601,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27602,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27603,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27604,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27605,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27606,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27607,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2470,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27608,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2490,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27609,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicle 4WD,1984,-15500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2761,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3930,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27610,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3931,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27611,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3932,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27612,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3933,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27613,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Special Purpose Vehicle 4WD,1984,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3936,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27614,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3937,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27615,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3944,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27616,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3945,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27617,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3943,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27618,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3952,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27619,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Special Purpose Vehicle 4WD,1984,-15500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2834,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2762,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27620,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3953,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27621,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27622,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27623,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4960,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27624,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27625,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27626,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4972,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27627,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,(DIESEL),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27628,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27629,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3305,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2763,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4920,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27630,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27631,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27632,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4940,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27633,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29090,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27634,0,0,Isuzu,Trooper 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1430,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27635,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1400,(FFS)(SIL),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27636,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27637,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27638,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1543,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27639,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3503,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2764,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1543,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27640,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1400,(FFS)(SIL),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27641,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27642,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27643,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1520,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27644,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1500,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27645,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1510,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27646,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1528,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27647,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicle 4WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1508,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27648,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1600,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27649,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3502,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2765,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1986,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1523,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27650,0,0,Jeep,CJ8 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49093,,-1,3450,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27651,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49099,(CAL)(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27652,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49093,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27653,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49099,(CAL)(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27654,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27655,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27656,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicle 4WD,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27657,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27658,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27659,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicle 4WD,1984,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2766,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1986,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27660,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27661,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27662,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicle 4WD,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27663,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,54090,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27664,0,0,Suzuki,SJ 410 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.0,4-Wheel or All-Wheel Drive,54090,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27665,0,0,Suzuki,SJ 410V 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,57093,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27666,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57091,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27667,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27668,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,22.0,0.0,Special Purpose Vehicles,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27669,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicles,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4881,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2767,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27670,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicles,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,38081,,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27671,0,0,Nissan,Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicles,1984,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2290,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27672,0,0,Dodge,D250 Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicles,1984,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3836,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,27673,0,0,Ford,F250 Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,Special Purpose Vehicles,1984,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3834,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27674,0,0,Ford,F250 Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicles,1984,-11000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3806,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27675,0,0,Ford,Ranger Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3814,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27676,0,0,Ford,Ranger Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.0,0.0,Special Purpose Vehicles,1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4820,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,27677,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,22.0,0.0,Special Purpose Vehicles,1984,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27678,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicles,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4840,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,27679,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicles,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2768,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57082,,-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27680,0,0,Toyota,Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,21.0,0.0,Special Purpose Vehicles,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,9006,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27681,0,0,Alfa Romeo,Spider Veloce 2000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Two Seaters,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,12715,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27682,0,0,Bertone,X1/9,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1984,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4185,(350 V8) (FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27683,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,28.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,,4166,(350 V8) (FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27684,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,28.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38066,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,50,27685,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Two Seaters,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38065,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,50,27686,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Two Seaters,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38065,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,50,27687,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Two Seaters,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38066,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,50,27688,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Two Seaters,1984,-3250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3151,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27689,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Two Seaters,1984,0,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4892,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2769,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1986,-4500,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3150,CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27690,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Two Seaters,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3180,"(FFS,TRBO) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27691,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Two Seaters,1984,500,,,T,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,26015,CA model,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,27692,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.0,0.0,64.0,0.0,Two Seaters,1984,5000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27693,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0,0.0,Two Seaters,1984,1500,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27694,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,49.0,0.0,Two Seaters,1984,2750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.8,,69005,(GUZZLER) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,27695,0,0,Lamborghini,Countach Lp500s,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Two Seaters,1984,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,35005,(GUZZLER) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27696,0,0,Lotus,Esprit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,25.0,0.0,Two Seaters,1984,-7750,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,,56016,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27697,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.1,,56016,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27698,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,,56017,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27699,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1984,-4250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,277,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,48.0,0.0,Compact Cars,1985,2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2770,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1986,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,,20045,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27700,0,0,Mercedes-Benz,380SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Two Seaters,1984,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41315,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27701,0,0,Pininfarina,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Two Seaters,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41315,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27702,0,0,Pininfarina,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4248,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27703,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Two Seaters,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4249,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27704,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,40.0,0.0,Two Seaters,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,,9005,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27705,7,0,Alfa Romeo,GT V6 2.5,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,10015,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27706,8,0,Avanti Motor Corporation,Avanti II,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Minicompact Cars,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,,36005,(GUZZLER) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27707,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,25.0,0.0,Minicompact Cars,1984,-7750,T,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,42021,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27708,4,0,Porsche,911 SC,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,,42036,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,74,27709,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Minicompact Cars,1984,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2771,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1986,-1750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,,42036,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,74,27710,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,27.0,0.0,Minicompact Cars,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,42015,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27711,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Minicompact Cars,1984,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,42015,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27712,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1984,-1750,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,57015,(FFS) CA model,-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,73,27713,0,0,Toyota,Starlet,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.0,0.0,54.0,0.0,Minicompact Cars,1984,4000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59065,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27714,6,0,Volkswagen,Rabbit Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Minicompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59065,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27715,6,0,Volkswagen,Rabbit Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Minicompact Cars,1984,0,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7006,(GUZZLER) CA model,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27716,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1984,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7006,(GUZZLER) CA model,-1,6100,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,27717,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,15.0,0.0,Subcompact Cars,1984,-18500,T,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,,7006,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27718,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,13.0,0.0,Subcompact Cars,1984,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64025,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27719,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2772,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1986,-500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64025,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27720,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64056,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27721,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64056,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27722,11,0,Audi,Coupe GT,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64046,"(FFS,TRBO) CA model",-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27723,8,0,Audi,Quattro,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,28.0,0.0,Subcompact Cars,1984,-5250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,64016,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27724,12,12,Audi,4000,N,false,87,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,64016,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27725,12,12,Audi,4000,N,false,87,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,,64066,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27726,0,12,Audi,4000 S quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,12015,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27727,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,12015,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27728,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12045,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,27729,13,0,BMW,3 Series,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2773,0,0,GMC,S15 Jimmy 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicle 2WD,1986,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12045,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27730,13,0,BMW,3 Series,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12035,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27731,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4226,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,27732,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4244,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,27733,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4246,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,27734,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,40.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4136,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,27735,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4136,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,27736,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,85,27737,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4157,(GM-CHEV) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,85,27738,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,27.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27739,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2774,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27740,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27741,11,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4105,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,9,78,27742,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4105,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,78,27743,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4115,(DIESEL) CA model,-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,9,78,27744,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,27745,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,27746,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,27747,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,27748,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27749,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2775,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27750,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2126,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27751,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27752,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38055,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27753,0,10,Nissan,Maxima,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38055,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27754,0,10,Nissan,Maxima,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,84,27755,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,27756,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,82,27757,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,82,27758,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +9.554625000000001,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38026,(DIESEL) CA model,-1,1500,0,Diesel,Diesel,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,16,82,27759,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,51.0,0.0,63.0,0.0,Subcompact Cars,1984,4500,,,,,Diesel,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,1901,"(DSL,TRBO) (MPFI) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2776,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,40.0,0.0,Special Purpose Vehicle 2WD,1986,500,,,T,,Diesel,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38027,(DIESEL) CA model,-1,1600,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,16,82,27760,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,60.0,0.0,Subcompact Cars,1984,4000,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,38035,"(FFS,TRBO) CA model",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,27761,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1984,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,38035,"(FFS,TRBO) CA model",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,27762,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38046,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,76,27763,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38045,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,76,27764,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38066,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,73,27765,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Subcompact Cars,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38065,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,73,27766,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38065,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,73,27767,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,38066,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,73,27768,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1984,-3250,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2105,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,27769,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,49.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2777,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,77,27770,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,77,27771,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49015,(FFS) CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,77,27772,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,53.0,0.0,Subcompact Cars,1984,3750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49015,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,77,27773,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,36.0,0.0,48.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,77,27774,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49035,"(FFS,TRBO) CA model",-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,77,27775,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,27776,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,27777,0,0,Dodge,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,27778,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,27779,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2778,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,83,27780,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,42.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,27781,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27782,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27783,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2126,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27784,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27785,10,0,Dodge,600 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,27786,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,84,27787,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3550,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,27788,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3751,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,27789,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2779,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3780,CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,27790,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,27791,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Subcompact Cars,1984,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26035,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,81,27792,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26035,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,81,27793,0,12,Honda,Accord,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,,26015,CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,15,70,27794,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,40.0,0.0,53.0,0.0,Subcompact Cars,1984,3750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,70,27795,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,70,27796,0,12,Honda,Civic,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26045,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27797,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,26045,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27798,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29005,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27799,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12120,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,278,13,0,Bill Dovell Motor Car Company,Dovell 230CE,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,24.359,0.0,Compact Cars,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1851,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2780,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29005,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27800,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29025,(DIESEL) CA model,-1,2200,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27801,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +11.924172,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,29025,(DIESEL) CA model,-1,1850,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27802,10,10,Isuzu,I-Mark,N,false,76,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,29015,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,27803,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,29015,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,77,27804,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,,30545,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27805,0,10,Jaguar,XJ,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,84,27806,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,84,27807,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3550,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,27808,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3751,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,84,27809,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2781,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicle 2WD,1986,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3780,CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,84,27810,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,84,27811,0,0,Mercury,Capri,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Subcompact Cars,1984,-5250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,86,27812,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56025,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,86,27813,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,40.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,56025,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,86,27814,0,14,Mazda,GLC,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20015,(DIESEL) CA model,-1,2100,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27815,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,Diesel,,,, +12.739500000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,20015,(DIESEL) CA model,-1,2000,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27816,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Subcompact Cars,1984,2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,20025,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27817,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,20025,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27818,0,12,Mercedes-Benz,190 D 2.2/190 E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,49045,"(FFS,TRBO) CA model",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,78,27819,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,1821,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2782,0,0,Jeep,Cherokee/Wagoneer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,78,27820,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,78,27821,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,27822,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,27823,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,49045,"(FFS,TRBO) CA model",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27824,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1984,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27825,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27826,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,27.0,0.0,37.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27827,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49015,(FFS) CA model,-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,11,77,27828,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,53.0,0.0,Subcompact Cars,1984,3750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,49015,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,77,27829,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,36.0,0.0,48.0,0.0,Subcompact Cars,1984,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2783,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,77,27830,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,49035,"(FFS,TRBO) CA model",-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,11,77,27831,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,30.0,0.0,39.0,0.0,Subcompact Cars,1984,1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,76,27832,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,49065,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,27833,0,0,Plymouth,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2105,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,77,27834,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,49.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,77,27835,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,77,27836,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4226,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,85,27837,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4245,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,27838,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4247,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,27839,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2820,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2784,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4136,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,27840,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4136,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,27841,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,85,27842,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Subcompact Cars,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4157,(GM-CHEV) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,85,27843,0,0,Pontiac,Firebird,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,27.0,0.0,Subcompact Cars,1984,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4105,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,9,78,27844,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,4105,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,9,78,27845,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4115,(DIESEL) CA model,-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,9,78,27846,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Subcompact Cars,1984,3750,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4206,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27847,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4215,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27848,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4216,"(FFS,TRBO) CA model",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27849,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1984,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2785,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Special Purpose Vehicle 2WD,1986,-1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27850,10,0,Pontiac,2000 Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,43005,"(FFS,TRBO) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,83,27851,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1984,500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,83,27852,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,83,27853,0,0,Renault,Fuego,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27854,0,12,Renault,18i,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27855,0,12,Renault,18i,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44019,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27856,9,0,Rolls-Royce,Corniche,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1984,-22500,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,66015,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,78,27857,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,66015,(FFS) CA model,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,78,27858,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1984,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66025,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,78,27859,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2834,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2786,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1986,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,27860,12,12,Subaru,Sedan,N,false,77,78,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,57065,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,27861,10,0,Toyota,Celica,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,34.0,0.0,Subcompact Cars,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,57065,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,27862,10,0,Toyota,Celica,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57075,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,76,27863,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57075,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,14,76,27864,0,0,Toyota,Celica Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57036,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,78,27865,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57036,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,78,27866,10,0,Toyota,Corolla Sport,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57075,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27867,0,13,Toyota,Cressida,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57075,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27868,0,13,Toyota,Cressida,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1984,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57025,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,27869,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1984,1750,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60210,"(DSL,TRBO) (NO-CAT)",-1,3700,0,Diesel,Diesel,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2787,0,0,Vixen Motor Company,21 TD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1986,-6500,,,T,,Diesel,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57025,(FFS) CA model,-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,84,27870,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1984,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57025,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,15,84,27871,0,0,Toyota,Tercel,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,48.0,0.0,Subcompact Cars,1984,2500,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59027,(DIESEL) CA model,-1,1600,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,27872,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,46.0,0.0,58.0,0.0,Subcompact Cars,1984,4000,,,,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59028,"(DSL,TRBO) CA model",-1,1750,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,27873,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1984,3250,,,,,Diesel,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59029,"(DSL,TRBO) CA model",-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,27874,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,54.0,0.0,Subcompact Cars,1984,3000,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59045,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27875,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59046,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27876,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59045,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27877,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59046,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27878,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59065,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27879,13,13,Volkswagen,Jetta,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2788,0,0,American Motors Corporation,Eagle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +10.038726,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,267.89473684210526,38,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59007,(DIESEL) CA model,-1,1550,0,Diesel,Diesel,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,14,79,27880,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,47.0,0.0,61.0,0.0,Subcompact Cars,1984,4250,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59045,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,27881,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59046,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,27882,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59045,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,79,27883,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,59046,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,79,27884,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,27885,0,0,Volkswagen,Rabbit,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59065,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,73,27886,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,59065,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,27887,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,,12025,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27888,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12035,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27889,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2789,0,0,American Motors Corporation,Eagle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,,12035,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27890,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4441,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,27891,13,0,Buick,Riviera Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Compact Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4340,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27892,13,0,Buick,Riviera Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4205,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27893,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4215,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27894,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4216,"(FFS,TRBO) CA model",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27895,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,27896,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1984,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27897,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27898,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27899,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Compact Cars,1984,0,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12120,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,279,0,13,Bill Dovell Motor Car Company,Dovell 230E,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,24.359,0.0,Compact Cars,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4952,(305),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2790,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Special Purpose Vehicles,1986,-9250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4241,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,27900,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,41.0,0.0,Compact Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27901,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27902,14,14,Buick,Skylark,N,false,94,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,34.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27903,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,27904,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4607,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27905,12,0,Cadillac,Eldorado Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,84,27906,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,84,27907,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,84,27908,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38045,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,86,27909,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.0,0.0,Compact Cars,1984,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2791,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1986,-7750,,Creeper,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,38045,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,86,27910,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1984,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2105,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,27911,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,49.0,0.0,Compact Cars,1984,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,27912,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,27913,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3151,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,85,27914,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3152,CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,27915,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Compact Cars,1984,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3150,CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,27916,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3170,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,85,27917,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3171,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,27918,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3180,"(FFS,TRBO) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,27919,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1984,500,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2792,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3251,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,27920,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3250,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,27921,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3451,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27922,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3450,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27923,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Compact Cars,1984,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3551,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27924,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3550,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27925,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27926,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27927,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27928,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3551,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27929,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2793,0,0,Chevrolet,K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-5500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3550,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27930,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27931,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27932,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3760,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27933,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Compact Cars,1984,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3151,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,85,27934,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3152,CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,27935,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,44.0,0.0,Compact Cars,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3150,CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,27936,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3170,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,85,27937,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3171,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,27938,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3180,"(FFS,TRBO) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,27939,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1984,500,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2794,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3251,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,27940,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3250,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,27941,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1984,3250,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3451,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27942,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3450,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27943,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Compact Cars,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56035,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,87,27944,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56035,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,87,27945,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1984,1000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,56055,(DIESEL) CA model,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,21,87,27946,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,54.0,0.0,Compact Cars,1984,3000,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20035,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27947,0,13,Mercedes-Benz,300D/300CD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20035,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27948,0,15,Mercedes-Benz,300SD/380SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,,20045,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,27949,0,15,Mercedes-Benz,300SD/380SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1984,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2795,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,20055,(GUZZLER) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,27950,0,15,Mercedes-Benz,500SEC,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Compact Cars,1984,-9250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4205,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,83,27951,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,83,27952,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1984,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,83,27953,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,83,27954,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,83,27955,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,27956,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Compact Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4243,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,27957,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27958,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,27959,14,14,Oldsmobile,Omega,N,false,95,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,34.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2796,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1986,-13000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41015,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,27960,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Compact Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41015,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27961,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41025,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27962,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,31.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41050,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27963,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Compact Cars,1984,-1500,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41025,"(DSL,TRBO) CA model",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27964,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Compact Cars,1984,250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41050,"(DSL,TRBO) CA model",-1,2450,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27965,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,38.0,0.0,Compact Cars,1984,-250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,2105,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,85,27966,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,49.0,0.0,Compact Cars,1984,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,85,27967,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,27968,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1984,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4205,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,84,27969,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1984,500,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2797,0,0,Chevrolet,Suburban K10 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4215,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,16,84,27970,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4216,"(FFS,TRBO) CA model",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,84,27971,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,84,27972,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,84,27973,13,13,Pontiac,2000 Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1270,"(FFS,MPFI) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,27974,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Compact Cars,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1150,"(FFS,SPFI) CA model",-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,27975,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Compact Cars,1984,500,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1170,"(FFS,SPFI) CA model",-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,16,88,27976,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,52.0,0.0,Compact Cars,1984,3500,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1250,"(FFS,MPFI) CA model",-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,27977,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,48.0,0.0,Compact Cars,1984,2750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1160,"(FFS,SPFI) CA model",-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,27978,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Compact Cars,1984,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,,1260,"(FFS,MPFI) CA model",-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,27979,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Compact Cars,1984,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2798,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44019,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,27980,14,0,Rolls-Royce,Camargue,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Compact Cars,1984,-22500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47015,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,87,27981,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47025,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,87,27982,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47015,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,87,27983,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1984,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,47025,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,87,27984,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Compact Cars,1984,-1750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,57055,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,89,27985,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Compact Cars,1984,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,57055,(FFS) CA model,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,89,27986,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1984,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57035,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,85,27987,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Compact Cars,1984,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,57035,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,27988,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,46.0,0.0,Compact Cars,1984,2500,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,275.13513513513516,37,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,57045,(DIESEL) CA model,-1,1600,0,Diesel,Diesel,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,20,85,27989,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,61.0,0.0,Compact Cars,1984,4000,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2799,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1986,-1000,,SIL,,,,,,, +12.306357,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59008,"(DSL,TRBO) CA model",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27990,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,49.0,0.0,Compact Cars,1984,2500,,,,,,,,, +12.306357,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59009,"(DSL,TRBO) CA model",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,27991,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,49.0,0.0,Compact Cars,1984,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59075,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27992,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59077,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27993,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60035,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,27994,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Compact Cars,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60035,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,27995,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Compact Cars,1984,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60011,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,27996,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Compact Cars,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60060,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,27997,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Compact Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60011,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,27998,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Compact Cars,1984,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60060,CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,27999,14,14,Volvo,240 DL/GL/Turbo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Compact Cars,1984,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4234,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,46.0,0.0,Two Seaters,1985,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,280,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Compact Cars,1985,-4250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2800,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Special Purpose Vehicles,1986,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64036,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28000,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Midsize Cars,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64076,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28001,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64076,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28002,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28003,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4412,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28004,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4415,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28005,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28006,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Cars,1984,-250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28007,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Cars,1984,-250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4411,(GM-BUICK) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28008,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4421,"(FFS,TRBO) CA model",-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28009,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2801,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4446,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28010,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +17.351199,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4321,(DIESEL) CA model,-1,2700,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28011,16,16,Buick,Regal,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Midsize Cars,1984,-1500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4441,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28012,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4340,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28013,16,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4605,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28014,15,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,,4605,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28015,0,14,Cadillac,Seville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28016,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4238,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28017,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,38.0,0.0,Midsize Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28018,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28019,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Cars,1984,-250,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2802,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1986,-5250,,SIL,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28020,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Cars,1984,-250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,95,28021,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4243,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,95,28022,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Midsize Cars,1984,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,20,95,28023,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,95,28024,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4413,(GM-BUICK) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28025,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4157,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28026,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28027,16,0,Chevrolet,Monte Carlo,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28028,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28029,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2803,0,0,Chevrolet,T10 (S10) Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1986,-4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28030,0,17,Chrysler,E Class/New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28031,0,14,Chrysler,Executive Sedan/Limousine,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28032,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28033,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28034,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2126,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28035,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,32.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2126,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28036,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,42.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28037,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2175,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28038,0,16,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28039,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,38086,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2804,0,0,Nissan,Stanza Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28040,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,38.0,0.0,Midsize Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28041,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28042,15,15,Dodge,Aries,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2175,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28043,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28044,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28045,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28046,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28047,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28048,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Midsize Cars,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2135,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28049,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Midsize Cars,1984,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,38086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2805,0,0,Nissan,Stanza Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28050,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28051,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28052,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28053,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3763,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28054,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,3650,(FFS) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28055,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Midsize Cars,1984,-250,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3762,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28056,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,3650,(FFS) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28057,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Midsize Cars,1984,-250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,3350,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28058,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28059,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2806,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.9487,0.0,Special Purpose Vehicles,1986,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28060,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3763,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28061,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,4.9,,36006,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28062,0,10,Maserati,Quattroporte,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.0,0.0,13.0,0.0,Midsize Cars,1984,-22500,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,20055,(GUZZLER) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28063,0,15,Mercedes-Benz,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Midsize Cars,1984,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28064,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4412,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28065,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4415,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28066,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28067,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,42.0,0.0,Midsize Cars,1984,-250,,,,,Diesel,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28068,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Cars,1984,-250,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4411,(GM-BUICK) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28069,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2807,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Special Purpose Vehicles,1986,-13000,,,,,,,,, +17.351199,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4321,(DIESEL) CA model,-1,2700,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28070,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,40.0,0.0,Midsize Cars,1984,-1500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28071,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28072,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4441,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28073,15,0,Oldsmobile,Toronado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4340,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28074,15,0,Oldsmobile,Toronado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,,2175,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28075,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,25.0,0.0,Midsize Cars,1984,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28076,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28077,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,38.0,0.0,Midsize Cars,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28078,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28079,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,2808,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1986,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4411,(GM-BUICK) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28080,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4157,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28081,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28082,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4411,(GM-BUICK) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28083,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4157,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28084,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Midsize Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28085,16,0,Pontiac,Grand Prix,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize Cars,1984,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,20,96,28086,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,20,96,28087,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,20,96,28088,14,0,Pontiac,Phoenix,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28089,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Cars,1984,0,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,2809,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicles,1986,-15500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28090,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28091,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Cars,1984,-250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28092,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Cars,1984,-250,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44019,(GUZZLER) CA model,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28093,0,15,Rolls-Royce,Silver Spirit/Spur/Mulsanne,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,13.0,0.0,Midsize Cars,1984,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60045,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28094,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60045,"(FFS,TRBO) CA model",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28095,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Midsize Cars,1984,-2500,,,T,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,60031,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28096,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,32.0,0.0,Midsize Cars,1984,-1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,,60021,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28097,0,17,Volvo,760 GLE,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Midsize Cars,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4445,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28098,21,21,Buick,Electra/Park Avenue,N,false,10,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Large Cars,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4342,(GM-OLDS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28099,21,21,Buick,Electra/Park Avenue,N,false,10,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Large Cars,1984,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,281,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2964,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2810,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1986,-13000,,Creeper,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28100,16,16,Buick,Electra/Park Avenue,N,false,9,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Large Cars,1984,-250,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4410,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28101,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.1,,4445,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28102,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28103,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28104,21,21,Buick,LeSabre,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,4606,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28105,20,20,Cadillac,Brougham/DeVille (RWD),N,false,8,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28106,15,15,Cadillac,Fleetwood/DeVille (FWD),N,false,9,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Large Cars,1984,-250,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4410,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28107,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4159,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28108,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28109,21,21,Chevrolet,Impala/Caprice,N,false,6,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Large Cars,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2811,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3761,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28110,22,22,Ford,LTD Crown Victoria,N,false,10,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Large Cars,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3761,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28111,22,22,Mercury,Grand Marquis,N,false,10,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Large Cars,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3761,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28112,0,22,Lincoln,Town Car,N,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Large Cars,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4410,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28113,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28114,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,26.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28115,21,21,Oldsmobile,Delta 88,N,false,7,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4341,(GM-OLDS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28116,20,20,Oldsmobile,Ninety-Eight,N,false,9,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1984,-5250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28117,16,16,Oldsmobile,Ninety-Eight II,N,false,9,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Large Cars,1984,-250,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4410,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28118,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4155,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28119,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Large Cars,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3552,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2812,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,,44029,(GUZZLER) CA model,-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,28120,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,139,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.0,0.0,Large Cars,1984,-22500,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4206,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28121,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28122,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28123,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Small Station Wagons,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28124,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,39.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28125,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28126,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28127,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.4,,38055,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28128,0,33,Nissan,Maxima Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Small Station Wagons,1984,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28129,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3551,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2813,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1986,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,38015,(FFS) CA model,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28130,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,49.0,0.0,Small Station Wagons,1984,2750,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.7,,38027,(DIESEL) CA model,-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,28131,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Small Station Wagons,1984,3750,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28132,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28133,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,27.0,0.0,35.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28134,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3151,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28135,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3152,CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28136,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3150,CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28137,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3170,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28138,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3171,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28139,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3751,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2814,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicles,1986,-7750,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3251,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,28140,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Small Station Wagons,1984,3250,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28141,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,26025,(FFS) CA model,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28142,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Small Station Wagons,1984,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3151,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28143,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3152,CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28144,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,44.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,3150,CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28145,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,3251,(DIESEL) CA model,-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,28146,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Small Station Wagons,1984,3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4205,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28147,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28148,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28149,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Small Station Wagons,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3750,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2815,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28150,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28151,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28152,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28153,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd Doubled,27.0,0.0,35.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,49055,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28154,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4205,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28155,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,4207,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28156,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,4125,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28157,0,34,Pontiac,2000 Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,42.0,0.0,Small Station Wagons,1984,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28158,0,35,Renault,Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Small Station Wagons,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,43008,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28159,0,35,Renault,Sportwagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3752,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2816,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Special Purpose Vehicles,1986,-6250,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66025,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28160,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Small Station Wagons,1984,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,,66025,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28161,0,29,Subaru,Wagon,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Small Station Wagons,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,57075,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28162,0,37,Toyota,Cressida Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Small Station Wagons,1984,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57025,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28163,0,32,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,39.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57025,(FFS) CA model,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28164,0,32,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,49.0,0.0,Small Station Wagons,1984,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57026,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28165,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,34.0,0.0,Small Station Wagons,1984,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,,57026,(FFS) CA model,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28166,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Small Station Wagons,1984,1500,,,,,,,,, +12.306357,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59008,"(DSL,TRBO) CA model",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28167,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,49.0,0.0,Small Station Wagons,1984,2500,,,,,,,,, +12.306357,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,,59009,"(DSL,TRBO) CA model",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28168,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,49.0,0.0,Small Station Wagons,1984,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59075,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28169,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Small Station Wagons,1984,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2817,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1986,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,59077,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28170,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Small Station Wagons,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64076,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28171,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.1,,64076,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28172,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4239,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28173,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize Station Wagons,1984,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4414,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28174,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4415,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28175,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28176,0,42,Buick,Century Estate Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Station Wagons,1984,-250,,,,,Diesel,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28177,0,42,Buick,Century Estate Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Station Wagons,1984,-250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28178,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4238,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28179,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,38.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2818,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Special Purpose Vehicles,1986,-9250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28180,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4137,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28181,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28182,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28183,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28184,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28185,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28186,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28187,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,38.0,0.0,Midsize Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28188,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28189,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3950,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2819,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicles,1986,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28190,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28191,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28192,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,3750,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28193,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,5,3.0,,20035,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28194,0,41,Mercedes-Benz,300TD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28195,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,,4414,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28196,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,,4415,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28197,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28198,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28199,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,88,282,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.3333,0.0,Compact Cars,1985,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4952,(305),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2820,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Special Purpose Vehicles,1986,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41015,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28200,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,25.0,0.0,Midsize Station Wagons,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,,41015,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28201,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41025,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28202,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-1500,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,41050,"(DSL,TRBO) CA model",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28203,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Midsize Station Wagons,1984,-1500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28204,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28205,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,38.0,0.0,Midsize Station Wagons,1984,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,,2115,(FFS) CA model,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28206,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Station Wagons,1984,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,,2145,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28207,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,,4225,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28208,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.0,0.0,Midsize Station Wagons,1984,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4135,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28209,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2821,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1986,-7750,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,,4137,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28210,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-3250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4322,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28211,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,4.3,,4320,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28212,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,43.0,0.0,Midsize Station Wagons,1984,-250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60035,"(FFS,TRBO) CA model",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28213,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize Station Wagons,1984,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,,60035,"(FFS,TRBO) CA model",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28214,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Midsize Station Wagons,1984,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60011,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28215,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,30.0,0.0,Midsize Station Wagons,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60060,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28216,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize Station Wagons,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60011,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28217,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize Station Wagons,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,,60060,CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28218,0,41,Volvo,240 DL/GL/Turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Midsize Station Wagons,1984,-500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4342,(GM-OLDS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28219,0,50,Buick,Electra Estate Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2822,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4158,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28220,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3761,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28221,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,3761,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28222,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4342,(GM-OLDS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28223,0,50,Oldsmobile,Custom Cruiser Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,,4158,(GM-CHEV) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28224,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Midsize-Large Station Wagons,1984,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4810,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28225,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28226,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28227,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4835,(DIESEL) CA model,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28228,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4835,(DIESEL) CA model,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28229,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2823,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-5500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28230,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28231,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28232,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,38085,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28233,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,38085,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28234,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,2-Wheel Drive,38086,(DIESEL) CA model,-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28235,0,0,Nissan,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,40.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2215,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28236,0,0,Dodge,Rampage Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2215,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28237,0,0,Dodge,Rampage Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,41.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28238,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28239,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2824,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28240,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,49086,"(DSL,TRBO) CA model",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28241,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,250,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49087,CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28242,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49087,CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28243,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3863,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28244,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3864,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28245,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3865,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28246,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3867,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28247,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3868,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28248,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,3866,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28249,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2825,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Special Purpose Vehicles,1986,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4810,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28250,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28251,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28252,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4835,(DIESEL) CA model,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28253,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,4835,(DIESEL) CA model,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28254,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.0,0.0,Small Pickup Trucks 2WD,1984,1500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28255,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28256,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28257,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29085,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28258,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29085,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28259,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2826,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1986,-13000,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,29085,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28260,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks 2WD,1984,-500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,29086,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28261,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,34.0,0.0,Small Pickup Trucks 2WD,1984,-250,,,,,Diesel,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,29086,(DIESEL) CA model,-1,2050,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28262,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,43.0,0.0,Small Pickup Trucks 2WD,1984,1750,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28263,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 2WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28264,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,31.0,0.0,Small Pickup Trucks 2WD,1984,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,49085,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28265,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,49086,"(DSL,TRBO) CA model",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28266,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,38.0,0.0,Small Pickup Trucks 2WD,1984,250,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49087,CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28267,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,49087,CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28268,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks 2WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56087,(CALIF) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28269,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,26.0,0.0,Small Pickup Trucks 2WD,1984,-3250,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2827,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-6500,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,56085,(CALIF) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28270,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks 2WD,1984,0,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,56086,(CALIF) CA model,-1,2300,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28271,0,0,Mazda,B2000/B2200 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,37.0,0.0,Small Pickup Trucks 2WD,1984,500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38095,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28272,0,0,Nissan,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49095,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28273,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49096,"(DSL,TRBO) CA model",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28274,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,33.0,0.0,Small Pickup Trucks 4WD,1984,-1000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49097,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28275,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49097,CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28276,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3962,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28277,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3964,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28278,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Small Pickup Trucks 4WD,1984,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3965,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28279,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2828,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3966,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28280,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29095,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28281,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29096,(DIESEL) CA model,-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28282,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,34.0,0.0,Small Pickup Trucks 4WD,1984,-250,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1450,(FFS)(SIL) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28283,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1460,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28284,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1470,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28285,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks 4WD,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1574,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28286,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1550,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28287,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Small Pickup Trucks 4WD,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1560,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28288,0,0,Jeep,Scrambler Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49095,CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28289,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2829,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1986,-1000,,SIL,,,,,,, +16.612308000000002,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49096,"(DSL,TRBO) CA model",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28290,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,33.0,0.0,Small Pickup Trucks 4WD,1984,-1000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49097,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28291,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Small Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49097,CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28292,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks 4WD,1984,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28293,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28294,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28295,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4865,(GM-CHEV) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28296,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28297,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28298,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28299,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,88,283,0,11,Nissan,Stanza,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1985,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2830,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Special Purpose Vehicles,1986,-1750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28300,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28301,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4899,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28302,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4896,(GM-CHEV) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28303,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4897,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28304,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28305,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28306,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28307,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28308,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28309,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2831,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2295,CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28310,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks 2WD,1984,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28311,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28312,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3876,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28313,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3869,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28314,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3874,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28315,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3873,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28316,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks 2WD,1984,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3886,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28317,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3891,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28318,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks 2WD,1984,-15500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3871,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28319,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2832,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1986,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3870,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28320,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3886,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28321,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 2WD,1984,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3891,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28322,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks 2WD,1984,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,2-Wheel Drive,4899,(GM-BUICK) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28323,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4896,(GM-CHEV) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28324,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4897,(GM-CHEV) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28325,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28326,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28327,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28328,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4865,(GM-CHEV) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28329,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2833,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1986,-4250,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28330,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,2950,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28331,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-2750,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28332,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-9250,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28333,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28334,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-3500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57089,CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28335,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57089,CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28336,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.0,0.0,Standard Pickup Trucks 2WD,1984,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57089,CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28337,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Standard Pickup Trucks 2WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57087,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28338,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Standard Pickup Trucks 2WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57087,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28339,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.0,0.0,Standard Pickup Trucks 2WD,1984,-1000,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29090,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2834,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,35.8974,0.0,Special Purpose Vehicles,1986,250,,,T,,Diesel,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57088,(DIESEL) CA model,-1,2200,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28340,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,39.0,0.0,Standard Pickup Trucks 2WD,1984,1000,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28341,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4986,(DIESEL) CA model,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28342,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,(DIESEL) CA model,-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28343,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4911,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28344,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4910,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28345,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28346,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28347,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28348,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2475,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28349,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29091,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2835,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2475,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28350,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks 4WD,1984,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2495,CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28351,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3970,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28352,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3971,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28353,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3972,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28354,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3978,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28355,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3982,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28356,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3970,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28357,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3972,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28358,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1984,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3978,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28359,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29096,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2836,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3982,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28360,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.0,0.0,Standard Pickup Trucks 4WD,1984,-15500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28361,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks 4WD,1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4986,(DIESEL) CA model,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28362,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks 4WD,1984,-5500,,,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,(DIESEL) CA model,-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28363,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks 4WD,1984,-4500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4911,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28364,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4910,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28365,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28366,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28367,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28368,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks 4WD,1984,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1574,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28369,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks 4WD,1984,-5250,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,1900,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2837,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1986,250,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1558,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28370,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks 4WD,1984,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1650,CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28371,0,0,Jeep,J-10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks 4WD,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57095,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28372,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks 4WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28373,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28374,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28375,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4865,(GM-CHEV) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28376,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28377,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28378,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28379,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2838,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicles,1986,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28380,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28381,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28382,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28383,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3876,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28384,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3872,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28385,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3874,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28386,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,18.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3873,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28387,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,"Vans, Cargo Type",1984,-5250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3886,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28388,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3891,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28389,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,"Vans, Cargo Type",1984,-15500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2839,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.0,0.0,Special Purpose Vehicles,1986,-1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3877,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28390,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3872,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28391,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3870,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28392,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,21.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3886,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28393,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,"Vans, Cargo Type",1984,-11000,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3891,(FFS) CA model,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28394,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,13.0,0.0,"Vans, Cargo Type",1984,-18500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28395,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28396,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4855,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28397,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.0,0.0,"Vans, Cargo Type",1984,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4865,(GM-CHEV) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28398,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,"Vans, Cargo Type",1984,-7750,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4885,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28399,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2011,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,284,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,51.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1852,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2840,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1986,-3250,,,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4886,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28400,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,"Vans, Cargo Type",1984,-3500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57076,CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28401,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,31.0,0.0,"Vans, Cargo Type",1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57076,CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28402,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,31.0,0.0,"Vans, Cargo Type",1984,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28403,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4888,DIESEL CA model,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28404,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,"Vans, Passenger Type",1984,-5500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4887,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28405,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,"Vans, Passenger Type",1984,-3500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28406,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,"Vans, Passenger Type",1984,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28407,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,2-Wheel Drive,2265,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28408,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,22.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28409,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1850,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2841,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicles,1986,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28410,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28411,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,"Vans, Passenger Type",1984,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3875,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28412,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3872,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28413,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3873,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28414,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3886,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28415,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,"Vans, Passenger Type",1984,-11000,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.8,2-Wheel Drive,3891,(FFS) CA model,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28416,0,0,Ford,E150 Club Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,13.0,0.0,"Vans, Passenger Type",1984,-18500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28417,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,"Vans, Passenger Type",1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4888,DIESEL CA model,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28418,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,"Vans, Passenger Type",1984,-5500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4887,(DIESEL) CA model,-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28419,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,"Vans, Passenger Type",1984,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2842,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28420,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,"Vans, Passenger Type",1984,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57085,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28421,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,31.0,0.0,"Vans, Passenger Type",1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,57085,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28422,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,31.0,0.0,"Vans, Passenger Type",1984,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,1.9,2-Wheel Drive,59087,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28423,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,"Vans, Passenger Type",1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,1.9,2-Wheel Drive,59087,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28424,0,0,Volkswagen,Vanagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,"Vans, Passenger Type",1984,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.2,2-Wheel Drive,1881,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28425,0,0,AM General,FJ8c Post Office,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,2-Wheel Drive,1880,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28426,0,0,AM General,DJ Po Vehicle 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28427,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4888,DIESEL CA model,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28428,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1984,-5500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4810,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28429,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1820,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2843,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28430,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28431,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Special Purpose Vehicle 2WD,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28432,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28433,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28434,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,2-Wheel Drive,2275,(FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28435,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1984,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,2-Wheel Drive,2295,CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28436,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1984,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2216,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28437,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2216,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28438,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2216,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28439,0,0,Dodge,Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2844,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Special Purpose Vehicles,1986,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,4875,(350 V8) (FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28440,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1984,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,2-Wheel Drive,4888,DIESEL CA model,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28441,0,0,GMC,C15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1984,-5500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4810,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28442,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28443,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,4811,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28444,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Special Purpose Vehicle 2WD,1984,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28445,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1984,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28446,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4845,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28447,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1984,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,2-Wheel Drive,2216,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28448,0,0,Plymouth,Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1984,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1480,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28449,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2845,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicles,1986,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1455,(FFS)(SIL) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28450,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1574,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28451,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1554,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28452,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1564,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28453,0,0,American Motors Corporation,Eagle SX/4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1455,(FFS)(SIL) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28454,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1574,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28455,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1554,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28456,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1564,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28457,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28458,0,0,Chevrolet,K5/K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4986,(DIESEL) CA model,-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28459,0,0,Chevrolet,K5/K10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2846,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1986,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28460,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,(DIESEL) CA model,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28461,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4911,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28462,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4910,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28463,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28464,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28465,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28466,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2475,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28467,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2495,CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28468,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicle 4WD,1984,-15500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3964,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28469,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2847,0,0,Jeep,CJ7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3965,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28470,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3966,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28471,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3970,(FFS) CA model,-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28472,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,18.0,0.0,Special Purpose Vehicle 4WD,1984,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3971,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28473,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3972,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28474,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Special Purpose Vehicle 4WD,1984,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3978,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28475,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,16.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3981,(FFS) CA model,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28476,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,14.0,0.0,Special Purpose Vehicle 4WD,1984,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28477,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4986,(DIESEL) CA model,-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28478,0,0,GMC,K15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4975,(350 V8) (FFS) CA model,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28479,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicle 4WD,1984,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2848,0,0,Jeep,CJ7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4985,(DIESEL) CA model,-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28480,0,0,GMC,K15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-6500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4911,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28481,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,4910,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28482,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28483,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28484,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4945,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28485,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29095,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28486,0,0,Isuzu,Trooper 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1480,(FFS) CA model,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28487,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 4WD,1984,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1450,(FFS)(SIL) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28488,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1460,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28489,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2849,0,0,Jeep,Grand Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Special Purpose Vehicles,1986,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1470,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28490,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,1593,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28491,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1450,(FFS)(SIL) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28492,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1460,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28493,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1470,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28494,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1570,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28495,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1550,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28496,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1560,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28497,0,0,Jeep,CJ7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1578,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28498,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicle 4WD,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1558,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28499,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1984,-5250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,285,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,51.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2850,0,0,Jeep,Grand Wagoneer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Special Purpose Vehicles,1986,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1650,CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,28500,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 4WD,1984,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49098,(FFS) CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28501,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,21.0,0.0,Special Purpose Vehicle 4WD,1984,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49098,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28502,0,0,Mitsubishi,Montero 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28503,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Special Purpose Vehicle 4WD,1984,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28504,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Special Purpose Vehicle 4WD,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28505,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28506,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28507,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicle 4WD,1984,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28508,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28509,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2851,0,0,Jeep,Grand Wagoneer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1986,-13000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66095,(FFS) CA model,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28510,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Special Purpose Vehicle 4WD,1984,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66096,"(FFS,TRBO) CA model",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28511,0,0,Subaru,Sedan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicle 4WD,1984,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57095,CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28512,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4846,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28513,0,0,Chevrolet,S10 Cab Chassis 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,20.0,0.0,Special Purpose Vehicles,1984,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,,38085,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28514,0,0,Nissan,Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,20.0,0.0,Special Purpose Vehicles,1984,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,3885,(FFS) CA model,-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,28515,0,0,Ford,F250 Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,15.0,0.0,Special Purpose Vehicles,1984,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,2-Wheel Drive,3864,(FFS) CA model,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28516,0,0,Ford,Ranger Pickup Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1984,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,2-Wheel Drive,4846,(FFS) CA model,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28517,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,20.0,0.0,Special Purpose Vehicles,1984,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.4,2-Wheel Drive,57089,CA model,-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28518,0,0,Toyota,Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,21.0,0.0,Special Purpose Vehicles,1984,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2852,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,22.0,0.0,Special Purpose Vehicles,1986,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,12,11.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.5282,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,17,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.9,0,0.0,0.0,0.0,0.0,0,0,28521,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.9,0.0,Two Seaters,2010,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.5206,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,16,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.5,0,0.0,0.0,0.0,0.0,0,0,28522,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.8,0.0,24.8,0.0,Two Seaters,2010,-6750,G,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,33,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28523,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.3,0.0,26.8,0.0,Two Seaters,2010,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,32,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28524,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AM6),15.4,0.0,25.0451,0.0,Two Seaters,2010,-8000,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,21.2766,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1899,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,45,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.052,0,0.0,0.0,0.0,0.0,0,0,28525,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5267,0.0,39.7256,0.0,Two Seaters,2010,-500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,141,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28526,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.4,0.0,33.7,0.0,Two Seaters,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,135,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28527,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2010,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,127,PR,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28528,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.1,0.0,Two Seaters,2010,-6750,G,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,134,,-1,3050,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28529,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2498,0.0,34.3493,0.0,Two Seaters,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2853,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1986,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,12,12.1,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.7157,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,14,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,20.0,0,0.0,0.0,0.0,0.0,0,0,28530,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2010,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,13.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.756,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,12,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.8,0,0.0,0.0,0.0,0.0,0,0,28531,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.1,0.0,25.4,0.0,Two Seaters,2010,-6750,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1038,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,15,,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.5,0,0.0,0.0,0.0,0.0,0,0,28532,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2010,-9500,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.4,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.6809,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,13,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.8,0,0.0,0.0,0.0,0.0,0,0,28533,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.0,0.0,25.4,0.0,Two Seaters,2010,-6750,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,2,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28534,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,10.1,0.0,17.5,0.0,Two Seaters,2010,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,4,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28535,0,0,Lamborghini,Murcielago,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),10.9,0.0,19.9,0.0,Two Seaters,2010,-15500,G,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,3,,-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28536,0,0,Lamborghini,Murcielago Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,10.1,0.0,17.5,0.0,Two Seaters,2010,-18250,G,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,5,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28537,0,0,Lamborghini,Murcielago Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),10.9,0.0,19.9,0.0,Two Seaters,2010,-15500,G,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,14,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28538,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3744,0.0,38.9959,0.0,Two Seaters,2010,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,15,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28539,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2010,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2854,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,16,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28540,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0367,0.0,38.512,0.0,Two Seaters,2010,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28541,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.5196,0.0,26.1157,0.0,Minicompact Cars,2010,-8000,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,324,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28542,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1,0.0,33.2,0.0,Minicompact Cars,2010,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,322,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28543,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),24.2472,0.0,36.2628,0.0,Minicompact Cars,2010,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28544,10,0,Audi,A5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2373,0.0,42.7743,0.0,Subcompact Cars,2010,500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,23,,-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28545,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9,0.0,37.0,0.0,Subcompact Cars,2010,-1000,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,25,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28546,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6402,0.0,42.575,0.0,Subcompact Cars,2010,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,22,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28547,12,0,Audi,A5 quattro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9563,0.0,37.7989,0.0,Subcompact Cars,2010,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,16.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.93,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,38,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,28548,10,0,Audi,S5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.3,0.0,34.0,0.0,Subcompact Cars,2010,-3000,,,,S,,,,, +13.73375,0.0,0.0,0.0,21,21.2766,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1899,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,44,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.052,0,0.0,0.0,0.0,0.0,13,74,28549,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5267,0.0,39.7256,0.0,Subcompact Cars,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(OHV) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2855,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1986,0,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,All-Wheel Drive,39,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28550,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5281,0.0,23.2715,0.0,Subcompact Cars,2010,-13250,G,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,147,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,28551,0,7,Chevrolet,Aveo 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2010,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,192,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28552,0,7,Chevrolet,Aveo 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Subcompact Cars,2010,2750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,206,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28553,14,0,Chevrolet,Cobalt Coupe,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2010,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,214,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28554,14,0,Chevrolet,Cobalt Coupe,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2010,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,205,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28555,14,0,Chevrolet,Cobalt SS Coupe,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1,0.0,41.9,0.0,Subcompact Cars,2010,1000,,,T,,,,,, +10.987,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,210,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,28556,14,0,Chevrolet,Cobalt XFE Coupe,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2010,2750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,8,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28557,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,9,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28558,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2,0.0,32.1,0.0,Subcompact Cars,2010,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,313,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28559,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,34.6,0.0,Subcompact Cars,2010,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,(OHV),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2856,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,36.0,0.0,Special Purpose Vehicles,1986,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,311,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28560,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.133,0.0,38.5995,0.0,Subcompact Cars,2010,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,314,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28561,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1,0.0,33.2,0.0,Subcompact Cars,2010,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,312,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28562,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S4),25.1882,0.0,37.4902,0.0,Subcompact Cars,2010,0,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,208,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28563,14,14,Pontiac,G5,N,false,83,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2010,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,213,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28564,14,14,Pontiac,G5,N,false,83,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2010,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,209,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28565,14,0,Pontiac,G5 GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Subcompact Cars,2010,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,216,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28566,14,0,Pontiac,G5 GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2010,2500,,,,,,,,, +10.987,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,212,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,28567,14,0,Pontiac,G5 XFE,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Subcompact Cars,2010,2750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,21.101,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6049,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8701,0,0.0,0.0,0.0,0.0,0,0,28568,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0803,0.0,41.521,0.0,Subcompact Cars,2010,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0409,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,68,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.3,0,0.0,0.0,0.0,0.0,0,0,28569,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,38.6,0.0,Subcompact Cars,2010,0,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2857,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0241,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,69,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.6,0,0.0,0.0,0.0,0.0,0,0,28570,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.1,0.0,38.4,0.0,Subcompact Cars,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28571,0,13,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.9,0.0,39.3,0.0,Compact Cars,2010,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28572,0,13,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1,0.0,42.3,0.0,Compact Cars,2010,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,8,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28573,0,13,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),23.2,0.0,37.6,0.0,Compact Cars,2010,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28574,0,12,Audi,A4,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2373,0.0,42.7743,0.0,Compact Cars,2010,500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,24,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28575,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6402,0.0,42.575,0.0,Compact Cars,2010,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,21,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28576,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9563,0.0,37.7989,0.0,Compact Cars,2010,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1593,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,37,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.8,0,0.0,0.0,0.0,0.0,0,0,28577,0,13,Audi,S4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6,0.0,35.0,0.0,Compact Cars,2010,-2250,,,,S,,,,, +15.689436,0.0,0.0,0.0,18,17.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9412,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,36,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7,0,0.0,0.0,0.0,0.0,0,0,28578,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.1,0.0,Compact Cars,2010,-2250,,,,S,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,All-Wheel Drive,41,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28579,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.8,0.0,23.8,0.0,Compact Cars,2010,-11250,G,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(OHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2858,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,146,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,28580,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Compact Cars,2010,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,191,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28581,0,12,Chevrolet,Aveo,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Compact Cars,2010,2750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,207,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28582,0,14,Chevrolet,Cobalt Sedan,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.1,0.0,46.8,0.0,Compact Cars,2010,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,215,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28583,0,14,Chevrolet,Cobalt Sedan,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Compact Cars,2010,2500,,,,,,,,, +10.987,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,211,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,28584,0,14,Chevrolet,Cobalt XFE Sedan,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,51.9,0.0,Compact Cars,2010,2750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,103,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28585,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Compact Cars,2010,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,107,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28586,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.8,0.0,30.1,0.0,Compact Cars,2010,-6750,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,106,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28587,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.6,0.0,Compact Cars,2010,-3250,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,47,Hybrid,-1,1550,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,28588,0,12,Lexus,HS 250h,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),47.163,0.0,47.4081,0.0,Compact Cars,2010,4250,,,,,Hybrid,,,245V Ni-MH, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,115,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28589,0,10,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),21.5,0.0,34.9,0.0,Compact Cars,2010,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2859,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicles,1986,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,113,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28590,0,10,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8692,0.0,38.8769,0.0,Compact Cars,2010,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,111,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28591,0,10,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.978,0.0,42.9363,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,114,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28592,0,10,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),27.8512,0.0,40.3706,0.0,Compact Cars,2010,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,112,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28593,0,10,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),28.9,0.0,42.4579,0.0,Compact Cars,2010,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,132,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28594,0,7,Mitsubishi,Lancer Evolution,Y,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),20.6,0.0,31.1,0.0,Compact Cars,2010,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,131,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28595,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.2,0.0,30.6,0.0,Compact Cars,2010,-4750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,4,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28596,11,0,Rolls-Royce,Phantom Coupe,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2010,-9500,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,3,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28597,11,0,Rolls-Royce,Phantom Drophead Coupe,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2010,-9500,G,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,19,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28598,0,11,Subaru,Impreza AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8512,0.0,32.9103,0.0,Compact Cars,2010,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,12,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28599,0,11,Subaru,Impreza AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8571,0.0,37.071,0.0,Compact Cars,2010,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,85,286,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Compact Cars,1985,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(OHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2860,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Special Purpose Vehicles,1986,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,17,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28600,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0124,0.0,34.1435,0.0,Compact Cars,2010,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,14,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28601,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0678,0.0,35.9226,0.0,Compact Cars,2010,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28602,0,14,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.1254,0.0,46.3629,0.0,Compact Cars,2010,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28603,0,14,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.516,0.0,45.1901,0.0,Compact Cars,2010,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28604,0,14,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.841,0.0,44.708,0.0,Compact Cars,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28605,0,14,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.4352,0.0,41.5661,0.0,Compact Cars,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.7583,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9495,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,31,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.3987,0,0.0,0.0,0.0,0.0,15,94,28606,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.18,0.0,39.6147,0.0,Compact Cars,2010,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.9556,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6764,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,28,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.026,0,0.0,0.0,0.0,0.0,15,94,28607,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.2668,0.0,40.2409,0.0,Compact Cars,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,21.101,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6049,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8701,0,0.0,0.0,0.0,0.0,15,94,28608,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0803,0.0,41.521,0.0,Compact Cars,2010,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.101,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6049,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8701,0,0.0,0.0,0.0,0.0,0,0,28609,0,16,Volkswagen,Jetta,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0803,0.0,41.521,0.0,Compact Cars,2010,0,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2861,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,21.779,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9209,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,30,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.2556,0,0.0,0.0,0.0,0.0,0,0,28610,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8525,0.0,39.5714,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,22.69,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.4051,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,27,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.757,0,0.0,0.0,0.0,0.0,0,0,28611,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0008,0.0,40.0169,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.9904,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2229,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.747,0,0.0,0.0,0.0,0.0,0,0,28612,0,13,Volkswagen,CC,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1189,0.0,42.0,0.0,Compact Cars,2010,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.101,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6049,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8701,0,0.0,0.0,0.0,0.0,0,0,28613,0,13,Volkswagen,CC,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0803,0.0,41.521,0.0,Compact Cars,2010,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,73,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.3,0,0.0,0.0,0.0,0.0,15,89,28614,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Compact Cars,2010,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0421,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,70,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.7,0,0.0,0.0,0.0,0.0,15,89,28615,0,0,Volvo,C30 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.5,0.0,40.6,0.0,Compact Cars,2010,500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0987,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,78,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.6,0,0.0,0.0,0.0,0.0,0,0,28616,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),23.4,0.0,37.8,0.0,Compact Cars,2010,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0421,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,72,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.7,0,0.0,0.0,0.0,0.0,0,0,28617,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),25.5,0.0,40.6,0.0,Compact Cars,2010,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,20,20.17,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7981,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,82,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,30.5041,0,0.0,0.0,0.0,0.0,0,0,28618,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.348,0.0,Compact Cars,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,5,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28619,0,13,Acura,RL,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,30.9,0.0,Midsize Cars,2010,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2862,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Special Purpose Vehicles,1986,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6407,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,34,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.9,0,0.0,0.0,0.0,0.0,0,0,28620,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7553,0.0,34.7286,0.0,Midsize Cars,2010,-2250,,,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,42,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28621,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.7,0.0,Midsize Cars,2010,-6750,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,All-Wheel Drive,40,,-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28622,13,0,Bentley,Continental Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.5281,0.0,23.2715,0.0,Midsize Cars,2010,-13250,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,153,PR,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28623,0,16,Cadillac,CTS-V,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.2999,0.0,Midsize Cars,2010,-6750,G,,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,152,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28624,0,16,Cadillac,CTS-V,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),14.49,0.0,24.9754,0.0,Midsize Cars,2010,-9500,G,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,217,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28625,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,34.1,0.0,Midsize Cars,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,218,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28626,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,30.2999,0.0,Midsize Cars,2010,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,176,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28627,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Midsize Cars,2010,-500,,,,,,,,, +14.327048,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,181,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,28628,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.5999,41.2,30.2999,Midsize Cars,2010,0,,,,,FFV,E85,280,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,184,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28629,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,0.0,46.8,0.0,Midsize Cars,2010,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(OHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2863,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,199,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28630,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2010,-1750,,,,,,,,, +12.657024,4.160002,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,202,FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,0.0,23,0.0,0.0,0.0,0.0,0,0,28631,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,18.5999,46.9,32.8,Midsize Cars,2010,1500,,,,,FFV,E85,290,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,189,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28632,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,42.6,0.0,Midsize Cars,2010,1000,,,,,,,,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,201,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,23,0.0,0.0,0.0,0.0,0,0,28633,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,19.7999,42.8,32.8,Midsize Cars,2010,1000,,,,,FFV,E85,290,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,221,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,28634,0,16,Chevrolet,Malibu Hybrid,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.2,0.0,48.1,0.0,Midsize Cars,2010,2500,,,,,Hybrid,,,36V Ni-MH, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28635,0,14,Kia,Optima,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8,0.0,44.6,0.0,Midsize Cars,2010,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,16,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28636,0,14,Kia,Optima,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.9,0.0,39.8,0.0,Midsize Cars,2010,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28637,0,14,Kia,Optima,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.8,0.0,44.6,0.0,Midsize Cars,2010,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,11,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28638,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.3511,0.0,40.1931,0.0,Midsize Cars,2010,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,13,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28639,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7386,0.0,34.8235,0.0,Midsize Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2864,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,12,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28640,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),27.0883,0.0,41.6642,0.0,Midsize Cars,2010,500,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,1,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28641,0,14,Rolls-Royce,Phantom,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Midsize Cars,2010,-9500,G,,,,,,,, +12.657024,4.160002,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,203,FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,0.0,23,0.0,0.0,0.0,0.0,0,0,28642,0,16,Saturn,Aura,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,18.5999,46.9,32.8,Midsize Cars,2010,1500,,,,,FFV,E85,290,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,186,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28643,0,16,Saturn,Aura,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,0.0,46.8,0.0,Midsize Cars,2010,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,198,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28644,0,16,Saturn,Aura,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Midsize Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,4,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28645,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4471,0.0,37.0574,0.0,Midsize Cars,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,9,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28646,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9938,0.0,34.2708,0.0,Midsize Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,8,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28647,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.6,0.0,Midsize Cars,2010,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,6,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28648,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7073,0.0,42.9215,0.0,Midsize Cars,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.9904,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2229,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,52,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.747,0,0.0,0.0,0.0,0.0,0,0,28649,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1189,0.0,42.0,0.0,Midsize Cars,2010,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(OHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2865,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Special Purpose Vehicles,1986,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,60,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28650,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,30.8,0.0,Midsize Cars,2010,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6363,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.6,0,0.0,0.0,0.0,0.0,0,0,28651,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,32.0,0.0,Midsize Cars,2010,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8156,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,11,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,28652,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,36.4,0.0,Midsize Cars,2010,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,225,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28653,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2010,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,170,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28654,0,17,Buick,Lucerne,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.2,0.0,36.6,0.0,Large Cars,2010,-1750,,,,,,,,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,178,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,20,0.0,0.0,0.0,0.0,0,0,28655,0,17,Buick,Lucerne,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2010,-1750,,,,,FFV,E85,270,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,228,300HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28656,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,224,275HP,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28657,0,19,Cadillac,DTS,Y,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.9,0.0,Large Cars,2010,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,226,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28658,0,19,Cadillac,Funeral Coach / Hearse,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,22.7,0.0,Large Cars,2010,-7750,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,227,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28659,0,19,Cadillac,Limousine,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8,0.0,24.5,0.0,Large Cars,2010,-7750,G,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2866,0,0,Subaru,Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Special Purpose Vehicles,1986,-500,,,,,,,,, +15.689436,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,179,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,28660,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2010,-1000,,,,,FFV,E85,260,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,175,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28661,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Large Cars,2010,-500,,,,,,,,, +14.964294,4.404708,0.0,0.0,18,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,403.95454545454544,22,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,183,FFV,-1,2500,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,28662,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.5999,41.2,30.2999,Large Cars,2010,-500,,,,,FFV,E85,280,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,105,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28663,0,17,Chrysler,300 AWD,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,31.9,0.0,Large Cars,2010,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,101,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28664,0,17,Chrysler,300/SRT-8,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,102,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28665,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2010,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,108,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28666,0,16,Dodge,Charger,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Large Cars,2010,-8000,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,104,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28667,0,16,Dodge,Charger AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,31.9,0.0,Large Cars,2010,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,143,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28668,0,21,Ford,Taurus AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.2,0.0,34.7,0.0,Large Cars,2010,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,137,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28669,0,21,Ford,Taurus AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,34.9,0.0,Large Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2867,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,136,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28670,0,21,Ford,Taurus FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.2,0.0,27.8,0.0,Large Cars,2010,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,138,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28671,0,21,Ford,Taurus FWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Large Cars,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,8,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28672,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.9,0.0,36.2,0.0,Large Cars,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,9,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28673,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4,0.0,35.6,0.0,Large Cars,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,13,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28674,0,16,Hyundai,Genesis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,34.2,0.0,Large Cars,2010,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,12,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28675,0,16,Hyundai,Genesis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.9,0.0,38.3,0.0,Large Cars,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,177,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28676,0,18,Lincoln,MKS AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.2,0.0,34.7,0.0,Large Cars,2010,-1750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,2,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28677,0,14,Rolls-Royce,Phantom EWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2010,-9500,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.7906,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.123,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,46,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,28678,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2906,0.0,40.4003,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,21.5629,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9585,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,27.723,0,0.0,0.0,0.0,0.0,0,0,28679,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0473,0.0,38.8702,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2868,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Special Purpose Vehicles,1986,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.6239,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,43,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,28.1,0,0.0,0.0,0.0,0.0,0,0,28680,0,20,Audi,A3 quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.2,0.0,37.1,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,20,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28681,0,28,Audi,A4 Avant quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9563,0.0,37.7989,0.0,Small Station Wagons,2010,-1000,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,509,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,95,28682,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.7,0.0,43.9,0.0,Small Station Wagons,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,15,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,28683,0,28,Hyundai,Elantra Touring,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5,0.0,43.5,0.0,Small Station Wagons,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,14,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28684,0,28,Hyundai,Elantra Touring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9,0.0,42.6,0.0,Small Station Wagons,2010,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,125,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,95,28685,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),21.4,0.0,34.7,0.0,Small Station Wagons,2010,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,123,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,95,28686,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.2418,0.0,37.2218,0.0,Small Station Wagons,2010,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,124,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,95,28687,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),26.3654,0.0,37.4911,0.0,Small Station Wagons,2010,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,20,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28688,0,19,Subaru,Impreza Wagon/Outback Sport,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8512,0.0,32.9103,0.0,Small Station Wagons,2010,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,18,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28689,0,19,Subaru,Impreza Wagon/Outback Sport,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0124,0.0,34.1435,0.0,Small Station Wagons,2010,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2869,0,0,Subaru,XT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Special Purpose Vehicles,1986,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28690,0,19,Subaru,Impreza Wagon/Outback Sport,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4,0.0,31.8,0.0,Small Station Wagons,2010,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,13,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28691,0,19,Subaru,Impreza Wagon/Outback Sport,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.8571,0.0,37.071,0.0,Small Station Wagons,2010,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,15,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28692,0,19,Subaru,Impreza Wagon/Outback Sport,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.0678,0.0,35.9226,0.0,Small Station Wagons,2010,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28693,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0966,0.0,42.3461,0.0,Small Station Wagons,2010,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28694,0,9,Suzuki,SX4,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.6378,0.0,41.5661,0.0,Small Station Wagons,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,51,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28695,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1022,0.0,41.7078,0.0,Small Station Wagons,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,52,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28696,0,9,Suzuki,SX4 AWD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.4142,0.0,40.2345,0.0,Small Station Wagons,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.779,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9209,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,29,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.2556,0,0.0,0.0,0.0,0.0,0,0,28697,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8525,0.0,39.5714,0.0,Small Station Wagons,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,22.69,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.4051,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.757,0,0.0,0.0,0.0,0.0,0,0,28698,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.0008,0.0,40.0169,0.0,Small Station Wagons,2010,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9375,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,79,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,28699,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),23.4,0.0,37.6,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,287,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1985,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66083,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2870,0,0,Subaru,XT 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Special Purpose Vehicles,1986,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,20,20.17,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7981,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,81,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,30.5041,0,0.0,0.0,0.0,0.0,0,0,28700,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.348,0.0,Small Station Wagons,2010,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6407,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,35,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.9,0,0.0,0.0,0.0,0.0,0,0,28701,0,34,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7553,0.0,34.7286,0.0,Midsize Station Wagons,2010,-2250,,,,S,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28702,0,32,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7573,0.0,37.0711,0.0,Midsize Station Wagons,2010,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,23,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28703,0,32,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,35.9,0.0,Midsize Station Wagons,2010,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.9904,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2229,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.747,0,0.0,0.0,0.0,0.0,0,0,28704,0,36,Volkswagen,Passat Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1189,0.0,42.0,0.0,Midsize Station Wagons,2010,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8156,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,12,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,28705,0,37,Volvo,V70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,36.4,0.0,Midsize Station Wagons,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8156,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,13,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,28706,0,34,Volvo,XC 60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,36.4,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,801,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28707,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6705,0.0,27.8055,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,24,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28708,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,96,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28709,0,0,Ford,Explorer Sport Trac 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6,0.0,29.0,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2871,0,0,Suzuki,Samurai,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Special Purpose Vehicles,1986,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,100,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28710,0,0,Ford,Explorer Sport Trac 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,189,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,14,0.0,0.0,0.0,0.0,0,0,28711,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5031,12.6027,27.0426,19.5024,Standard Pickup Trucks 2WD,2010,-5250,,,,,FFV,E85,310,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,188,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28712,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.2422,0.0,28.4633,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,185,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28713,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.138,0.0,26.7829,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,800,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28714,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7095,0.0,27.8522,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,806,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28715,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3962,0.0,24.1937,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,25,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28716,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,0.0,25.4,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,92,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28717,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9118,0.0,26.6622,0.0,Standard Pickup Trucks 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,99,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28718,0,0,Ford,Explorer Sport Trac 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4429,0.0,25.7535,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +21.974,6.806822,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,190,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,28719,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.7299,12.082,24.7939,17.9191,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,290,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,2872,0,0,Suzuki,Samurai Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Special Purpose Vehicles,1986,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,186,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28720,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.367,0.0,25.2298,0.0,Standard Pickup Trucks 4WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,187,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28721,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.5134,0.0,27.1061,0.0,Standard Pickup Trucks 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,805,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28722,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3962,0.0,24.1937,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,802,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28723,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,803,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28724,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.6,0.0,"Vans, Cargo Type",2010,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,504,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28725,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.2,0.0,Minivan - 2WD,2010,-1750,,,,,,,,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,508,FFV,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,28726,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,23.0,Minivan - 2WD,2010,-2500,,,,,FFV,E85,260,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,502,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28727,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2010,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,505,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28728,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.2,0.0,Minivan - 2WD,2010,-1750,,,,,,,,, +17.337486000000002,5.758082,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,467.7368421052632,19,0.0,13,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,507,FFV,-1,2900,3500,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,28729,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,14.2,33.0988,23.0,Minivan - 2WD,2010,-2500,,,,,FFV,E85,260,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57088,"(FFS,TRBO)",-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2873,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicles,1986,-5250,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,501,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28730,0,0,Dodge,Grand Caravan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,10,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28731,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,32.4,0.0,Minivan - 2WD,2010,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,9,VCM,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28732,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,35.5,0.0,Minivan - 2WD,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Front-Wheel Drive,506,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28733,0,0,Volkswagen,Routan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.2,0.0,Minivan - 2WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,503,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28734,0,0,Volkswagen,Routan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.9,0.0,Minivan - 2WD,2010,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,187,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28735,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,173,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28736,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1441,0.0,34.5482,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,151,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28737,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.7,0.0,40.6,0.0,Sport Utility Vehicle - 2WD,2010,500,,,T,,,,,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,159,FFV,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,28738,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.9991,32.3,Sport Utility Vehicle - 2WD,2010,1500,,,,,FFV,E85,300,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,150,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28739,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2999,0.0,40.3,0.0,Sport Utility Vehicle - 2WD,2010,0,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57087,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2874,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1986,-3250,,2MODE 2LKUP,,,,,,, +13.1844,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,355.48,25,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,163,FFV,-1,2200,2700,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,21,0.0,0.0,0.0,0.0,0,0,28740,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,19.0999,41.5,29.5,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,270,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,155,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,28741,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.2999,19.7999,42.3991,30.7,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,290,, +13.1844,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,355.48,25,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,167,FFV,-1,2200,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,28742,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.7999,41.9,31.6,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,300,, +13.1844,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,355.48,25,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,162,FFV,-1,2200,2700,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,21,0.0,0.0,0.0,0.0,0,0,28743,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,19.0999,41.5,29.5,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,270,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,158,FFV,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,28744,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.9991,32.3,Sport Utility Vehicle - 2WD,2010,1500,,,,,FFV,E85,300,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,154,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,28745,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.2999,19.7999,42.3991,30.7,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,290,, +13.1844,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,355.48,25,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,166,FFV,-1,2200,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,28746,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.7999,41.9,31.6,Sport Utility Vehicle - 2WD,2010,1000,,,,,FFV,E85,300,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,520,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28747,0,0,Dodge,Journey 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.8,0.0,35.0,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,521,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28748,0,0,Dodge,Journey 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,12,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28749,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2875,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1986,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,180,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28750,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.2,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +20.589638,6.806822,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,196,FFV,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,13,0.0,0.0,0.0,0.0,0,0,28751,0,0,Ford,Expedition 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0994,11.6,27.0,18.6,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,310/370,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,93,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28752,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,89,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28753,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,80,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28754,0,0,Ford,Flex FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.2,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,174,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28755,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1441,0.0,34.5482,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,7,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28756,0,0,Honda,Pilot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6051,0.0,31.9475,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,11,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28757,0,0,Hyundai,Veracruz 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,282,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28758,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2,0.0,24.2,0.0,Sport Utility Vehicle - 2WD,2010,-9500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,21,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28759,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,58801,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2876,0,0,Volga Associated Automobile,Niva,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicles,1986,-2500,,2MODE,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,511,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28760,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4803,0.0,40.2397,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,16,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28761,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.8,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,20,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28762,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,510,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28763,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4803,0.0,40.2397,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28764,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.3,0.0,35.3,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,18,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28765,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,32.7,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28766,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,168,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28767,0,0,Lincoln,MKT FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,32.2,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,182,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28768,0,0,Lincoln,MKX FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.2,0.0,34.2,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +20.589638,6.806822,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,0.0,11,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,198,FFV,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,13,0.0,0.0,0.0,0.0,0,0,28769,0,0,Lincoln,Navigator 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0994,11.6,27.0,18.6,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,310,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2877,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.359,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,10,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28770,0,0,Mazda,CX-7 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.1,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,17,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28771,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,94,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28772,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6,0.0,29.0,0.0,Sport Utility Vehicle - 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,97,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28773,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,0.0,27.8,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,211,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28774,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),27.0103,0.0,37.9764,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,411,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28775,0,0,Mitsubishi,Endeavor 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1033,0.0,29.8099,0.0,Sport Utility Vehicle - 2WD,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,132,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28776,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,33.2,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,130,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28777,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,128,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28778,0,0,Saturn,Vue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,37.0,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,140,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,28779,0,0,Saturn,Vue Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,45.3,0.0,Sport Utility Vehicle - 2WD,2010,2250,,,,,Hybrid,,,36V Ni-MH, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2878,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,91,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28780,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1181,0.0,35.8103,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,97,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28781,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9699,0.0,33.7628,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,93,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28782,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0663,0.0,34.2831,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,51,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28783,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.2,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,50,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28784,0,0,Volkswagen,Tiguan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,15.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5087,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,40,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,21.5,0,0.0,0.0,0.0,0.0,0,0,28785,0,0,Volvo,XC 90 FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,29.7,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,188,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28786,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,171,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28787,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.2999,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,522,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28788,0,0,Dodge,Journey AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,13,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28789,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2879,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,179,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28790,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,91,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28791,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9118,0.0,26.6622,0.0,Sport Utility Vehicle - 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,90,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28792,0,0,Ford,Explorer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4429,0.0,25.7535,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,79,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28793,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.4142,0.0,30.3805,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,26,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28794,0,0,Ford,Flex AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,30.2,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,172,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28795,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.2999,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,6,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28796,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,10,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28797,0,0,Hyundai,Veracruz 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,31.1,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,286,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28798,0,0,Infiniti,QX56 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,23.6,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,23,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28799,0,0,Jeep,Commander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,85,288,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,47.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2880,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,17,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28800,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.5,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,22,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28801,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,21,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28802,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,33.4,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel Drive,17,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28803,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,167,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28804,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0338,0.0,29.9849,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,1,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28805,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,30.2,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,181,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28806,0,0,Lincoln,MKX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,18,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28807,0,0,Mazda,CX-9 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,95,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28808,0,0,Mercury,Mountaineer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.9118,0.0,26.6622,0.0,Sport Utility Vehicle - 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,98,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28809,0,0,Mercury,Mountaineer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.4429,0.0,25.7535,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38084,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,2881,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1986,-13000,,VLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,212,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28810,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),25.9764,0.0,35.2418,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,412,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28811,0,0,Mitsubishi,Endeavor AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2010,-5750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,133,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28812,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,32.6,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,129,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28813,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,32.2,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,131,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28814,0,0,Saturn,Vue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.5,0.0,32.1,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,5,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28815,0,34,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4471,0.0,37.0574,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,10,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28816,0,34,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9938,0.0,34.2708,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,7,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28817,0,34,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.3071,0.0,40.0816,0.0,Sport Utility Vehicle - 4WD,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,11,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28818,0,0,Subaru,Tribeca AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,92,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28819,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.346,0.0,34.2513,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38084,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2882,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,96,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.8,0,0.0,0.0,0.0,0.0,0,0,28820,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8755,0.0,32.2747,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,94,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,28821,0,0,Suzuki,Grand Vitara 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4214,0.0,32.2765,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,49,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28822,0,0,Volkswagen,Tiguan 4motion,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.5467,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9958,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2867,0,0.0,0.0,0.0,0.0,0,0,28823,0,0,Volvo,XC 60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1436,0.0,30.4926,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.705,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7186,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.4048,0,0.0,0.0,0.0,0.0,0,0,28824,0,37,Volvo,XC 70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3392,0.0,29.7892,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.5467,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9958,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2867,0,0.0,0.0,0.0,0.0,0,0,28825,0,37,Volvo,XC 70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1436,0.0,30.4926,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,30,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28826,0,0,Volvo,XC 90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1,0.0,26.2,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,15.0745,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.3382,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,41,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,21.2356,0,0.0,0.0,0.0,0.0,0,0,28827,0,0,Volvo,XC 90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7873,0.0,29.7431,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,149,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,28828,0,12,Pontiac,G3 (5-Door),N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Compact Cars,2010,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,194,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,28829,0,12,Pontiac,G3 (5-Door),N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Compact Cars,2010,2750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2864,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2883,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1986,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28830,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4492,0.0,40.2494,0.0,Sport Utility Vehicle - 2WD,2009,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,52,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28832,10,0,Infiniti,G37 Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3,0.0,33.2,0.0,Subcompact Cars,2009,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,53,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28833,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.8882,0.0,35.3958,0.0,Subcompact Cars,2009,-3000,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,(GUZZLER) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28837,0,0,Aston Martin,Lagonda,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.3,0.0,13.9,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,(GUZZLER) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28838,0,0,Aston Martin,Saloon/Vantage/Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.3,0.0,13.9,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,(GUZZLER) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,28839,0,0,Aston Martin,Saloon/Vantage/Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.3,0.0,13.9,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3503,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2884,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1986,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28840,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2,0.0,33.1,0.0,Subcompact Cars,1987,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28841,0,0,Pontiac,Firebird/Trans Am/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2,0.0,33.1,0.0,Subcompact Cars,1987,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28842,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,32.2421,0.0,Small Pickup Trucks 2WD,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28843,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1998,0.0,33.1207,0.0,Small Pickup Trucks 2WD,1987,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28844,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7,0.0,34.9,0.0,Small Pickup Trucks 2WD,1987,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28845,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6,0.0,32.2421,0.0,Small Pickup Trucks 2WD,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28846,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3,0.0,32.1,0.0,Small Pickup Trucks 2WD,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28847,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1998,0.0,33.1207,0.0,Small Pickup Trucks 2WD,1987,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28848,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7932,0.0,27.3095,0.0,Small Pickup Trucks 2WD,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28849,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.6995,0.0,30.2841,0.0,Small Pickup Trucks 2WD,1987,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3502,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2885,0,0,Ford,Ranger Pickup Cab Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1986,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28850,0,0,Ford,Courier Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9484,0.0,25.764,0.0,Small Pickup Trucks 4WD,1987,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28851,0,0,Mazda,B2600 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.9598,0.0,22.2569,0.0,Small Pickup Trucks 4WD,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28852,0,0,Mazda,B2600 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.9484,0.0,25.764,0.0,Small Pickup Trucks 4WD,1987,-5250,,,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28853,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4904,0.0,18.4306,0.0,Standard Pickup Trucks 2WD,1987,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28854,0,0,Chrysler,QC Car,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.2,0.0,29.1,0.0,Two Seaters,1988,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28855,0,0,Ford,Tempo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0355,0.0,36.1385,0.0,Compact Cars,1988,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28856,0,0,Mercury,Topaz,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0301,0.0,36.1252,0.0,Compact Cars,1988,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28857,0,0,Ford,Taurus Wagon V6 A/C,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1077,0.0,31.5191,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28858,0,0,Mercury,Sable Wagon V6 A/C,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0023,0.0,31.3521,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28859,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.7258,0.0,21.4881,0.0,Standard Pickup Trucks 4WD,1988,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2886,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.359,0.0,Special Purpose Vehicle 2WD,1986,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28860,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.9,0.0,20.3,0.0,Standard Pickup Trucks 4WD,1988,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28861,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.9,0.0,20.3,0.0,Special Purpose Vehicle 4WD,1988,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28862,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8132,0.0,26.8202,0.0,Small Pickup Trucks 2WD,1989,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28863,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1901,0.0,24.9586,0.0,Small Pickup Trucks 4WD,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28864,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7979,0.0,26.8,0.0,Special Purpose Vehicle 2WD,1989,-4250,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS) (SPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,28866,0,0,Geo,Metro LSI Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,35.9,0.0,47.1,0.0,Two Seaters,1990,2750,,,,,,,,, +8.89947,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS) (SPFI),-1,1500,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,28867,0,0,Geo,Metro LSI Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.8,0.0,58.5,0.0,Two Seaters,1990,4500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,0,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28868,0,0,Yugo,GV Plus/GV/Cabrio,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.1,0.0,37.1,0.0,Minicompact Cars,1990,0,,EMS 5MODE,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2887,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28870,0,0,Volvo,240,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9098,0.0,29.8,0.0,Compact Cars,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28871,0,0,Volvo,240,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.5,0.0,Compact Cars,1990,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28872,0,0,Volvo,240,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7571,0.0,31.6931,0.0,Compact Cars,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(LH-3.1) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28873,0,0,Volvo,240,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.9,0.0,35.7,0.0,Compact Cars,1990,-1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,0,(GUZZLER) FFS MPFI (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28874,0,0,Mercedes-Benz,420SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2498,0.0,21.0489,0.0,Midsize Cars,1990,-11250,T,EMS 2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28875,0,0,Volvo,740,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9785,0.0,32.334,0.0,Midsize Cars,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28876,0,0,Volvo,740,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8025,0.0,33.7061,0.0,Midsize Cars,1990,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(BOSCH) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28877,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.8,0.0,31.7,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28878,0,0,Volvo,240 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9098,0.0,29.8,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28879,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8025,0.0,33.7061,0.0,Midsize-Large Station Wagons,1990,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2888,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1986,-9250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,28880,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3334,0.0,34.6772,0.0,Midsize-Large Station Wagons,1990,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28881,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.9785,0.0,32.334,0.0,Midsize-Large Station Wagons,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28882,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8025,0.0,33.7061,0.0,Midsize-Large Station Wagons,1990,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28883,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.855,0.0,30.4223,0.0,Small Pickup Trucks 2WD,1990,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28884,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0134,0.0,28.3163,0.0,Small Pickup Trucks 2WD,1990,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28885,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.1209,0.0,22.9188,0.0,Standard Pickup Trucks 2WD,1990,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28886,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.9785,0.0,22.8671,0.0,Standard Pickup Trucks 2WD,1990,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28887,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.4,0.0,18.7,0.0,"Vans, Cargo Type",1990,-9250,,,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(FFS) (DIESEL) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28888,0,0,Chevrolet,V10 (K10) Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.3,0.0,Special Purpose Vehicle 4WD,1987,-6500,,,,,Diesel,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(FFS) (DIESEL) (NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28889,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,27.3,0.0,Special Purpose Vehicle 4WD,1987,-6500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,2889,0,0,Toyota,Cab/Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1986,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28890,0,0,Wallace Environmental,Wetl 500 SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Two Seaters,1991,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28891,0,0,Wallace Environmental,Wetl 560 SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Two Seaters,1991,-11250,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28892,0,0,Import Trade Services,ITS 190E,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Subcompact Cars,1991,-6750,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28893,0,0,Import Trade Services,ITS 190E 2.0,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Subcompact Cars,1991,-6750,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28894,0,0,Import Trade Services,ITS 190E 2.3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Subcompact Cars,1991,-6750,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28895,0,0,Import Trade Services,ITS 230CE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Subcompact Cars,1991,-6750,T,2MODE DC/FW,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28896,0,0,Import Trade Services,MB 300E,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.8,0.0,21.3,0.0,Compact Cars,1991,-7750,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28897,0,0,Wallace Environmental,Wetl 500 SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1991,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28898,0,0,Wallace Environmental,Wetl 500 SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1991,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28899,0,0,Wallace Environmental,Wetl 560 SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1991,-11250,T,2MODE DC/FW,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,85,289,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,47.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,2890,0,0,Toyota,Cab/Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1986,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28900,0,0,Import Trade Services,ITS 520,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,23.0,0.0,Midsize Cars,1991,-8000,T,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28901,0,0,Wallace Environmental,Wetl 500 SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Midsize Cars,1991,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28902,0,0,Wallace Environmental,Wetl 560 SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Midsize Cars,1991,-11250,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28903,0,0,Import Trade Services,ITS 200TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Midsize Station Wagons,1991,-6750,T,2MODE DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28904,0,0,Import Trade Services,ITS 230TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7234,0.0,23.3155,0.0,Midsize Station Wagons,1991,-6750,T,2MODE DC/FW,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28905,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7793,0.0,27.3986,0.0,Standard Pickup Trucks 4WD,1991,-5500,,Creeper,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28906,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.722,0.0,29.3652,0.0,Standard Pickup Trucks 4WD,1991,-4500,,Creeper,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28907,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7925,0.0,27.4222,0.0,Standard Pickup Trucks 4WD,1991,-5500,,Creeper,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28908,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7682,0.0,29.4266,0.0,Standard Pickup Trucks 4WD,1991,-4500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28909,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8116,0.0,22.642,0.0,Special Purpose Vehicle 4WD,1991,-7750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9001,(FFS) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2891,0,0,Alfa Romeo,Spider,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Two Seaters,1987,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28910,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9502,0.0,24.3384,0.0,Special Purpose Vehicle 4WD,1991,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28911,0,0,Autokraft Limited,A.C.MARK IV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,27.6,0.0,Two Seaters,1992,-6750,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28912,0,0,Dodge,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.1,0.0,27.9,0.0,Two Seaters,1992,-9500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28913,0,0,Import Trade Services,MB 300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8,0.0,28.8,0.0,Two Seaters,1992,-4250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28914,0,0,J.K. Motors,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Two Seaters,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28915,0,0,J.K. Motors,300SL MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5487,0.0,21.6982,0.0,Two Seaters,1992,-6250,T,EMS,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28916,0,0,J.K. Motors,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.7,0.0,20.2,0.0,Two Seaters,1992,-15500,T,EMS,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28917,0,0,Wallace Environmental,Wetl Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.7479,0.0,19.9218,0.0,Two Seaters,1992,-15500,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,0,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28918,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1173,0.0,36.7553,0.0,Subcompact Cars,1992,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28919,0,0,BMW,318i/318iS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.009,0.0,38.2201,0.0,Subcompact Cars,1992,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,10187,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2892,0,0,Autokraft Limited,A.C.Mkiv,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1987,-4250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28920,0,0,BMW,325i/325iS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,32.3,0.0,Subcompact Cars,1992,-3750,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,28921,0,0,BMW,325i/325iS,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.2,0.0,33.9,0.0,Subcompact Cars,1992,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28922,0,0,Wallace Environmental,Wetl 190E,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,30.7,0.0,Subcompact Cars,1992,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28923,0,0,Wallace Environmental,Wetl 190E 2.3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.6,0.0,30.7,0.0,Subcompact Cars,1992,-3750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28924,0,0,Wallace Environmental,Wetl 850I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.4,0.0,23.1,0.0,Subcompact Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28925,0,0,Wallace Environmental,Wetl 850I,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.6,0.0,23.4,0.0,Subcompact Cars,1992,-11250,T,DC/FW,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28926,0,0,BMW,525i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1333,0.0,31.3843,0.0,Compact Cars,1992,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28927,0,0,BMW,525i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2,0.0,32.1493,0.0,Compact Cars,1992,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28929,0,0,Import Trade Services,BMW 325I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,23.0,0.0,Compact Cars,1992,-6250,T,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,12710,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2893,0,0,Bertone,X1/9,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1987,-500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,28930,0,0,Wallace Environmental,Wetl 412,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.4,0.0,18.2,0.0,Compact Cars,1992,-18250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28931,0,0,Wallace Environmental,Wetl 500 SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28932,0,0,Wallace Environmental,Wetl 500 SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28933,0,0,Wallace Environmental,Wetl 560 SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Compact Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28934,0,0,CX Automotive,XM v6,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.2,0.0,26.8,0.0,Midsize Cars,1992,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28935,0,0,CX Automotive,XM v6a,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,26.8,0.0,Midsize Cars,1992,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28936,0,0,J.K. Motors,300CE MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5487,0.0,21.6982,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28937,0,0,J.K. Motors,300E MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5487,0.0,21.6982,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28938,0,0,J.K. Motors,BMW535I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1992,-7750,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28939,0,0,J.K. Motors,BMW635CSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1992,-7750,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4610,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2894,0,0,Cadillac,Allante,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Two Seaters,1987,-5750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28940,0,0,J.K. Motors,BMW635L6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1992,-7750,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28941,0,0,J.K. Motors,BMW735I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1992,-7750,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28942,0,0,J.K. Motors,BMW735IL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1992,-7750,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28943,0,0,J.K. Motors,MERC BENZ 300CE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28944,0,0,J.K. Motors,MERC BENZ 300E,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28945,0,0,J.K. Motors,MERC BENZ 300SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28946,0,0,J.K. Motors,MERC.BENZ.300SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5487,0.0,21.6982,0.0,Midsize Cars,1992,-6250,T,EMS,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28947,0,0,Wallace Environmental,Wetl 500 SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Midsize Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28948,0,0,Wallace Environmental,Wetl 560 SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.4,0.0,Midsize Cars,1992,-11250,T,2MODE DC/FW,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28949,0,0,J.K. Motors,MERC BENZ 300SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Large Cars,1992,-6250,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2895,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Two Seaters,1987,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28950,0,0,Wallace Environmental,Wetl 600 SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.3,0.0,Large Cars,1992,-13250,T,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28951,0,0,Audi,100 quattro Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6499,0.0,28.2428,0.0,Small Station Wagons,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28952,0,0,BMW,525i Touring,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1333,0.0,31.3843,0.0,Small Station Wagons,1992,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28953,0,0,CX Automotive,XM v6 Break,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,26.8,0.0,Small Station Wagons,1992,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28954,0,0,J.K. Motors,300TE MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5487,0.0,21.6982,0.0,Midsize Station Wagons,1992,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28955,0,0,J.K. Motors,MERC BENZ 300TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Station Wagons,1992,-6250,T,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28956,0,0,Peugeot,505 Station Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7,0.0,26.6,0.0,Midsize Station Wagons,1992,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,0,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28957,0,0,Peugeot,505 Station Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.7069,0.0,28.719,0.0,Midsize Station Wagons,1992,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28959,0,0,Autokraft Limited,A.C.MARK IV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3,0.0,27.6,0.0,Two Seaters,1993,-6750,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2896,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Two Seaters,1987,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,28960,0,0,Dodge,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.6,0.0,27.5,0.0,Two Seaters,1993,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,28961,0,0,Ferrari,348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.1,0.0,Two Seaters,1993,-11250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28962,0,0,J.K. Motors,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Two Seaters,1993,-6250,T,EMS,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,28963,0,0,J.K. Motors,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.7,0.0,20.2,0.0,Two Seaters,1993,-13000,T,EMS,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,28964,0,0,J.K. Motors,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.4,0.0,19.3,0.0,Two Seaters,1993,-13000,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28965,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6487,0.0,28.5996,0.0,Two Seaters,1993,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28966,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0994,0.0,28.5,0.0,Two Seaters,1993,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,28967,0,0,Mercedes-Benz,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3464,0.0,26.0996,0.0,Two Seaters,1993,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28968,0,0,Mercedes-Benz,600SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.2,0.0,22.5499,0.0,Two Seaters,1993,-11250,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28969,0,0,Panos,Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.6,0.0,28.9,0.0,Two Seaters,1993,-6250,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,16901,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2897,0,36,CX Automotive,CX 25Tri,N,false,0,72,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Two Seaters,1987,-4250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28970,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3,0.0,30.7,0.0,Minicompact Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28971,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.847,0.0,29.6471,0.0,Minicompact Cars,1993,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28972,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,30.0,0.0,Minicompact Cars,1993,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28973,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1,0.0,29.8664,0.0,Minicompact Cars,1993,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28974,0,0,Aston Martin,Virage/Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.5922,0.0,21.7,0.0,Subcompact Cars,1993,-13250,T,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,28975,0,0,Aston Martin,Virage/Volante,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.2,0.0,Subcompact Cars,1993,-11250,T,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,28976,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,39.7,0.0,50.9,0.0,Subcompact Cars,1993,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,28977,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,63.8,0.0,Subcompact Cars,1993,5250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28978,0,0,Honda,Prelude,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.9862,0.0,37.9344,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28979,0,0,Mercedes-Benz,300CE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7556,0.0,30.7977,0.0,Subcompact Cars,1993,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,16901,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,2898,0,36,CX Automotive,CX 25Tri,N,false,0,72,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Two Seaters,1987,-4250,T,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,28981,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,39.7,0.0,50.9,0.0,Subcompact Cars,1993,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,0,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,28982,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,63.8,0.0,Subcompact Cars,1993,5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS) (S-CHARGE),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28983,0,0,Saleen,Mustang,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.1,0.0,25.3,0.0,Subcompact Cars,1993,-7750,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28984,0,0,Subaru,Impreza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4625,0.0,38.4171,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,28985,0,0,Subaru,Impreza,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.5913,0.0,40.1042,0.0,Subcompact Cars,1993,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28986,0,0,Subaru,Impreza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5665,0.0,36.3225,0.0,Subcompact Cars,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,28987,0,0,Subaru,Impreza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6879,0.0,38.0235,0.0,Subcompact Cars,1993,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28988,0,0,Volkswagen,Corrado SLC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9,0.0,31.9,0.0,Subcompact Cars,1993,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,(PRE-CAT) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,28989,0,0,Acura,Legend,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9212,0.0,29.1948,0.0,Compact Cars,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38043,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,2899,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Two Seaters,1987,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,(PRE-CAT) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28990,0,0,Acura,Legend,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.861,0.0,32.1881,0.0,Compact Cars,1993,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,0,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28991,0,0,Audi,V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.9,0.0,25.0984,0.0,Compact Cars,1993,-8000,T,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,28993,0,0,Infiniti,G20,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2397,0.0,36.3989,0.0,Compact Cars,1993,-500,,3MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,28994,0,0,J.K. Motors,190E 2.3 MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.2,0.0,Compact Cars,1993,-4250,T,EMS,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,28995,0,0,Kia,Sephia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7885,0.0,39.4913,0.0,Compact Cars,1993,500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28996,0,0,Kia,Sephia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0697,0.0,42.2693,0.0,Compact Cars,1993,1750,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,0,"(DSL,TRBO) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,28997,0,0,Mercedes-Benz,300D 2.5 Turbo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.3479,0.0,42.0328,0.0,Compact Cars,1993,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,28998,0,0,Mercedes-Benz,300E,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7556,0.0,30.7977,0.0,Compact Cars,1993,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,28999,0,0,Mercedes-Benz,300E 2.8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1499,0.0,31.5436,0.0,Compact Cars,1993,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4146,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Two Seaters,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,85,290,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1985,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,23,49,2900,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Two Seaters,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29000,0,0,Mercedes-Benz,300E 4Matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.568,0.0,26.4232,0.0,Compact Cars,1993,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29001,0,0,Mercedes-Benz,500E,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8994,0.0,24.9,0.0,Compact Cars,1993,-6750,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,(4- VALVE) (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29002,0,0,Oldsmobile,Achieva,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.8,0.0,35.9,0.0,Compact Cars,1993,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29003,0,0,Volkswagen,Golf III / GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7601,0.0,37.7814,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29004,0,0,Volkswagen,Jetta III,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7604,0.0,37.7828,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29005,0,0,Ford,Taurus SHO,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,33.0,0.0,Midsize Cars,1993,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29006,0,0,Ford,Taurus,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,36.1,0.0,Midsize Cars,1993,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29007,0,0,J.K. Motors,230E MERC BENZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.2,0.0,Midsize Cars,1993,-4250,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29008,0,0,J.K. Motors,BMW535I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1993,-7750,T,EMS 2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29009,0,0,J.K. Motors,BMW635CSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1993,-7750,T,EMS 2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,2901,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Two Seaters,1987,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29010,0,0,J.K. Motors,BMW635L6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1993,-7750,T,EMS 2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29011,0,0,J.K. Motors,BMW735I,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1993,-7750,T,EMS 2MODE,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29012,0,0,J.K. Motors,BMW735IL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4498,0.0,24.3499,0.0,Midsize Cars,1993,-7750,T,EMS 2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29013,0,0,J.K. Motors,MERC BENZ 300CE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1993,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29014,0,0,J.K. Motors,MERC BENZ 300E,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1993,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29015,0,0,J.K. Motors,MERC BENZ 300SE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Cars,1993,-6250,T,EMS,,,,,,, +20.589638,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29016,0,0,J.K. Motors,MERC.BENZ 260E,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.4,0.0,24.2,0.0,Midsize Cars,1993,-5250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29017,0,0,J.K. Motors,PORSCHE 928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Midsize Cars,1993,-6250,T,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29018,0,0,Lexus,GS300,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4909,0.0,29.0668,0.0,Midsize Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29019,0,0,Lincoln,Mark VIII,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2934,0.0,31.8921,0.0,Midsize Cars,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38043,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,2902,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1987,-3250,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29020,0,0,Mercedes-Benz,500SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,21.9,0.0,Midsize Cars,1993,-11250,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29021,0,0,Volkswagen,Passat,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3332,0.0,35.6674,0.0,Midsize Cars,1993,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29022,0,0,Volkswagen,Passat,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.628,0.0,32.4322,0.0,Midsize Cars,1993,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8) (GUZZLER) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29023,0,0,Chevrolet,Caprice,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,0.0,25.8,0.0,Large Cars,1993,-6250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,(POLICE) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29024,0,0,Ford,Crown Victoria Police,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5914,0.0,29.6459,0.0,Large Cars,1993,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29025,0,0,J.K. Motors,MERC BENZ 300SEL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Large Cars,1993,-6250,T,EMS,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29026,0,0,Mercedes-Benz,600SEL/SEC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.9081,0.0,20.18,0.0,Large Cars,1993,-13250,T,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"R-ENG (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29027,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.9,0.0,36.8,0.0,Large Cars,1993,-2250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29028,0,0,Subaru,Impreza Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3999,0.0,38.4344,0.0,Small Station Wagons,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29029,0,0,Subaru,Impreza Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4253,0.0,39.5904,0.0,Small Station Wagons,1993,500,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2903,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1987,-13000,T,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29030,0,0,Subaru,Impreza Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.552,0.0,36.2617,0.0,Small Station Wagons,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,0,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29031,0,0,Subaru,Impreza Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4678,0.0,36.6776,0.0,Small Station Wagons,1993,0,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29032,0,0,J.K. Motors,MERC BENZ 300TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,22.3,0.0,Midsize Station Wagons,1993,-6250,T,EMS,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29033,0,0,Mercedes-Benz,300TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7556,0.0,30.7977,0.0,Midsize Station Wagons,1993,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29034,0,0,Mercedes-Benz,300TE 4Matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.568,0.0,26.4232,0.0,Midsize Station Wagons,1993,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29035,0,0,Volkswagen,Passat Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.628,0.0,32.4322,0.0,Midsize Station Wagons,1993,-3250,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29036,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4361,0.0,28.5435,0.0,Standard Pickup Trucks 2WD,1993,-4500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29037,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.522,0.0,27.7709,0.0,Standard Pickup Trucks 2WD,1993,-5500,,Creeper,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29038,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,27.6,0.0,Standard Pickup Trucks 2WD,1993,-5500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29039,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.522,0.0,27.7709,0.0,Standard Pickup Trucks 2WD,1993,-5500,,Creeper,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2904,0,0,Ferrari,328 GTS/GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1987,-9250,T,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29040,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.4405,0.0,28.5558,0.0,Standard Pickup Trucks 2WD,1993,-4500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29041,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.522,0.0,27.7709,0.0,Standard Pickup Trucks 2WD,1993,-5500,,Creeper,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29042,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5852,0.0,27.291,0.0,Standard Pickup Trucks 2WD,1993,-5500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29043,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.522,0.0,27.7709,0.0,Standard Pickup Trucks 2WD,1993,-5500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29044,0,0,Toyota,Truck 2WD/T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6986,0.0,25.7864,0.0,Standard Pickup Trucks 2WD,1993,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29045,0,0,Toyota,Truck 2WD/T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.9538,0.0,29.4532,0.0,Standard Pickup Trucks 2WD,1993,-3250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29046,0,0,Toyota,Truck 2WD/T100 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.2336,0.0,27.4012,0.0,Standard Pickup Trucks 2WD,1993,-4250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29047,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.255,0.0,26.7212,0.0,Standard Pickup Trucks 4WD,1993,-5500,,Creeper,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29048,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.255,0.0,26.7212,0.0,Standard Pickup Trucks 4WD,1993,-5500,,Creeper,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29049,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.255,0.0,26.7212,0.0,Standard Pickup Trucks 4WD,1993,-5500,,Creeper,,,Diesel,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2905,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,40.0,0.0,Two Seaters,1987,1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29050,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.255,0.0,26.7212,0.0,Standard Pickup Trucks 4WD,1993,-5500,,Creeper,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29052,0,0,Toyota,Truck 4WD/T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9,0.0,21.2,0.0,Standard Pickup Trucks 4WD,1993,-9250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29053,0,0,Toyota,Truck 4WD/T100 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.3618,0.0,23.056,0.0,Standard Pickup Trucks 4WD,1993,-6250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29054,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,27.6,0.0,"Vans, Cargo Type",1993,-5500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29055,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1,0.0,27.6,0.0,"Vans, Cargo Type",1993,-5500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29056,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.2992,0.0,26.7556,0.0,"Vans, Passenger Type",1993,-5500,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,(DIESEL) (NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29057,0,0,GMC,Rally G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3007,0.0,26.7554,0.0,"Vans, Passenger Type",1993,-5500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29058,0,0,Volkswagen,Eurovan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2147,0.0,23.7469,0.0,"Vans, Passenger Type",1993,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29059,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8737,0.0,25.2873,0.0,Special Purpose Vehicles,1993,-5250,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,2906,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Two Seaters,1987,2250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29060,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7147,0.0,24.4297,0.0,Special Purpose Vehicles,1993,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29061,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.4,0.0,Special Purpose Vehicles,1993,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29063,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1042,0.0,24.1836,0.0,Special Purpose Vehicle 4WD,1993,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29064,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7131,0.0,24.4283,0.0,Special Purpose Vehicle 4WD,1993,-5250,,SIL,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,29067,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.6984,0.0,14.0222,0.0,Special Purpose Vehicles,1993,-15500,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,29068,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.7658,0.0,15.2695,0.0,Special Purpose Vehicles,1993,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29069,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1223,0.0,29.4188,0.0,Two Seaters,1994,-4750,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2907,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.0,0.0,Two Seaters,1987,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29070,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0979,0.0,29.5459,0.0,Two Seaters,1994,-4750,,2MODE 2LKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,0,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,29071,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.4,0.0,18.0499,0.0,Two Seaters,1994,-18250,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29072,0,0,Nissan,240SX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.3262,0.0,31.4521,0.0,Minicompact Cars,1994,-3000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29073,0,0,BMW,840ci,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,28.0,0.0,Subcompact Cars,1994,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,0,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29074,0,0,Saleen,Mustang S351,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.4,0.0,25.8,0.0,Subcompact Cars,1994,-9250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29075,0,0,Volkswagen,Jetta III GLX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.3,0.0,32.4,0.0,Compact Cars,1994,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29076,0,0,Chrysler,Concorde,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3489,0.0,33.3973,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29077,0,0,Dodge,Intrepid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3489,0.0,33.3973,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29078,0,0,Eagle,Vision,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.3489,0.0,33.3973,0.0,Large Cars,1994,-2500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29079,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.2355,0.0,23.6821,0.0,Standard Pickup Trucks 2WD,1994,-7750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2908,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,44.0,0.0,Two Seaters,1987,1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29080,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1654,0.0,23.4129,0.0,Standard Pickup Trucks 4WD,1994,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29081,0,0,Volkswagen,Eurovan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1907,0.0,23.7499,0.0,Vans,1994,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29082,0,0,Volkswagen,Eurovan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.6952,0.0,26.4159,0.0,Vans,1994,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29083,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6089,0.0,29.6314,0.0,Special Purpose Vehicle 2WD,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29086,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6089,0.0,29.6314,0.0,Special Purpose Vehicle 2WD,1994,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29087,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.4,0.0,24.1,0.0,Special Purpose Vehicle 4WD,1994,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29088,0,0,Jaguar,XJS Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9499,0.0,30.3499,0.0,Subcompact Cars,1995,-4750,,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC-4 (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29089,0,0,Mitsubishi,Mirage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4973,0.0,37.5966,0.0,Subcompact Cars,1995,0,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS) 3 barrel carb,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,2909,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,46.0,0.0,Two Seaters,1987,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,SOHC-4 (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29090,0,0,Mitsubishi,Mirage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.332,0.0,37.7125,0.0,Subcompact Cars,1995,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29091,0,0,Ford,Contour,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1098,0.0,44.256,0.0,Compact Cars,1995,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,5.3,Rear-Wheel Drive,0,(GUZZLER) (FFS) (S-CHARGE),-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29092,0,0,Jaguar,XJR,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1994,0.0,26.7492,0.0,Compact Cars,1995,-8000,T,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29093,0,0,Kia,Sephia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2,0.0,41.5,0.0,Compact Cars,1995,500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29094,0,0,Mercury,Mystique,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.1098,0.0,44.256,0.0,Compact Cars,1995,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29095,0,0,Hyundai,Sonata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.03,0.0,30.5328,0.0,Midsize Cars,1995,-3250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29098,0,0,Volvo,940,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1699,0.0,33.4379,0.0,Midsize Cars,1995,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29099,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4072,0.0,36.7749,0.0,Midsize Station Wagons,1995,-1000,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,291,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Compact Cars,1985,-3000,,,T,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS) fuel injection,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2910,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Two Seaters,1987,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,0,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29100,0,0,Volvo,850 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.5186,0.0,36.8462,0.0,Midsize Station Wagons,1995,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29101,0,0,Volvo,940 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1699,0.0,33.4379,0.0,Midsize Station Wagons,1995,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,0,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29102,0,0,GMC,Sierra 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.1,0.0,20.0,0.0,Standard Pickup Trucks 4WD,1995,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29103,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4949,0.0,24.2745,0.0,Special Purpose Vehicles,1995,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29104,0,0,Honda,Passport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1446,0.0,24.3147,0.0,Special Purpose Vehicles,1995,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29105,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5698,0.0,24.3367,0.0,Special Purpose Vehicles,1995,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29106,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1608,0.0,24.38,0.0,Special Purpose Vehicles,1995,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29107,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6878,0.0,23.4935,0.0,Special Purpose Vehicle 4WD,1995,-6250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29108,0,0,Honda,Passport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.144,0.0,24.0073,0.0,Special Purpose Vehicle 4WD,1995,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29109,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.7616,0.0,23.6638,0.0,Special Purpose Vehicle 4WD,1995,-6250,,2MODE CLKUP,,,,,,, +7.163524,0.0,0.0,0.0,42,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,193.19565217391303,46,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1200,0,Regular,Regular Gasoline,-1,-1,51,0.0,0,0.0,0.0,0.0,0.0,0,0,2911,0,0,Honda,Civic CRX HF,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,58.0,0.0,73.0769,0.0,Two Seaters,1987,6000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,0,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29110,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.1626,0.0,24.1741,0.0,Special Purpose Vehicle 4WD,1995,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29111,0,0,Saab,900 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,34.8,0.0,Subcompact Cars,1996,-2500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29112,0,0,Saab,900 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.1,0.0,Subcompact Cars,1996,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,B258I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29113,0,0,Saab,900 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6386,0.0,32.4494,0.0,Subcompact Cars,1996,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29114,0,0,Saab,900 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,31.5,0.0,Subcompact Cars,1996,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29115,0,0,Saab,900 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,35.2745,0.0,Subcompact Cars,1996,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29116,0,0,Buick,Regal,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29117,0,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,37.6,0.0,Midsize Cars,1996,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29118,0,0,Buick,Riviera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,34.5,0.0,Midsize Cars,1996,-3750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29119,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.5,0.0,34.8,0.0,Midsize Cars,1996,-2500,,2MODE CLKUP,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,,-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,2912,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.1026,0.0,Two Seaters,1987,5000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,B234I3 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29120,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,36.1,0.0,Midsize Cars,1996,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,0,B258I3 (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29121,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6386,0.0,32.4494,0.0,Midsize Cars,1996,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29122,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.2,0.0,31.5,0.0,Midsize Cars,1996,-3250,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,"B204L3 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29123,0,0,Saab,900,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,35.2745,0.0,Midsize Cars,1996,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29124,0,0,Buick,Park Avenue,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,37.6,0.0,Large Cars,1996,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29125,0,0,Buick,Park Avenue,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,34.5,0.0,Large Cars,1996,-3750,,CLKUP,,S,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29126,0,0,Oldsmobile,Eighty-Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,37.9,0.0,Large Cars,1996,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29127,0,0,Oldsmobile,Eighty-Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,34.5,0.0,Large Cars,1996,-3750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29128,0,0,Oldsmobile,Ninety-Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,37.6,0.0,Large Cars,1996,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29129,0,0,Pontiac,Bonneville,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5926,0.0,37.8776,0.0,Large Cars,1996,-1000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30565,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2913,16,0,Jaguar,XJ-SC,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,22.0,0.0,Two Seaters,1987,-7750,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,B308I4 (FFS) (VARIABLE),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29130,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1499,0.0,33.0,0.0,Large Cars,1996,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B234E4 (FFS,TRBO) High Power",-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29131,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1499,0.0,33.2,0.0,Large Cars,1996,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B234E4 (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29132,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,36.9,0.0,Large Cars,1996,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B234L/R4 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29134,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2,0.0,35.1,0.0,Large Cars,1996,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29135,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0338,0.0,39.3324,0.0,Two Seaters,1997,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29136,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7699,0.0,41.0524,0.0,Two Seaters,1997,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29137,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,31.9,0.0,Two Seaters,1997,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29138,0,0,BMW,Z3 Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,34.4,0.0,Two Seaters,1997,-3000,,,,,,,,, +47.068308,0.0,0.0,0.0,6,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1269.5714285714287,7,0.0,0,0.0,0.0,0.0,0.0,12,5.2,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,8600,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,2914,8,0,Lamborghini,Countach,N,false,45,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,7.0,0.0,13.0,0.0,Two Seaters,1987,-31000,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29140,0,0,BMW,318i Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9,0.0,39.8,0.0,Minicompact Cars,1997,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29141,0,0,BMW,318i/318is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2622,0.0,39.6472,0.0,Subcompact Cars,1997,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29142,0,0,BMW,318i/318is,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7699,0.0,41.0524,0.0,Subcompact Cars,1997,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29144,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.2283,0.0,39.5126,0.0,Compact Cars,1997,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,0,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29145,0,0,BMW,318ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.7699,0.0,41.0524,0.0,Compact Cars,1997,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29146,0,0,Hyundai,Elantra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1521,0.0,39.9186,0.0,Compact Cars,1997,0,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29149,0,0,Buick,Regal/Century,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7499,0.0,35.7997,0.0,Midsize Cars,1997,-3750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2915,0,0,Lotus,Esprit Turbo HC PI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Two Seaters,1987,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29150,0,0,Jaguar,Vanden Plas,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9995,0.0,29.7732,0.0,Midsize Cars,1997,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29151,0,0,Jaguar,XJ6L,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9995,0.0,29.7732,0.0,Midsize Cars,1997,-4750,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,(POLICE) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29152,0,0,Ford,Crown Victoria Police,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.1492,0.0,Large Cars,1997,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29155,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0714,0.0,31.9,0.0,Small Pickup Trucks 2WD,1997,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,0,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29156,0,0,Isuzu,Hombre Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.1607,0.0,28.978,0.0,Small Pickup Trucks 2WD,1997,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,NONE FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29158,0,0,Quantum Technologies,Chevrolet Cavalier,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.9596,0.0,34.3,0.0,Subcompact Cars,1998,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE 4.6N,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29159,0,0,Ford,Crown Victoria Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.8,0.0,28.1,0.0,Large Cars,1998,-4250,S,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2916,0,0,Lotus,Esprit Turbo HC PI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Two Seaters,1987,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,0,FFS,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29160,0,0,BMW,Z3 Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0458,0.0,32.9812,0.0,Two Seaters,1999,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER FFS,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29161,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.6424,0.0,25.7276,0.0,Two Seaters,1999,-11250,S,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,10,8.0,Rear-Wheel Drive,0,GUZZLER FFS,-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29162,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,12.6424,0.0,25.7276,0.0,Two Seaters,1999,-11250,S,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER FFS,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29163,0,0,Ferrari,360 Modena/Modena F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.8,0.0,20.3,0.0,Two Seaters,1999,-15500,S,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.6,Rear-Wheel Drive,0,GUZZLER FFS,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29164,0,0,Ferrari,360 Modena/Modena F1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.2992,0.0,21.0356,0.0,Two Seaters,1999,-13250,S,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.5,Rear-Wheel Drive,0,"GUZZLER V8 FFS,TURBO",-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29165,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.7,0.0,28.3,0.0,Two Seaters,1999,-8000,S,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,0,FFS,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29166,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.4,0.0,36.7,0.0,Two Seaters,1999,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,FFS,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29167,0,0,Porsche,911 Carrera,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2348,0.0,30.7581,0.0,Minicompact Cars,1999,-5750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,0,FFS,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29168,0,0,Porsche,911 Carrera,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5925,0.0,30.1531,0.0,Minicompact Cars,1999,-5750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,4.6M FFS MPFI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29169,0,0,Ford,Mustang,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3579,0.0,30.5754,0.0,Subcompact Cars,1999,-5750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER) (TURBO),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2917,0,0,Maserati,Biturbo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Two Seaters,1987,-9250,T,,T,,,,,, +0.06882,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,260.3703703703704,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,0,CNG FFS,-1,1150,0,CNG,Natural Gas,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29170,0,0,Honda,Civic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,43.7,0.0,Subcompact Cars,1999,6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,NONE FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29171,0,0,Quantum Technologies,Chevrolet Cavalier,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.1996,0.0,34.8,0.0,Subcompact Cars,1999,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,FFS,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29173,0,0,Suzuki,Esteem,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.7,0.0,41.4,0.0,Subcompact Cars,1999,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,"FFS,TURBO",-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29174,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.2,0.0,39.2,0.0,Subcompact Cars,1999,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,"FFS,TURBO",-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29175,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,35.1,0.0,Subcompact Cars,1999,-1750,,,T,,,,,, +0.080848,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,305.6521739130435,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,0,FFS,-1,1350,0,CNG,Natural Gas,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29176,0,0,Toyota,Camry CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,39.6,0.0,Compact Cars,1999,5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE FFS MPFI,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29177,0,0,Chevrolet,Lumina/Monte Carlo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1,0.0,34.5,0.0,Midsize Cars,1999,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,0,GUZZLER FFS,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29178,0,0,Mercedes-Benz,E55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3,0.0,29.3,0.0,Midsize Cars,1999,-5750,S,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B235E5 FFS,TURBO",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29179,0,0,Saab,9-3 Viggen,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.5,0.0,Midsize Cars,1999,-2500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36005,(GUZZLER) (TURBO),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2918,0,0,Maserati,Biturbo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Two Seaters,1987,-7750,T,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29180,0,0,Volkswagen,Passat,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5587,0.0,36.9976,0.0,Midsize Cars,1999,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29181,0,0,Volkswagen,Passat,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.127,0.0,36.9274,0.0,Midsize Cars,1999,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29182,0,0,Volkswagen,Passat Syncro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0553,0.0,33.5849,0.0,Midsize Cars,1999,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,FFS,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29183,0,0,Suzuki,Esteem Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1,0.0,43.9,0.0,Small Station Wagons,1999,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,0,FFS,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29184,0,0,Suzuki,Esteem Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8,0.0,42.5,0.0,Small Station Wagons,1999,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B235E5 FFS,TURBO",-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29185,0,0,Saab,9-5 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.6,0.0,36.2,0.0,Midsize Station Wagons,1999,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,"B308E5 FFS,TURBO",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29186,0,0,Saab,9-5 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6,0.0,32.7,0.0,Midsize Station Wagons,1999,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,0,"B235E5 FFS,TURBO",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29187,0,0,Saab,9-5 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.2,0.0,36.9,0.0,Midsize Station Wagons,1999,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29188,0,0,Volkswagen,Passat Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.127,0.0,36.9274,0.0,Midsize Station Wagons,1999,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29189,0,0,Volkswagen,Passat Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5587,0.0,36.9976,0.0,Midsize Station Wagons,1999,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2919,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,0,FFS,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29190,0,0,Volkswagen,Passat Wagon Syncro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0553,0.0,33.5849,0.0,Midsize Station Wagons,1999,-4750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,2-Wheel Drive,0,5.4E-R FFS MPFI,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29191,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.3,0.0,21.2958,0.0,Standard Pickup Trucks 2WD,1999,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,V-6 FFS,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29194,0,0,Isuzu,Vehicross,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,24.0,0.0,Special Purpose Vehicle 4WD,1999,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,0,(350 V8) POLICE FFS MPFI,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29195,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.4,0.0,Sport Utility Vehicle - 2WD,1999,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,2-Wheel Drive,0,(350 V8) POLICE FFS MPFI,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29196,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,0.0,21.4,0.0,Sport Utility Vehicle - 2WD,1999,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,2-Wheel Drive,0,FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29197,0,0,Honda,CR-V 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.1,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,1999,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,2-Wheel Drive,0,FFS,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29198,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3958,0.0,24.5561,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,2-Wheel Drive,0,FFS,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29199,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.4636,0.0,24.3655,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,85,292,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Compact Cars,1985,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2920,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Two Seaters,1987,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,2-Wheel Drive,0,FFS,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29200,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3958,0.0,24.5561,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,2-Wheel Drive,0,FFS,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29202,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3958,0.0,24.5561,0.0,Sport Utility Vehicle - 2WD,1999,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29204,0,0,Honda,CR-V 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,0,FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29205,0,0,Honda,CR-V 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.5,0.0,31.8,0.0,Sport Utility Vehicle - 4WD,1999,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,0,FFS,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29207,0,0,Infiniti,QX4 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5068,0.0,23.7333,0.0,Sport Utility Vehicle - 4WD,1999,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE 4.6N,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29208,0,0,Ford,Crown Victoria Police,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.5499,0.0,27.4499,0.0,Large Cars,2000,-5250,S,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29209,0,0,Chevrolet,Impala Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.4,0.0,37.3,0.0,Large Cars,2001,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56015,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2921,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1987,-4250,,SIL,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE 4.6N,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29210,0,0,Ford,Crown Victoria Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6,0.0,28.6,0.0,Large Cars,2001,-4250,S,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,0,FFS MPFI,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29211,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9,0.0,25.4,0.0,Special Purpose Vehicle 4WD,2001,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,3.5,,0,"GUZZLER FFS,TURBO",-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29212,0,0,Lotus,Esprit V8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.7,0.0,28.8,0.0,Two Seaters,2002,-6750,S,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,0,GUZZLER V8 FFS,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29213,0,0,Morgan,Plus Eight,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.5,0.0,Two Seaters,2002,-5750,S,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29214,0,0,Chrysler,Sebring,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8043,0.0,36.8084,0.0,Compact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29215,0,0,Chrysler,Sebring,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.049,0.0,35.2499,0.0,Compact Cars,2002,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29216,0,0,Chrysler,Sebring,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.3,0.0,Compact Cars,2002,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29217,0,0,Dodge,Stratus,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8043,0.0,36.8084,0.0,Compact Cars,2002,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29218,0,0,Dodge,Stratus,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),22.049,0.0,35.2499,0.0,Compact Cars,2002,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,SOHC FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29219,0,0,Dodge,Stratus,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2,0.0,35.3,0.0,Compact Cars,2002,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20072,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2922,0,0,Mercedes-Benz,560SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Two Seaters,1987,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,FFS,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29220,0,0,Volkswagen,Passat 4motion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Compact Cars,2002,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29221,0,0,Ford,Crown Victoria Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.2,0.0,28.4,0.0,Large Cars,2002,-5250,S,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel or All-Wheel Drive,0,FFS,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29222,0,0,Volkswagen,Passat Wagon 4motion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.4499,0.0,31.5499,0.0,Midsize Station Wagons,2002,-4750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.0,2-Wheel Drive,0,FFS,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,29224,0,0,Chevrolet,Silverado 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.4,0.0,17.5,0.0,Standard Pickup Trucks 2WD,2002,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.0,2-Wheel Drive,0,FFS,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,29225,0,0,Chevrolet,Silverado 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.4,0.0,17.5,0.0,Standard Pickup Trucks 2WD,2002,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,FFS,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29227,0,0,Hyundai,Elantra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3967,0.0,42.1713,0.0,Compact Cars,2003,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29228,0,0,Chevrolet,Impala Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,35.8,0.0,Large Cars,2003,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE 4.6N,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29229,0,0,Ford,Crown Victoria Police,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.8,0.0,Large Cars,2003,-5250,S,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4152,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2923,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,41.0,0.0,Two Seaters,1987,500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,0,"DSL, TRBO",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29230,0,0,London Taxi,London Taxi,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.8,0.0,33.9,0.0,Special Purpose Vehicle,2003,-1500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE FFS,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29231,0,0,Chevrolet,Impala Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.4,0.0,36.4,0.0,Large Cars,2004,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29232,0,0,Ford,Crown Victoria Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.6977,0.0,26.5966,0.0,Large Cars,2004,-5250,S,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,0,POLICE FFS,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29233,0,0,Chevrolet,Impala Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,37.3,0.0,Large Cars,2005,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,GUZZLER POLICE,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29234,0,0,Ford,Crown Victoria Police,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,27.0,0.0,Large Cars,2005,-5250,S,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,2-Wheel Drive,0,FFS MPFI,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29235,0,0,Mercury,Mountaineer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2847,0.0,25.5761,0.0,Sport Utility Vehicle - 2WD,2005,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,FFS,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29236,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.1,0.0,37.3,0.0,Two Seaters,2005,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,FFS,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29237,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5,0.0,36.3,0.0,Two Seaters,2005,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,0,FFS,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29238,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5482,0.0,33.4973,0.0,Two Seaters,2005,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,FFS,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29239,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.4,0.0,Two Seaters,2005,-3000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4153,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,2924,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,45.0,0.0,Two Seaters,1987,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,0,FFS,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29240,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.2404,0.0,34.0988,0.0,Two Seaters,2005,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,0,FFS MPFI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29241,0,0,Chevrolet,Impala,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9,0.0,32.6,0.0,Large Cars,2006,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,POLICE FFS,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29242,0,0,Ford,Crown Victoria Police,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3,0.0,29.4,0.0,Large Cars,2006,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,0,FFS MPFI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29243,0,0,Mercury,Montego FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.0,0.0,35.2,0.0,Large Cars,2006,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,0,FFS,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29244,0,0,Hyundai,Elantra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.1,0.0,41.1,0.0,Midsize Cars,2006,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,2-Wheel Drive,0,GAS 420 FFS,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29245,0,0,Chrysler,Town and Country 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.6615,0.0,32.9467,0.0,Minivan - 2WD,2006,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,2-Wheel Drive,0,POLICE FFS,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29246,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,0.0,23.5,0.0,Sport Utility Vehicle - 2WD,2006,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel or All-Wheel Drive,0,FFS,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29247,0,0,Dodge,Magnum AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,30.8,0.0,Sport Utility Vehicle - 4WD,2006,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,0,"FFS,TURBO",-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29248,0,0,Volvo,C70 Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.1,0.0,37.6,0.0,Subcompact Cars,2006,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29249,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6089,0.0,29.6314,0.0,Special Purpose Vehicles,1994,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4133,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2925,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Two Seaters,1987,-3250,,,,,,,,, +32.961,0.0,0.0,0.0,8,8.1,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,10.0184,0,0.0,0.0,0.0,0.0,16,8.0,All-Wheel Drive,1,PR,-1,6050,0,Premium,Premium Gasoline,-1,-1,14,14.1,0,0.0,0.0,0.0,0.0,0,0,29250,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),9.5,0.0,17.8,0.0,Two Seaters,2010,-18250,G,,T,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,31,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29251,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2010,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,30,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29252,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4331,0.0,37.3296,0.0,Two Seaters,2010,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,35,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29253,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9978,0.0,Two Seaters,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,34,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29254,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2010,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,33,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29255,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2010,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,32,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29256,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4331,0.0,37.3296,0.0,Two Seaters,2010,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,37,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29257,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9978,0.0,Two Seaters,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,36,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29258,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,11,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29259,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.395,0.0,37.6908,0.0,Minicompact Cars,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4136,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2926,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,36.0,0.0,Two Seaters,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,10,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29260,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.183,0.0,35.2427,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,19,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29261,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0113,0.0,36.7563,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,18,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29262,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9054,0.0,34.8754,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,21,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29263,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8385,0.0,36.4395,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,20,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29264,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9054,0.0,34.8754,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,27,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29265,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8385,0.0,36.4395,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,26,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29266,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9054,0.0,34.8754,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,23,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29267,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0042,0.0,36.013,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,22,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29268,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1397,0.0,34.5148,0.0,Minicompact Cars,2010,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,25,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29269,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,6601,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2927,0,0,Red Shift Ltd.,Delta 204T,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,44.0,0.0,Two Seaters,1987,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,24,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29270,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1397,0.0,34.5148,0.0,Minicompact Cars,2010,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,29,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29271,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,28,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29272,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1397,0.0,34.5148,0.0,Minicompact Cars,2010,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,13,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29273,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.395,0.0,37.6908,0.0,Minicompact Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,12,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29274,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.183,0.0,35.2427,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,15,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29275,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4637,0.0,36.9347,0.0,Minicompact Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,14,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29276,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6266,0.0,35.3594,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,17,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29277,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4637,0.0,36.9347,0.0,Minicompact Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,16,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29278,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6266,0.0,35.3594,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.384,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,60,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,27.2,0,0.0,0.0,0.0,0.0,0,0,29279,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,36.2,0.0,Subcompact Cars,2010,-2250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,45525,"(GUZZLER) (FFS,TRBO)",-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2928,0,0,Ruf Automobile Gmbh,Ruf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.359,0.0,Two Seaters,1987,-11250,T,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,81,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29280,10,0,Mercedes-Benz,E550 Coupe,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,148,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29281,7,0,Pontiac,G3 (3-Door),N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2010,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,193,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,29282,7,0,Pontiac,G3 (3-Door),N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Subcompact Cars,2010,2750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,196,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29283,0,7,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.2,0.0,42.1,0.0,Subcompact Cars,2010,1500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,195,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,29284,0,7,Suzuki,Swift x,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Subcompact Cars,2010,2750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,43,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,29285,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,47.2,0.0,Subcompact Cars,2010,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,44,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,29286,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2010,2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.18,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9545,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,68,,-1,2400,0,Premium,Premium Gasoline,-1,-1,29,29.4583,0,0.0,0.0,0.0,0.0,0,0,29287,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0251,0.0,41.3156,0.0,Subcompact Cars,2010,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,67,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,85,29288,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.9892,0.0,39.3753,0.0,Subcompact Cars,2010,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,65,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,29289,0,0,Volkswagen,New Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1733,0.0,40.8,0.0,Subcompact Cars,2010,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,45525,"(GUZZLER) (FFS,TRBO)",-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,2929,0,0,Ruf Automobile Gmbh,Ruf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.359,0.0,Two Seaters,1987,-11250,T,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,113,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29290,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.1,0.0,34.7,0.0,Compact Cars,2010,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,148,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29291,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.2525,0.0,47.3278,0.0,Compact Cars,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,191,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,29292,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.9,0.0,49.3,0.0,Compact Cars,2010,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,16,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,29293,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,50.4,0.0,Compact Cars,2010,2750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,17,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,92,29294,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.1,0.0,48.2,0.0,Compact Cars,2010,2750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,28,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29295,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3,0.0,35.8,0.0,Compact Cars,2010,-2250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,80,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29296,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,29.2,0.0,Compact Cars,2010,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,76,PR,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29297,0,13,Mercedes-Benz,CLS550,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,29.0,0.0,Compact Cars,2010,-6750,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,190,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29298,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,42.6,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,200,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,23,0.0,0.0,0.0,0.0,0,0,29299,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,19.7999,42.8,32.8,Compact Cars,2010,1000,,,,,FFV,E85,290,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3100,(CALIF),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,293,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66035,(C-ENGINE) (FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2930,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Two Seaters,1987,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,185,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29300,13,14,Pontiac,G6,Y,false,84,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,0.0,46.8,0.0,Compact Cars,2010,1500,,,,,,,,, +12.657024,4.160002,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,204,FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,0.0,23,0.0,0.0,0.0,0.0,0,0,29301,13,14,Pontiac,G6,Y,false,84,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.7999,18.5999,46.9,32.8,Compact Cars,2010,1500,,,,,FFV,E85,290,, +14.327048,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,182,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,29302,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.5999,41.2,30.2999,Compact Cars,2010,0,,,,,FFV,E85,280,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,177,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29303,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,40.3,0.0,Compact Cars,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,197,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29304,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Compact Cars,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,223,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29305,13,14,Pontiac,G6,N,false,84,95,0,0.0,0.0,0.0,0.0,Automatic (S4),19.0,0.0,31.0,0.0,Compact Cars,2010,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6843,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,71,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6,0,0.0,0.0,0.0,0.0,0,0,29306,0,13,Volkswagen,CC,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,35.1,0.0,Compact Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.8407,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,72,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2,0,0.0,0.0,0.0,0.0,0,0,29307,0,13,Volkswagen,CC 4motion,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2010,-3000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,24.0933,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.2382,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,70,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,32.4086,0,0.0,0.0,0.0,0.0,15,94,29308,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8294,0.0,43.5414,0.0,Compact Cars,2010,750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,24.0933,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.2382,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,69,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,32.4086,0,0.0,0.0,0.0,0.0,0,0,29309,0,16,Volkswagen,Jetta,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8294,0.0,43.5414,0.0,Compact Cars,2010,750,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66032,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2931,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Two Seaters,1987,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7813,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,83,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.6,0,0.0,0.0,0.0,0.0,15,89,29310,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.3,0.0,Compact Cars,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,20.17,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7981,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,80,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,30.5041,0,0.0,0.0,0.0,0.0,15,89,29311,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.8,0.0,39.348,0.0,Compact Cars,2010,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.4373,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,76,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,29312,0,13,Volvo,S40 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,37.8,0.0,Compact Cars,2010,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,75,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.3,0,0.0,0.0,0.0,0.0,0,0,29313,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Compact Cars,2010,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7813,0,0.0,0.0,0.0,0.0,5,2.4,Front-Wheel Drive,84,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.6,0,0.0,0.0,0.0,0.0,0,0,29314,0,13,Volvo,S40 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.4,0.0,39.3,0.0,Compact Cars,2010,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,219,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29315,0,16,Buick,Lacrosse/Allure,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5999,0.0,36.1,0.0,Midsize Cars,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,17,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29316,0,14,Mercedes-Benz,E350 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6,0.0,33.2,0.0,Midsize Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,14,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29317,0,14,Mercedes-Benz,E550,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.3,0.0,33.0,0.0,Midsize Cars,2010,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,13,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29318,0,14,Mercedes-Benz,E550 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9,0.0,32.3,0.0,Midsize Cars,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,111,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29319,0,17,Chrysler,300 AWD,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.1,0.0,Large Cars,2010,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2932,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0256,0.0,Two Seaters,1987,1000,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,118,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29320,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.7,0.0,Large Cars,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,116,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29321,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,117,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29323,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,35.7,0.0,Large Cars,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,115,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29324,0,16,Dodge,Charger,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.5,0.0,34.2,0.0,Large Cars,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,112,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29325,0,16,Dodge,Charger AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.1,0.0,Large Cars,2010,-2500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,151,,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,29326,0,21,Ford,Crown Victoria FFV,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7571,14.3433,33.3052,24.0597,Large Cars,2010,-2500,,,,,FFV,E85,270,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,152,,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,29327,0,21,Mercury,Grand Marquis FFV,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7571,14.3433,33.3052,24.0597,Large Cars,2010,-2500,,,,,FFV,E85,270,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,154,,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,0.0,17,0.0,0.0,0.0,0.0,0,0,29328,0,21,Lincoln,Town Car FFV,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7571,14.3433,33.3052,24.0597,Large Cars,2010,-2500,,,,,FFV,E85,270,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,50,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29329,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.5,0.0,29.8,0.0,Large Cars,2010,-5750,G,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2933,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Two Seaters,1987,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,49,PR,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29330,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,23.9,0.0,Large Cars,2010,-11250,G,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,47,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29331,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,13.9,0.0,24.6,0.0,Large Cars,2010,-9500,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,48,PR,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29332,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.5,0.0,23.1,0.0,Large Cars,2010,-11250,G,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,55,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29333,0,16,Mercedes-Benz,S400 Hybrid,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4,0.0,35.0,0.0,Large Cars,2010,-2250,,,,,Hybrid,,,126V Li-Ion, +14.964294,0.0,0.0,0.0,20,19.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0039,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,77,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,29334,0,32,Volvo,V50 AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.1,0.0,37.5,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,74,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.3,0,0.0,0.0,0.0,0.0,0,0,29335,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Small Station Wagons,2010,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0421,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,71,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.7,0,0.0,0.0,0.0,0.0,0,0,29336,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),25.5,0.0,40.6,0.0,Small Station Wagons,2010,500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,811,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29337,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1491,0.0,34.1514,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,821,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29338,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1167,0.0,35.3237,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,831,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29339,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0642,0.0,31.8217,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9002,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,7,74,2934,0,0,Alfa Romeo,GTV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Minicompact Cars,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,835,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29340,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7999,0.0,27.0,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,813,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29341,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0999,0.0,34.3,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,823,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29342,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,833,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29343,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7999,0.0,31.6,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,810,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29344,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1397,0.0,34.1796,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,820,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29345,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1607,0.0,35.2582,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,830,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29346,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.094,0.0,31.8467,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,834,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29347,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7999,0.0,27.0,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,812,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29348,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0999,0.0,34.3,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,822,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29349,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +7.009706,0.0,0.0,0.0,44,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54014,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,51,0.0,0,0.0,0.0,0.0,0.0,8,74,2935,0,0,Chevrolet,Sprint ER,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,60.0,0.0,74.0,0.0,Minicompact Cars,1987,6250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,832,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29350,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7999,0.0,31.6,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,815,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29351,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,825,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29352,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2999,0.0,34.1,0.0,Small Pickup Trucks 4WD,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,827,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29353,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8697,0.0,31.4112,0.0,Small Pickup Trucks 4WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,840,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29354,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5999,0.0,29.7999,0.0,Small Pickup Trucks 4WD,2010,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,838,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29355,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5999,0.0,29.7999,0.0,Small Pickup Trucks 4WD,2010,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,816,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29356,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,826,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29357,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2999,0.0,34.1,0.0,Small Pickup Trucks 4WD,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,836,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29358,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8495,0.0,31.3858,0.0,Small Pickup Trucks 4WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,837,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29359,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5999,0.0,29.7999,0.0,Small Pickup Trucks 4WD,2010,-3250,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54015,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,2936,0,0,Chevrolet,Turbo Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1987,4000,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,842,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29360,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7999,0.0,25.1,0.0,Standard Pickup Trucks 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,846,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29361,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,25.2,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,25,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29362,0,0,Hyundai,Entourage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.4,0.0,Minivan - 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,24,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29363,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,32.4,0.0,Minivan - 2WD,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,12,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29364,0,0,Acura,RDX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,38,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29365,0,0,Mercedes-Benz,ML350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4,0.0,28.7,0.0,Sport Utility Vehicle - 2WD,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,All-Wheel Drive,11,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29366,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2010,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,17.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7826,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,48,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,29367,0,0,Audi,Q5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,17,16.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,19.5017,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,63,,-1,2950,0,Diesel,Diesel,-1,-1,25,24.8,0,0.0,0.0,0.0,0.0,0,0,29368,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2010,-2750,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,62,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29369,0,0,Audi,Q7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.1502,0.0,26.1066,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2937,3,0,Ferrari,3.2 Mondial/Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Minicompact Cars,1987,-9250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,841,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29370,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7999,0.0,25.1,0.0,Sport Utility Vehicle - 4WD,2010,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,845,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29371,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.9,0.0,25.2,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,19,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29372,0,0,Jeep,Commander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2010,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,6,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29373,0,0,Mercedes-Benz,GL450 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.8,0.0,23.8,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,5,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29374,0,0,Mercedes-Benz,GL550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.3,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,37,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29375,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5,0.0,27.3,0.0,Sport Utility Vehicle - 4WD,2010,-5750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,35,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29376,0,0,Mercedes-Benz,ML550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,24.6,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,17.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,20.3287,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,64,,-1,2950,0,Diesel,Diesel,-1,-1,25,24.6,0,0.0,0.0,0.0,0.0,0,0,29377,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9,0.0,34.4,0.0,Sport Utility Vehicle - 4WD,2010,-2750,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,61,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29378,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.1502,0.0,26.1066,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29379,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4492,0.0,40.2494,0.0,Sport Utility Vehicle - 2WD,2009,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER) (TURBO),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,2938,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Minicompact Cars,1987,-9250,T,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,23,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29380,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2009,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,24,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29381,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4,0.0,40.6,0.0,Sport Utility Vehicle - 2WD,2009,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,40,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29382,0,0,Toyota,Venza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2009,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29383,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3942,0.0,31.577,0.0,Special Purpose Vehicles,1997,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29384,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7315,0.0,26.6551,0.0,Special Purpose Vehicles,1997,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29385,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.1,0.0,28.9,0.0,Special Purpose Vehicles,1997,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29386,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(L4),17.4014,0.0,27.0713,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29387,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3045,0.0,25.4923,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29388,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(L4),16.4781,0.0,25.2735,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29389,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.7315,0.0,26.6551,0.0,Special Purpose Vehicles,1997,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36005,(GUZZLER) (TURBO),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,2939,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Minicompact Cars,1987,-7750,T,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29390,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(L3),18.8826,0.0,24.2943,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,0,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29391,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.3045,0.0,25.4923,0.0,Special Purpose Vehicles,1997,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29392,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(L3),16.4642,0.0,22.6234,0.0,Special Purpose Vehicles,1997,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,12.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.2802,0,0.0,0.0,0.0,0.0,12,6.0,All-Wheel Drive,80,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,18.6,0,0.0,0.0,0.0,0.0,0,0,29393,0,0,Bentley,Continental Supersports,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4,0.0,24.4,0.0,Two Seaters,2010,-9500,G,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,81,,-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29394,0,0,Lamborghini,Murcielago Reventon Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),10.9,0.0,19.9,0.0,Two Seaters,2010,-15500,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,38,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29395,0,0,Porsche,911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.221,0.0,28.5532,0.0,Two Seaters,2010,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,39,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29396,0,0,Porsche,911 GT3 RS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7855,0.0,27.372,0.0,Two Seaters,2010,-6750,G,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,724,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29397,10,0,Mercedes-Benz,E350 Coupe,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4846,0.0,36.0876,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,24,FFV; PR,-1,2850,3050,Premium or E85,Premium Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,29398,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.1677,16.4,35.7311,26.4,Compact Cars,2010,-2250,,,,,FFV,E85,320,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,23,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29399,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,35.9,0.0,Compact Cars,2010,-2250,,,,,,,,, +9.976196,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3120,,-1,1650,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,294,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.7778,0.0,56.0,0.0,Compact Cars,1985,3750,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54017,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,2940,0,0,Pontiac,Turbo Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1987,4000,,,T,,,,,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,26,FFV; PR,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,29400,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.1,16.0,34.9,25.6,Compact Cars,2010,-3000,,,,,FFV,E85,320,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,25,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29401,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.7,0.0,33.9,0.0,Compact Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,22,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29402,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4,0.0,34.6,0.0,Compact Cars,2010,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,79,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29403,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.1,0.0,23.9,0.0,Compact Cars,2010,-9500,G,,T,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,77,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29404,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.0,0.0,24.7,0.0,Compact Cars,2010,-9500,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,78,PR,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29405,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.7,0.0,23.4,0.0,Compact Cars,2010,-11250,G,,T,,,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,79,,-1,1750,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,15,94,29406,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7511,0.0,58.535,0.0,Compact Cars,2010,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,75,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,15,94,29407,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),38.8462,0.0,60.1,0.0,Compact Cars,2010,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,77,,-1,1750,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,29408,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7511,0.0,58.535,0.0,Compact Cars,2010,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,74,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,29409,0,16,Volkswagen,Jetta,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),38.8462,0.0,60.1,0.0,Compact Cars,2010,3250,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2941,4,0,Porsche,911,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Minicompact Cars,1987,-4750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,220,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29410,0,16,Buick,Lacrosse/Allure AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,34.4,0.0,Midsize Cars,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,15,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29411,0,14,Mercedes-Benz,E350,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0,0.0,36.2,0.0,Midsize Cars,2010,-2250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,16,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29412,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.2551,0.0,25.5102,0.0,Large Cars,2010,-9500,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,51,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29413,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.8,0.0,32.0,0.0,Large Cars,2010,-4750,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,76,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,20,89,29414,0,0,Audi,A3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),38.8462,0.0,60.1,0.0,Small Station Wagons,2010,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,78,,-1,1750,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,29415,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7511,0.0,58.535,0.0,Small Station Wagons,2010,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,73,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,29416,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),38.8462,0.0,60.1,0.0,Small Station Wagons,2010,3250,,,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,881,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29417,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0999,0.0,27.9,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,882,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29418,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0999,0.0,27.9,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,880,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29419,0,0,GMC,Canyon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0999,0.0,27.9,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2942,4,0,Porsche,911,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.2051,0.0,Minicompact Cars,1987,-5750,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,883,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29420,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0999,0.0,27.9,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,870,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29421,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0999,0.0,26.6,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,873,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29422,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0999,0.0,26.6,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,871,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29423,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0999,0.0,26.6,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,839,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29424,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5999,0.0,29.7999,0.0,Small Pickup Trucks 4WD,2010,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,872,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29425,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0999,0.0,26.6,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,891,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,29426,0,0,Hummer,H3T 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,10.8,22.2999,16.2,Standard Pickup Trucks 4WD,2010,-7750,,,,,FFV,E85,270,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,850,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29427,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0999,12.2,24.2999,18.2,"Vans, Cargo Type",2010,-6250,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,854,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29428,0,0,Chevrolet,Express 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.2999,17.4,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,860,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29429,0,0,Chevrolet,Express 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7408,12.1407,22.7619,17.3215,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,340,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,74,2943,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Minicompact Cars,1987,-6750,T,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,864,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,29430,0,0,Chevrolet,Express 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,310,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,851,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29431,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0999,12.2,24.2999,18.2,"Vans, Cargo Type",2010,-6250,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,855,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29432,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.2999,17.4,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,861,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29433,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7408,12.1407,22.7619,17.3215,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,865,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,29434,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2010,-7750,,,,,FFV,E85,310,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,853,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29435,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.2999,17.4,"Vans, Passenger Type",2010,-7750,,,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,863,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,29436,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2010,-7750,,,,,FFV,E85,310,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,852,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29437,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.2999,17.4,"Vans, Passenger Type",2010,-7750,,,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,862,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,29438,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2010,-7750,,,,,FFV,E85,310,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,13,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29439,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2499,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,8,74,2944,0,0,Porsche,928 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1987,-6750,T,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,18,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29440,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,200,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,29441,0,0,Ford,Escape FWD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2010,-1000,,,,,FFV,E85,280,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,7,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29442,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2010,3500,,,,,Hybrid,,,330V Ni-MH, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,18,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29443,0,0,Jeep,Commander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2010,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29444,0,0,Mazda,Tribute FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2499,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,19,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29445,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.3,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,203,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,29446,0,0,Mazda,Tribute FWD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2010,-1000,,,,,FFV,E85,280,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,10,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29447,0,0,Mazda,Tribute Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2010,3500,,,,,Hybrid,,,330V Ni-MH, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,14,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29448,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2499,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,204,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,29449,0,0,Mercury,Mariner FWD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2010,-1000,,,,,FFV,E85,280,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42035,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,63,2945,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Minicompact Cars,1987,-2500,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,8,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29450,0,0,Mercury,Mariner Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2010,3500,,,,,Hybrid,,,330V Ni-MH, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,574,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29451,0,0,BMW,X5 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.167,0.0,23.1521,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,673,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29452,0,0,BMW,X6 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.167,0.0,23.1521,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,12,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29453,0,0,Ford,Escape 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.1139,0.0,36.0307,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,201,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,29454,0,0,Ford,Escape 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.565,16.0101,31.3917,23.1821,Sport Utility Vehicle - 4WD,2010,-1750,,,,,FFV,E85,250,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,6,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29455,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6,0.0,37.9,0.0,Sport Utility Vehicle - 4WD,2010,2500,,,,,Hybrid,,,330V Ni-MH, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,890,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,29456,0,0,Hummer,H3 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,10.8,22.2999,16.2,Sport Utility Vehicle - 4WD,2010,-7750,,,,,FFV,E85,230,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,17,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29457,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.4,0.0,37.0,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,202,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,29458,0,0,Mazda,Tribute 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.0,16.3,32.1,23.7,Sport Utility Vehicle - 4WD,2010,-1750,,,,,FFV,E85,250,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,9,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29459,0,0,Mazda,Tribute Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6,0.0,37.9,0.0,Sport Utility Vehicle - 4WD,2010,2500,,,,,Hybrid,,,330V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42035,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,63,2946,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Minicompact Cars,1987,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,727,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29460,0,0,Mercedes-Benz,GLK350 4matic,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.6659,0.0,28.6683,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,10.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.3446,0,0.0,0.0,0.0,0.0,8,6.3,4-Wheel Drive,34,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.2,0,0.0,0.0,0.0,0.0,0,0,29461,0,0,Mercedes-Benz,ML63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,12.8,0.0,19.7,0.0,Sport Utility Vehicle - 4WD,2010,-13250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,15,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29462,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.1139,0.0,36.0307,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,205,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,29463,0,0,Mercury,Mariner 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.565,16.0101,31.3917,23.1821,Sport Utility Vehicle - 4WD,2010,-1750,,,,,FFV,E85,250,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,11,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29464,0,0,Mercury,Mariner Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6,0.0,37.9,0.0,Sport Utility Vehicle - 4WD,2010,2500,,,,,Hybrid,,,330V Ni-MH, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29465,0,0,Chevrolet,Sport Van G10/20 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans,1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29466,0,0,Chevrolet,G10/20 Van 2WD (cargo),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans,1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29467,0,0,GMC,Vandura G15/25 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans,1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29468,0,0,Chevrolet,G30 Van 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans,1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29469,0,0,GMC,Vandura G35 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans,1995,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42010,(FFS) fuel injection,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,63,2947,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,31.0,0.0,Minicompact Cars,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,2-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29471,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.9,0.0,27.6,0.0,Standard Pickup Trucks,1995,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,NA,NA,4-Wheel Drive,0,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29472,0,0,Subaru,RX Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,38.8,0.0,Subcompact Cars,1985,500,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,NA,NA,4-Wheel Drive,0,CA model,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29473,0,0,Subaru,RX Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.9,0.0,37.1,0.0,Subcompact Cars,1985,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,67,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29475,0,0,Mercedes-Benz,SLK300,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3,0.0,36.2,0.0,Two Seaters,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,65,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29476,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8,0.0,34.7927,0.0,Two Seaters,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,66,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29477,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,34.5,0.0,Two Seaters,2010,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,64,PR,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29478,0,0,Mercedes-Benz,SLK55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.7,0.0,30.8,0.0,Two Seaters,2010,-5750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,49,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29479,9,0,Lexus,SC 430,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2995,0.0,31.6,0.0,Minicompact Cars,2010,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42040,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,2948,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.3333,0.0,Minicompact Cars,1987,-3750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,66,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29480,5,0,Volkswagen,New Beetle Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8461,0.0,39.7267,0.0,Minicompact Cars,2010,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,236,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29481,12,0,Saab,9-3 Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.9,0.0,41.2,0.0,Subcompact Cars,2010,0,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,233,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29482,12,0,Saab,9-3 Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,37.5,0.0,Subcompact Cars,2010,-500,,,T,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29483,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6617,0.0,26.8817,0.0,Subcompact Cars,2010,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,21,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29484,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.7928,0.0,26.7022,0.0,Subcompact Cars,2010,-8000,G,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,25,PR,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29485,0,11,Lexus,IS 250 AWD,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5898,0.0,36.2901,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,55,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29486,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6214,0.0,32.0888,0.0,Subcompact Cars,2010,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,532,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29487,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,40.1,0.0,Compact Cars,2010,0,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,538,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29488,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Compact Cars,2010,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,237,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29489,0,0,Saab,9-3 Sedan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.1304,0.0,41.1132,0.0,Compact Cars,2010,0,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42015,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,2949,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1987,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,229,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29490,0,0,Saab,9-3 Sedan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8327,0.0,38.4627,0.0,Compact Cars,2010,-1000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,241,PR,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29491,0,0,Saab,9-3 Sedan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9,0.0,37.1,0.0,Compact Cars,2010,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,234,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29492,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,43.1,0.0,Compact Cars,2010,500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,231,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29493,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.632,0.0,38.4997,0.0,Compact Cars,2010,-500,,,T,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,19,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29494,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.1549,0.0,26.6722,0.0,Compact Cars,2010,-8000,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,75,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29495,0,13,Mercedes-Benz,CLS63 AMG,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.7388,0.0,24.8202,0.0,Compact Cars,2010,-9500,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,531,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29496,0,13,Dodge,Avenger,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2010,500,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,537,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29497,0,13,Dodge,Avenger,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Midsize Cars,2010,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,530,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29498,0,14,Chrysler,Sebring,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.9,0.0,41.6998,0.0,Midsize Cars,2010,500,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,536,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29499,0,14,Chrysler,Sebring,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,37.6,0.0,Midsize Cars,2010,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3102,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,295,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,52001,(GUZZLER) (GM-CHEVY) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2950,4,0,Excalibur Autos,Phaeton,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Minicompact Cars,1987,-9500,T,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,239,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29500,0,16,Buick,Lacrosse/Allure,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,38.1,0.0,Midsize Cars,2010,-1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29501,0,14,Hyundai,Elantra,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.6,0.0,47.7,0.0,Midsize Cars,2010,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,29502,0,14,Hyundai,Elantra Blue,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.6478,0.0,49.217,0.0,Midsize Cars,2010,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,46,PR,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29503,0,15,Lexus,ES 350,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,38.3,0.0,Midsize Cars,2010,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,15,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29504,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.4092,0.0,24.1837,0.0,Large Cars,2010,-9500,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,12,PR,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29505,0,14,Mercedes-Benz,E63 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.6742,0.0,27.1158,0.0,Midsize Cars,2010,-8000,G,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29506,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,39.8,0.0,Large Cars,2010,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,235,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29507,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,43.1,0.0,Small Station Wagons,2010,500,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,232,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29508,0,30,Saab,9-3 SportCombi,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,37.5,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,238,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29509,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.9322,0.0,41.0456,0.0,Small Station Wagons,2010,0,,,T,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54016,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,2951,0,0,Suzuki,Forsa Turbo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1987,4000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,242,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29510,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),23.9,0.0,38.2,0.0,Small Station Wagons,2010,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,230,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29511,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8327,0.0,38.4627,0.0,Small Station Wagons,2010,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,193,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29512,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.2,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,191,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29513,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,192,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29514,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5262,0.0,27.7857,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,84,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29515,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,30.1688,0.0,Small Pickup Trucks 2WD,2010,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,82,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29516,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4422,0.0,31.7,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,184,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29517,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2414,0.0,27.7366,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,181,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29518,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3789,0.0,27.5894,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,63,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29519,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9868,0.0,35.4291,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2952,9,0,Toyota,Celica Convertible,N,false,73,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Minicompact Cars,1987,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,64,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29520,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.507,0.0,36.1463,0.0,Small Pickup Trucks 2WD,2010,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,66,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29521,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,29.2,0.0,Small Pickup Trucks 2WD,2010,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,67,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29522,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1,0.0,25.3,0.0,Small Pickup Trucks 2WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,194,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29523,0,0,Suzuki,Equator 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9951,0.0,26.3846,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,186,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29524,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8691,0.0,26.6538,0.0,Small Pickup Trucks 4WD,2010,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,185,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29525,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0673,0.0,26.82,0.0,Small Pickup Trucks 4WD,2010,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,65,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29526,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.7,0.0,30.3,0.0,Small Pickup Trucks 4WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,68,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29527,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.3,0.0,Small Pickup Trucks 4WD,2010,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,69,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29528,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,24.4,0.0,Small Pickup Trucks 4WD,2010,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,9,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29529,0,0,Jeep,Liberty 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2953,9,0,Toyota,Celica Convertible,Y,false,73,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Minicompact Cars,1987,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,8,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29530,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,120,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29531,0,0,Jeep,Wrangler 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,28.2,0.0,Sport Utility Vehicle - 2WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,183,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29532,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),18.4235,0.0,29.9,0.0,Sport Utility Vehicle - 2WD,2010,-5750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,196,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29533,0,0,Nissan,Pathfinder FE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.7767,0.0,30.9375,0.0,Sport Utility Vehicle - 2WD,2010,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,187,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29534,0,0,Nissan,Xterra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6392,0.0,28.6549,0.0,Sport Utility Vehicle - 2WD,2010,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,182,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29535,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6697,0.0,28.0488,0.0,Sport Utility Vehicle - 2WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,11,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29536,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,10,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29537,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,121,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29538,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.3208,0.0,26.5632,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,122,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29539,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.858,0.0,26.163,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2954,6,0,Volkswagen,Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Minicompact Cars,1987,-1000,,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,7,,-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29540,0,0,Mercedes-Benz,GL350 Bluetec,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.1,0.0,31.5,0.0,Sport Utility Vehicle - 4WD,2010,-3500,,,T,,Diesel,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,39,,-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29541,0,0,Mercedes-Benz,ML350 Bluetec,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.049,0.0,34.4,0.0,Sport Utility Vehicle - 4WD,2010,-2000,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,41,PR,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29542,0,0,Mercedes-Benz,R350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.7,0.0,25.8,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,43,,-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29543,0,0,Mercedes-Benz,R350 Bluetec,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2010,-2750,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,195,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29544,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.707,0.0,27.234,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,285,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29545,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.5498,0.0,24.2996,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,189,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29546,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.133,0.0,27.5665,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,188,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29547,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2998,0.0,27.1846,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,76,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29548,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.7491,0.0,Sport Utility Vehicle - 4WD,2010,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,77,PR,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29549,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.1491,0.0,Sport Utility Vehicle - 4WD,2010,-9500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2955,6,0,Volkswagen,Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Minicompact Cars,1987,0,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29550,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.7982,0.0,Special Purpose Vehicles,1995,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29551,0,0,GMC,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,0.0,21.7982,0.0,Special Purpose Vehicles,1995,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,0,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29552,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0474,0.0,30.2301,0.0,Small Pickup Trucks,1993,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,29553,0,0,Chevrolet,Sport Van G30 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.2346,0.0,18.0161,0.0,"Vans, Cargo Type",1995,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,0,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29554,0,0,GMC,Vandura 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Special Purpose Vehicles,1995,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29555,0,0,Porsche,924 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,35.8974,0.0,Minicompact Cars,1987,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29556,0,0,Porsche,924 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,0.0,0.0,0.0,0.0,Minicompact Cars,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,NA,1.3,Rear-Wheel Drive,0,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29557,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0473,0.0,31.1094,0.0,Two Seaters,1986,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,10,,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29558,5,0,Alfa Romeo,8 C Spider,N,false,45,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.035,0.0,22.4719,0.0,Minicompact Cars,2009,-11250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,285,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29559,0,0,Nissan,Titan FE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8936,0.0,24.9519,0.0,Standard Pickup Trucks 2WD,2009,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9006,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2956,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29560,0,0,Nissan,Titan FE 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6951,11.4947,25.0034,18.4866,Standard Pickup Trucks 2WD,2009,-6250,,,,,FFV,E85,310/410,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,185,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29561,0,0,Nissan,Pathfinder FE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.0689,0.0,30.9,0.0,Sport Utility Vehicle - 2WD,2009,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,550,(350 V8) (FFS) FI,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29562,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4476,0.0,22.9905,0.0,Standard Pickup Trucks/2wd,1995,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,550,(350 V8) (FFS) FI,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29563,0,0,Chevrolet,Pickup 2500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8272,0.0,19.8364,0.0,Standard Pickup Trucks/2wd,1995,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,800,(350 V8) (FFS) FI,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29564,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.4592,0.0,23.0146,0.0,Standard Pickup Trucks/2wd,1995,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,800,(350 V8) (FFS) FI,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29565,0,0,GMC,Sierra 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7767,0.0,19.7024,0.0,Standard Pickup Trucks/2wd,1995,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,800,(350 V8) (FFS) FI,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29568,0,0,GMC,Rally G15/25 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.7,0.0,19.5,0.0,Vans Passenger,1995,-11000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9002,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2957,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,0,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29570,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.7,0.0,23.6,0.0,Standard Pickup Trucks,1995,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel Drive,0,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,29572,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.1,0.0,16.3,0.0,Special Purpose Vehicles,1986,-13000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,0,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29573,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0228,0.0,31.6779,0.0,Special Purpose Vehicle 4WD,1997,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.0,4-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29574,0,0,Land Rover,LR3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,24.4,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,4-Wheel Drive,0,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29575,0,0,Land Rover,LR3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,24.0,0.0,Sport Utility Vehicle - 4WD,2007,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,0,"FFS,TURBO",-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29576,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0,0.0,37.5,0.0,Small Station Wagons,2008,-500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,870,(SOHC) (FFS) FI,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29577,0,0,Mitsubishi,Montero Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.209,0.0,27.8816,0.0,Special Purpose Vehicles/2wd,1997,-3250,,Lockup,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,870,(SOHC) (FFS) FI,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29578,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.1552,0.0,26.5367,0.0,Special Purpose Vehicles/4wd,1997,-4250,,Lockup,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,870,(SOHC) (FFS) FI,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29579,0,0,Mitsubishi,Montero Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.2185,0.0,26.3466,0.0,Special Purpose Vehicles/4wd,1997,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,9004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2958,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,870,(SOHC) (FFS) FI,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29580,0,0,Mitsubishi,Montero Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.6774,0.0,31.7794,0.0,Special Purpose Vehicles/2wd,1997,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,120,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29581,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8664,0.0,32.8732,0.0,Two Seaters,1997,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,120,(FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29582,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.7751,0.0,35.2736,0.0,Two Seaters,1997,-3750,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,280,"(DSL,TRBO) (NO-CAT)",-1,2700,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29583,0,0,Mercedes-Benz,300SDL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.3,0.0,32.9,0.0,Midsize Cars,1986,-1500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,2,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29584,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.9502,0.0,28.0198,0.0,Two Seaters,2010,-6750,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,1,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29585,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.0065,0.0,25.6094,0.0,Two Seaters,2010,-9500,G,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,59,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29586,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0,0.0,38.9,0.0,Midsize Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,243,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29587,0,16,Cadillac,CTS,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0999,0.0,38.3,0.0,Midsize Cars,2010,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,245,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29588,0,16,Cadillac,CTS AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.1,0.0,Midsize Cars,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,43,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29589,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),24.311,0.0,36.4102,0.0,Midsize Cars,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2959,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29590,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.1593,0.0,47.5129,0.0,Midsize Cars,2010,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29591,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.9,0.0,43.0,0.0,Midsize Cars,2010,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,24,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29592,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (AV-S6),30.1,0.0,42.6998,0.0,Midsize Cars,2010,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,21,PR,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29593,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7,0.0,39.6,0.0,Midsize Cars,2010,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,244,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29594,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0999,0.0,38.3,0.0,Small Station Wagons,2010,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,246,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29595,0,29,Cadillac,CTS Wagon AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.1,0.0,Small Station Wagons,2010,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,34,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29596,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,28,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29597,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2010,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,18,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29598,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2010,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,806,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29599,0,29,Mercedes-Benz,GLK350,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.9,0.0,30.6,0.0,Sport Utility Vehicle - 2WD,2010,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,85,296,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,37.1795,0.0,Compact Cars,1985,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2960,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1987,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29600,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29601,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29602,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29603,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,29604,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,16.6667,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29605,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29606,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,650,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,29607,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.8,0.0,17.4,0.0,Special Purpose Vehicle 4WD,1985,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,800,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29608,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.8,0.0,Standard Pickup Trucks 4WD,2004,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,650,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29609,0,0,Dodge,Ram Van 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,19.1,0.0,"Vans, Cargo Type",2002,-11000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64018,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2961,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,650,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,29610,0,0,Dodge,Ram Van 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.5,0.0,19.1,0.0,"Vans, Cargo Type",2002,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3761,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29611,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3761,(FFS) CA model,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29612,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29613,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29614,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-7750,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29615,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1986,-5250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29616,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1986,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(305),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29617,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1986,-7750,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29618,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29619,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64018,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,2962,11,0,Audi,Coupe GT,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,32.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3828,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29620,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,2-Wheel Drive,3828,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29621,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks 2WD,1984,-7750,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.1,2-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29622,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks 2WD,1984,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,2-Wheel Drive,4863,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29623,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks 2WD,1984,-6250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,320,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29624,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8995,0.0,30.3499,0.0,Special Purpose Vehicle 2WD,1998,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,800,(FFS) FI,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29625,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5966,0.0,27.858,0.0,Vans Passenger,1990,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,550,(FFS) (MPFI) FI,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29626,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.5,0.0,25.1,0.0,Sport Utility Vehicle - 2WD,2000,-6250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,340,(FFS) FI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29627,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.2,0.0,33.9499,0.0,Two Seaters,1997,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,340,(FFS) FI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29628,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3899,0.0,30.623,0.0,Two Seaters,1997,-5750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,41,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,29629,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.4596,0.0,48.8622,0.0,Subcompact Cars,2010,3000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2963,0,13,Audi,4000,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,42,,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,84,29630,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.6789,0.0,50.6725,0.0,Subcompact Cars,2010,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29631,0,14,Hyundai,Elantra,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.3,0.0,48.2,0.0,Midsize Cars,2010,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,44,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29632,0,15,Infiniti,M35,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S7),20.8,0.0,34.1997,0.0,Large Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,49,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29633,0,15,Infiniti,M35x,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.6499,0.0,30.5499,0.0,Large Cars,2010,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,61,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29634,0,15,Infiniti,M45,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5,0.0,29.6,0.0,Large Cars,2010,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,All-Wheel Drive,62,PR,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29635,0,15,Infiniti,M45x,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),17.3,0.0,27.2,0.0,Large Cars,2010,-6750,G,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,14,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,21,91,29636,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,36.5,0.0,49.3,0.0,Small Station Wagons,2010,3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,13,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,21,91,29637,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.5644,0.0,46.2622,0.0,Small Station Wagons,2010,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,15,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,21,91,29638,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),35.2,0.0,47.4,0.0,Small Station Wagons,2010,2750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,36,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29639,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2010,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,2964,0,13,Audi,4000,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1987,500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,35,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29640,0,0,Mitsubishi,Raider Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2010,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,213,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29641,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0605,0.0,35.2887,0.0,Sport Utility Vehicle - 2WD,2010,-2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,56,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29642,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,59,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29643,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,11.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.285,0,0.0,0.0,0.0,0.0,8,6.1,4-Wheel Drive,60,PR,-1,4650,0,Premium,Premium Gasoline,-1,-1,16,15.7,0,0.0,0.0,0.0,0.0,0,0,29644,0,0,Jeep,Grand Cherokee SRT8 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,20.9,0.0,Sport Utility Vehicle - 4WD,2010,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,5,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29645,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4737,0.0,24.7928,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,214,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29646,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7031,0.0,32.9548,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,57,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29647,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7798,0.0,38.3778,0.0,Sport Utility Vehicle - 4WD,2010,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,60,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29648,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,35.7494,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,0,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29649,0,0,Audi,A6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AV),22.9,0.0,37.3,0.0,Midsize Cars,2009,-2250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64005,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2965,0,10,Audi,4000 CS quattro,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1987,-4250,,SIL,,,,,,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,39,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,12,0.0,0.0,0.0,0.0,0,0,29650,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,11.0,25.6,16.5,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,220,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,38,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,29651,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.8,11.0,25.6,17.7,Standard Pickup Trucks 2WD,2010,-6250,,,,,FFV,E85,240,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,26,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,29652,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Standard Pickup Trucks 2WD,2010,-6250,,,,,FFV,E85,260/320,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,27,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,29653,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8,11.0,24.5,16.5,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,260/320,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,39,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29654,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.1733,0.0,43.3,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29655,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.9,0.0,43.5,0.0,Compact Cars,2010,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,35,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29656,12,0,Honda,Accord Coupe,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,39.9,0.0,Compact Cars,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,34,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29657,12,0,Honda,Accord Coupe,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4,0.0,35.5,0.0,Compact Cars,2010,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,37,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29658,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.126,0.0,43.2916,0.0,Large Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,36,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29659,0,14,Honda,Accord,N,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.8016,0.0,43.1043,0.0,Large Cars,2010,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,2966,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,33,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29660,0,14,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,41.2,0.0,Large Cars,2010,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,0,POLICE,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29661,0,21,Ford,Crown Victoria Police,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,27.6,0.0,Large Cars,1999,-5250,G,,,,,,,, +14.327048,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,153,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,29662,13,14,Pontiac,G6,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.5999,41.2,30.2999,Compact Cars,2009,0,,,,,FFV,E85,300,, +14.327048,4.404708,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,0.0,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,152,,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,22,0.0,0.0,0.0,0.0,0,0,29664,0,15,Chevrolet,Malibu,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.5999,41.2,30.2999,Midsize Cars,2009,0,,,,,FFV,E85,300,, +0.109368,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,413.52941176470586,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,650,(FFS),-1,1850,0,CNG,Natural Gas,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29665,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.6,0.0,Special Purpose Vehicle 2WD,1993,2750,,CLKUP,,,CNG,,,, +0.109368,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,413.52941176470586,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,650,(FFS) FI,-1,1850,0,CNG,Natural Gas,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29666,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.6,0.0,Special Purpose Vehicle 2WD,1994,2750,,CLKUP,,,CNG,,,, +0.109368,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,413.52941176470586,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,650,(FFS) FI,-1,1850,0,CNG,Natural Gas,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29667,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.9,0.0,28.6,0.0,Special Purpose Vehicle 2WD,1995,2750,,CLKUP,,,CNG,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,500,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29668,0,0,Ford,Ranger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.6923,0.0,32.8232,0.0,Small Pickup Trucks 2WD,2010,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,542,,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29669,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2967,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,543,,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29670,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,550,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29671,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,161,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29672,0,0,Ford,Ranger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,28.6,0.0,Small Pickup Trucks 2WD,2010,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,501,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29673,0,0,Ford,Ranger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.2884,0.0,24.6648,0.0,Small Pickup Trucks 4WD,2010,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,166,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29674,0,0,Ford,Ranger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.7,0.0,26.2,0.0,Small Pickup Trucks 4WD,2010,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,552,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29675,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,556,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29676,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,554,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29677,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,38.6,0.0,Sport Utility Vehicle - 4WD,2010,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,551,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29678,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.0,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,553,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29679,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2968,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,557,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29680,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,555,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29681,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,38.6,0.0,Sport Utility Vehicle - 4WD,2010,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,0,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29682,0,0,Porsche,944,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Minicompact Cars,1985,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,550,(FFS) (SPFI) FI,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29683,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.2,0.0,26.9,0.0,Standard Pickup Trucks 2WD,1992,-5250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,1,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29684,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.4646,0.0,37.62,0.0,Two Seaters,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,2,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29685,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.1813,0.0,37.0028,0.0,Two Seaters,2010,-1750,,,,S,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,3,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29686,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7715,0.0,23.6523,0.0,Minicompact Cars,2010,-11250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,4,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29687,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1311,0.0,27.2408,0.0,Minicompact Cars,2010,-8000,G,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,5,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29688,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7271,0.0,22.9258,0.0,Minicompact Cars,2010,-11250,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,6,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29689,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4084,0.0,24.6983,0.0,Minicompact Cars,2010,-9500,G,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2969,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,15,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,29690,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.8043,0.0,51.6555,0.0,Minicompact Cars,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,14,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29691,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.3205,0.0,47.2025,0.0,Minicompact Cars,2010,1250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,10,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29692,6,0,MINI,Cooper,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.3205,0.0,47.2025,0.0,Minicompact Cars,2010,1250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,17,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29693,6,0,MINI,Cooper S,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7253,0.0,47.7592,0.0,Minicompact Cars,2010,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,16,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,29694,6,0,MINI,Cooper S,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.0559,0.0,44.5714,0.0,Minicompact Cars,2010,750,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29695,6,0,MINI,Cooper S Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7253,0.0,47.7592,0.0,Minicompact Cars,2010,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,20,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,29696,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.0559,0.0,44.5714,0.0,Minicompact Cars,2010,750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,365,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29697,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2010,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,362,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29698,11,0,BMW,M3 Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2010,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,363,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29699,11,0,BMW,M3 Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.9853,0.0,27.9711,0.0,Subcompact Cars,2010,-6750,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3110,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,297,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.3077,0.0,Compact Cars,1985,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2970,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Subcompact Cars,1987,-5250,T,2MODE,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,32,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,29700,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,32.978,0.0,51.1915,0.0,Subcompact Cars,2010,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,31,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,29701,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,48.6,0.0,Subcompact Cars,2010,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9351,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.1,0,0.0,0.0,0.0,0.0,0,0,29702,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2010,-500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,13,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,17,80,29703,0,0,MINI,Clubman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.8043,0.0,51.6555,0.0,Subcompact Cars,2010,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,12,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,80,29704,0,0,MINI,Clubman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.3205,0.0,47.2025,0.0,Subcompact Cars,2010,1250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19,,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,80,29705,0,0,MINI,Clubman S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7253,0.0,47.7592,0.0,Subcompact Cars,2010,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,18,,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,80,29706,0,0,MINI,Clubman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.0559,0.0,44.5714,0.0,Subcompact Cars,2010,750,,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,82,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29707,0,8,Bentley,Azure,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (A6),11.5068,0.0,21.006,0.0,Compact Cars,2010,-15500,G,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,83,,-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29708,11,0,Bentley,Brooklands,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (A6),11.5068,0.0,21.006,0.0,Compact Cars,2010,-15500,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,360,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29709,0,12,BMW,M3,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Compact Cars,2010,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,2971,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1987,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,361,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29710,0,12,BMW,M3,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),16.9853,0.0,27.9711,0.0,Compact Cars,2010,-6750,G,,,,,,,, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,535,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,29711,13,0,Chrysler,Sebring Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.4,15.6,36.5,26.5,Compact Cars,2010,-1000,,,,,FFV,E85,250,, +7.844718,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19,,-1,1300,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,0,0,29712,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2010,5500,,,,,Hybrid,,,158V Ni-MH, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,29713,0,12,Kia,Rio,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.8298,0.0,50.2669,0.0,Compact Cars,2010,2750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,92,29714,0,12,Kia,Rio,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6799,0.0,48.3188,0.0,Compact Cars,2010,3000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,48,Hybrid; PR,-1,2600,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29715,0,9,Lexus,GS 450h,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto (AV-S6),27.9,0.0,35.3494,0.0,Compact Cars,2010,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29716,0,13,Acura,TL 2WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,36.8,0.0,Midsize Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,24,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29717,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.4,0.0,Midsize Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,23,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29718,0,13,Acura,TL 4WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,34.3,0.0,Midsize Cars,2010,-3000,,,,,,,,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,533,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,29719,0,14,Chrysler,Sebring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2010,-500,,,,,FFV,E85,270,, +27.4675,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12035,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,2972,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,24.0,0.0,Subcompact Cars,1987,-13250,T,,,,,,,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,534,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,29720,0,13,Dodge,Avenger,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2,16.9,38.3,27.8,Midsize Cars,2010,-500,,,,,FFV,E85,270,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,54,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29721,0,13,Lexus,GS 460,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),21.0489,0.0,34.0499,0.0,Midsize Cars,2010,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,50,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29722,0,14,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.149,0.0,33.5509,0.0,Midsize Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,52,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29723,0,14,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2010,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,51,PR,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29724,0,14,Lexus,LS 460 L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.149,0.0,33.5509,0.0,Midsize Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,53,PR,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29725,0,14,Lexus,LS 460 L AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2010,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,331,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29726,0,13,Mitsubishi,Galant,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),26.7574,0.0,42.2146,0.0,Midsize Cars,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,552,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29727,0,10,BMW,550 GT,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),18.5995,0.0,30.9537,0.0,Large Cars,2010,-4750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29728,0,14,BMW,750i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,30.1726,0.0,Large Cars,2010,-5750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,752,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29729,0,14,BMW,750i xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0,0.0,27.7,0.0,Large Cars,2010,-6750,G,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,2973,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1987,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29730,0,14,BMW,750Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.3772,0.0,29.4521,0.0,Large Cars,2010,-5750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,753,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29731,0,14,BMW,750Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.0,0.0,27.7,0.0,Large Cars,2010,-6750,G,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,541,,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,95,29732,0,0,Dodge,Caliber,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Small Station Wagons,2010,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,544,,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,95,29733,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.1,0.0,35.3,0.0,Small Station Wagons,2010,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,545,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,95,29734,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.6,0.0,40.1,0.0,Small Station Wagons,2010,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,502,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29735,0,0,Ford,Ranger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,37.7,0.0,Small Pickup Trucks 2WD,2010,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,503,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29736,0,0,Ford,Ranger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5,0.0,28.5,0.0,Small Pickup Trucks 2WD,2010,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,284,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29737,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.012,0.0,24.9815,0.0,Standard Pickup Trucks 2WD,2010,-6250,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,294,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29738,0,0,Nissan,Titan 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7526,11.559,25.0089,18.5196,Standard Pickup Trucks 2WD,2010,-6250,,,,,FFV,E85,310,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,288,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,29739,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.896,0.0,23.061,0.0,Standard Pickup Trucks 4WD,2010,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4132,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,2974,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,292,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,29740,0,0,Nissan,Titan 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8894,10.8951,23.1109,17.0935,Standard Pickup Trucks 4WD,2010,-7750,,,,,FFV,E85,280,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,19,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29741,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,39.2,0.0,Minivan - 2WD,2010,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,20,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29742,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),26.4,0.0,38.1,0.0,Minivan - 2WD,2010,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29743,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.8,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29744,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.4201,0.0,38.0299,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,70,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29745,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,72,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29746,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2010,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,58,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29747,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,61,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29748,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,16,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29749,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.3511,0.0,37.7098,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(FFS) 4 barrel carb,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,2975,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,558,Off Road Package,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29750,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,83,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29751,0,0,Nissan,Rogue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.1066,0.0,35.8606,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,71,Full Time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29752,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,98,Part Time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29753,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,73,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29754,0,0,Toyota,FJ Cruiser 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0184,0.0,28.9182,0.0,Sport Utility Vehicle - 4WD,2010,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,74,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29755,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1202,0.0,26.8137,0.0,Sport Utility Vehicle - 4WD,2010,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,62,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29756,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2010,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,6,3.3,All-Wheel Drive,75,,-1,2100,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29757,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.3499,0.0,34.9989,0.0,Sport Utility Vehicle - 4WD,2010,1500,,,,,Hybrid,,,288V Ni-MH, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,25,RNG=170,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,29758,0,6,Honda,Civic CNG,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2010,6500,,,,,CNG,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,26,PR,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29759,0,13,Lexus,GS 350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7156,0.0,36.5564,0.0,Midsize Cars,2010,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(FFS) 4 barrel carb,-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,2976,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1987,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,99,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29760,0,13,Lexus,GS 350 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Midsize Cars,2010,-3000,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,951,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29761,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0719,12.8703,26.2283,19.3825,Standard Pickup Trucks 2WD,2010,-5250,,,,,FFV,E85,310/420,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,911,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29762,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3561,13.4457,29.3708,22.128,Standard Pickup Trucks 2WD,2010,-4250,,,,,FFV,E85,330/450,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,931,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29763,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.9,26.1,19.1,Standard Pickup Trucks 2WD,2010,-6250,,,,,FFV,E85,290,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,974,,-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29764,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,30.5,0.0,Standard Pickup Trucks 2WD,2010,-500,,,,,Hybrid,,,288V Ni-MH, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,960,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,29765,0,0,Chevrolet,Silverado C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0999,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2010,-3250,,,,,FFV,E85,340,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,950,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29766,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0528,12.8513,26.2125,19.3698,Standard Pickup Trucks 2WD,2010,-5250,,,,,FFV,E85,310/420,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,910,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29767,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3682,13.4457,29.3645,22.128,Standard Pickup Trucks 2WD,2010,-4250,,,,,FFV,E85,330/450,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,932,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29768,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.9,26.1,19.1,Standard Pickup Trucks 2WD,2010,-6250,,,,,FFV,E85,290,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,973,,-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29769,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,30.5,0.0,Standard Pickup Trucks 2WD,2010,-500,,,,,Hybrid,,,288V Ni-MH, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4111,(FFS) fuel injection,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,2977,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,961,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,29770,0,0,GMC,Sierra C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0999,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2010,-3250,,,,,FFV,E85,340,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.8,4-Wheel Drive,956,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29771,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2371,12.2365,24.1496,17.9031,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,280/380,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,941,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29772,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1105,13.4013,29.0205,21.9154,Standard Pickup Trucks 4WD,2010,-4250,,,,,FFV,E85,330/450,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,937,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,29773,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9114,11.5414,25.7999,18.6426,Standard Pickup Trucks 4WD,2010,-7750,,,,,FFV,E85,290,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,977,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29774,0,0,Chevrolet,Silverado 15 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7999,0.0,30.2999,0.0,Standard Pickup Trucks 4WD,2010,-1000,,,,,Hybrid,,,288V Ni-MH, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.8,4-Wheel Drive,955,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,29775,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2421,12.2416,24.1534,17.9025,Standard Pickup Trucks 4WD,2010,-6250,,,,,FFV,E85,280/380,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,940,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29776,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1089,13.3987,29.0185,21.9139,Standard Pickup Trucks 4WD,2010,-4250,,,,,FFV,E85,330/450,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,936,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,29777,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9245,11.5503,25.8026,18.6523,Standard Pickup Trucks 4WD,2010,-7750,,,,,FFV,E85,290,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,978,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29778,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7999,0.0,30.2999,0.0,Standard Pickup Trucks 4WD,2010,-1000,,,,,Hybrid,,,288V Ni-MH, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,938,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,29779,0,0,GMC,Sierra K15 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.7,11.4,25.7999,18.5,Standard Pickup Trucks 4WD,2010,-7750,,,,,FFV,E85,290,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4137,(FFS) fuel injection,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,2978,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1987,-3250,,SIL,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,926,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,16,0.0,0.0,0.0,0.0,0,0,29780,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2999,12.5,28.4,21.5,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,310,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,971,,-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29781,0,0,Cadillac,Escalade Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,Hybrid,,,288V Ni-MH, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,928,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,16,0.0,0.0,0.0,0.0,0,0,29782,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2999,12.5,28.4,21.5,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,380,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,916,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29783,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1262,13.3423,28.9935,21.9098,Sport Utility Vehicle - 2WD,2010,-4250,,,,,FFV,E85,410,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,935,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29784,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,11.6,26.0,19.0,Sport Utility Vehicle - 2WD,2010,-7750,,,,,FFV,E85,350,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,915,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29785,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1262,13.3423,28.9935,21.9098,Sport Utility Vehicle - 2WD,2010,-4250,,,,,FFV,E85,410,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,934,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29786,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,11.6,26.0,19.0,Sport Utility Vehicle - 2WD,2010,-7750,,,,,FFV,E85,350,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,912,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29787,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1262,13.3423,28.9935,21.9098,Sport Utility Vehicle - 2WD,2010,-4250,,,,,FFV,E85,330,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,972,,-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29788,0,0,Chevrolet,Tahoe Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,Hybrid,,,288V Ni-MH, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,913,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29789,0,0,GMC,Yukon 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1262,13.3423,28.9935,21.9098,Sport Utility Vehicle - 2WD,2010,-4250,,,,,FFV,E85,330,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,2979,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1987,-4250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,925,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,16,0.0,0.0,0.0,0.0,0,0,29790,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2999,12.5,28.4,21.5,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,310,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,970,,-1,2500,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29791,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,30.5,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,Hybrid,,,288V Ni-MH, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,914,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29792,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1262,13.3423,28.9935,21.9098,Sport Utility Vehicle - 2WD,2010,-4250,,,,,FFV,E85,410,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,927,FFV; Active Fuel Management,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,16,0.0,0.0,0.0,0.0,0,0,29793,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2999,12.5,28.4,21.5,Sport Utility Vehicle - 2WD,2010,-5250,,,,,FFV,E85,380,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,933,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,29794,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9,11.6,26.0,19.0,Sport Utility Vehicle - 2WD,2010,-7750,,,,,FFV,E85,350,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29795,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29796,0,0,Honda,Element 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,21,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29797,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,,,,,,, +21.974,6.242500000000001,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,930,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,29798,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0999,12.3,27.4,20.6995,Sport Utility Vehicle - 4WD,2010,-6250,,,,,FFV,E85,310,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,942,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29799,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0999,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2010,-4250,,,,,FFV,E85,330,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3130,"(FFS,TRBO)",-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,298,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,43.0,0.0,Compact Cars,1985,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,2980,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,975,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29800,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7999,0.0,30.2999,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,Hybrid,,,288V Ni-MH, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,943,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,29801,0,0,GMC,Yukon 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0999,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2010,-4250,,,,,FFV,E85,330,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,976,,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29802,0,0,GMC,Yukon 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.7999,0.0,30.2999,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,Hybrid,,,288V Ni-MH, +21.974,6.242500000000001,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,0.0,12,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,929,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,29803,0,0,GMC,Yukon Denali 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0999,12.3,27.4,20.6995,Sport Utility Vehicle - 4WD,2010,-6250,,,,,FFV,E85,310,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,29,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29804,0,0,Honda,Element 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,28,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29805,0,0,Honda,Element 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,364,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29806,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,27.3,0.0,Subcompact Cars,2010,-6750,G,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,11,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,29807,6,0,MINI,Cooper,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.0,0.0,52.0,0.0,Minicompact Cars,2010,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,23,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29808,6,0,MINI,John Cooper Works,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8497,0.0,46.5047,0.0,Minicompact Cars,2010,1250,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,22,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,80,29809,0,0,MINI,John Cooper Works Clubman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8497,0.0,46.5047,0.0,Subcompact Cars,2010,1250,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS) Lock-up,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,2981,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1987,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24,,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29810,6,0,MINI,John Cooper Works Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8497,0.0,46.5047,0.0,Minicompact Cars,2010,1250,,,T,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,84,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,29811,0,0,smart,fortwo cabriolet,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),44.3,0.0,57.8,0.0,Two Seaters,2010,3500,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,74,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,29812,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),44.3,0.0,57.8,0.0,Two Seaters,2010,3500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,430,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29813,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1565,0.0,39.7103,0.0,Two Seaters,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,431,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29814,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Two Seaters,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29815,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.3727,0.0,33.6296,0.0,Two Seaters,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29816,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.0566,0.0,35.2678,0.0,Two Seaters,2010,-3000,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,599,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29817,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),12.99,0.0,20.99,0.0,Two Seaters,2010,-13250,G,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,600,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29818,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.2,0.0,21.1,0.0,Two Seaters,2010,-13250,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,2982,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1987,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,17.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6781,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,68,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.3,0,0.0,0.0,0.0,0.0,0,0,29820,0,0,Mercedes-Benz,SLK300,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,35.9,0.0,Two Seaters,2010,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,59,PR,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29821,0,0,Nissan,370Z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.5434,0.0,34.5832,0.0,Two Seaters,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,54,PR,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29822,0,0,Nissan,370Z Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,34.9,0.0,Two Seaters,2010,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,130,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29823,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5958,0.0,38.1696,0.0,Subcompact Cars,2010,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,131,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29824,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,128,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29825,10,0,BMW,128i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1565,0.0,39.7103,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,129,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29826,10,0,BMW,128i,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,135,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29827,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,35.5,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,136,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29828,10,0,BMW,135i,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.0566,0.0,35.2678,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,137,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29829,8,0,BMW,135i Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6229,0.0,36.1548,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,2983,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,138,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29830,8,0,BMW,135i Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6278,0.0,35.7081,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,302,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29831,11,0,BMW,328ci,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1565,0.0,39.7103,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29832,11,0,BMW,328ci,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,312,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29833,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5958,0.0,38.1696,0.0,Subcompact Cars,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,313,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29834,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9607,0.0,36.798,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,306,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29835,11,0,BMW,328ci xDrive,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8875,0.0,35.5404,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,307,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29836,11,0,BMW,328ci xDrive,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7054,0.0,35.4606,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,337,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29837,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6229,0.0,36.1548,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,338,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29838,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6278,0.0,35.7081,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,343,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29839,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6229,0.0,36.1548,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2984,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1987,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,344,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29840,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6278,0.0,35.7081,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,341,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29841,0,11,BMW,335ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9535,0.0,34.7288,0.0,Subcompact Cars,2010,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,342,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29842,0,11,BMW,335ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5025,0.0,34.2853,0.0,Subcompact Cars,2010,-3750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,26,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,29843,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.4266,0.0,44.7365,0.0,Subcompact Cars,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29844,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.0,0.0,43.8,0.0,Subcompact Cars,2010,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,47,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29845,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.7,0.0,38.0169,0.0,Subcompact Cars,2010,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,42,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29846,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9222,0.0,37.9628,0.0,Subcompact Cars,2010,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,300,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29847,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1565,0.0,39.7103,0.0,Compact Cars,2010,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,301,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29848,0,12,BMW,328i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7853,0.0,38.7896,0.0,Compact Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,304,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29849,0,12,BMW,328i xDrive,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8875,0.0,35.5404,0.0,Compact Cars,2010,-3000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,2985,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,305,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29850,0,12,BMW,328i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7054,0.0,35.4606,0.0,Compact Cars,2010,-3000,,,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,350,,-1,2200,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,29851,0,12,BMW,335d,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),29.0,0.0,51.1,0.0,Compact Cars,2010,1000,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,335,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29852,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6229,0.0,36.1548,0.0,Compact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,336,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29853,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.6278,0.0,35.7081,0.0,Compact Cars,2010,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,339,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29854,0,12,BMW,335i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9535,0.0,34.7288,0.0,Compact Cars,2010,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,340,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29855,0,12,BMW,335i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5025,0.0,34.2853,0.0,Compact Cars,2010,-3750,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,23,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,29856,0,0,Hyundai,Accent Blue,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.1726,0.0,50.8205,0.0,Compact Cars,2010,3000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,612,PR,-1,5500,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29857,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Auto(AM6),11.45,0.0,21.7,0.0,Midsize Cars,2010,-15500,G,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,613,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29858,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.7,0.0,21.3,0.0,Midsize Cars,2010,-13250,G,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,29859,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.7154,0.0,45.6729,0.0,Midsize Cars,2010,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,2986,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,46,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29860,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.4673,0.0,38.0347,0.0,Midsize Cars,2010,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29861,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8817,0.0,37.9499,0.0,Midsize Cars,2010,-1000,,,,,,,,, +9.690534,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,31,,-1,1600,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,29862,0,10,Nissan,Altima Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.8,0.0,46.6,0.0,Midsize Cars,2010,4000,,,,,Hybrid,,,245V Ni-MH, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,29863,0,14,Nissan,Versa,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,46.5,0.0,Midsize Cars,2010,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,29864,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.1,0.0,47.3,0.0,Midsize Cars,2010,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,95,29865,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,44.9,0.0,Midsize Cars,2010,1750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,29866,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.8,0.0,47.5,0.0,Midsize Cars,2010,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,1,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,95,29867,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,44.2,0.0,Midsize Cars,2010,2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,760,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29869,0,14,BMW,760Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),15.6203,0.0,26.7495,0.0,Large Cars,2010,-8000,G,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,2987,0,0,Chevrolet,Chevette CS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.8718,0.0,Subcompact Cars,1987,1750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,46,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29870,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4,0.0,21.4,0.0,Large Cars,2010,-13250,G,,T,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,8,PR,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29871,0,15,Maybach,57S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.3,0.0,21.4,0.0,Large Cars,2010,-13250,G,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,308,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29872,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5958,0.0,38.1696,0.0,Small Station Wagons,2010,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,309,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29873,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9607,0.0,36.798,0.0,Small Station Wagons,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,310,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29874,0,25,BMW,328i Sport Wagon xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8875,0.0,35.5404,0.0,Small Station Wagons,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,311,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29875,0,25,BMW,328i Sport Wagon xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7054,0.0,35.4606,0.0,Small Station Wagons,2010,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,45,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29876,0,19,Infiniti,EX35,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6,0.0,33.3,0.0,Small Station Wagons,2010,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,48,AWD (All Wheel Drive),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29877,0,19,Infiniti,EX35 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2084,0.0,32.349,0.0,Small Station Wagons,2010,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29878,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,36.7,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,92,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29879,0,0,Infiniti,FX35 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.1726,0.0,31.4961,0.0,Sport Utility Vehicle - 2WD,2010,-3750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,2988,0,11,Chevrolet,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1987,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29880,0,0,Nissan,Murano FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.5957,0.0,32.4076,0.0,Sport Utility Vehicle - 2WD,2010,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,674,,-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29881,0,0,BMW,ActiveHybrid X6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.8141,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,T,,Hybrid,,,312V Ni-MH, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,370,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29882,0,0,BMW,X3 xDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,33.0,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,371,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29883,0,0,BMW,X3 xDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9,0.0,33.6,0.0,Sport Utility Vehicle - 4WD,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,570,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29884,0,0,BMW,X5 xDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2,0.0,29.6,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,,,,,,, +17.351199,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,572,,-1,2700,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29885,0,0,BMW,X5 xDrive35d,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9782,0.0,36.559,0.0,Sport Utility Vehicle - 4WD,2010,-1500,,,T,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,573,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29886,0,0,BMW,X5 xDrive48i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.7489,0.0,26.7946,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,671,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29887,0,0,BMW,X6 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2010,-5750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,672,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29888,0,0,BMW,X6 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8,0.0,24.9,0.0,Sport Utility Vehicle - 4WD,2010,-8000,,,T,,,,,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,197,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,29889,0,0,Ford,Expedition 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.1485,11.2991,23.8983,17.5977,Sport Utility Vehicle - 4WD,2010,-7750,,,,,FFV,E85,310,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,2989,0,11,Chevrolet,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1987,3750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,94,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29890,0,0,Infiniti,FX35 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),19.5985,0.0,29.7734,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,391,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29891,0,0,Infiniti,FX50,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.7553,0.0,27.2511,0.0,Sport Utility Vehicle - 4WD,2010,-6750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,73,PR,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29892,0,0,Mercedes-Benz,G550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.0,0.0,20.1,0.0,Sport Utility Vehicle - 4WD,2010,-11250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,93,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29893,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.2551,0.0,31.7082,0.0,Sport Utility Vehicle - 4WD,2010,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,560,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29894,0,0,Chrysler,PT Cruiser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.7,0.0,34.1,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,123,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29895,0,0,Dodge,Viper Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2010,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,124,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29896,0,0,Dodge,Viper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.6,0.0,30.0,0.0,Two Seaters,2010,-6750,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,53,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29897,0,0,Nissan,370Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,35.9802,0.0,Two Seaters,2010,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,58,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29898,0,0,Nissan,370Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6264,0.0,36.9,0.0,Two Seaters,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,43,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29899,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3242,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,85,299,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,40.0,0.0,Compact Cars,1985,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29011,"(FFS,TRBO)",-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,2990,0,11,Chevrolet,Spectrum Turbo,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1987,1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,44,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29900,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,45,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29901,5,0,Porsche,911 Turbo S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,46,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29902,5,0,Porsche,911 Turbo S Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,47,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29903,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5187,0.0,33.2357,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,48,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29904,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0177,0.0,33.1649,0.0,Minicompact Cars,2010,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,7,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29905,0,14,Aston Martin,Rapide,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6348,0.0,26.6208,0.0,Subcompact Cars,2010,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,25,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29906,5,0,Maserati,GranTurismo Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9031,0.0,26.5604,0.0,Subcompact Cars,2010,-8000,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,52,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29907,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,32.9748,0.0,Subcompact Cars,2010,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,57,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29908,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.7211,0.0,35.2288,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,72,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29909,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6879,0.0,34.7305,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54011,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,2991,0,8,Chevrolet,Sprint,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1987,4000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,73,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29910,7,0,Infiniti,G37 Coupe,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6465,0.0,37.065,0.0,Subcompact Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,74,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29911,7,0,Infiniti,G37x Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1981,0.0,35.162,0.0,Subcompact Cars,2010,-3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,61,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29912,0,13,Suzuki,Kizashi S,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.8696,0.0,44.0818,0.0,Compact Cars,2010,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,62,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29913,0,13,Suzuki,Kizashi,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2794,0.0,42.3947,0.0,Compact Cars,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,63,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29914,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7092,0.0,43.0035,0.0,Compact Cars,2010,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,64,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29915,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8524,0.0,41.3959,0.0,Compact Cars,2010,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,65,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29916,0,13,Suzuki,Kizashi S AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7062,0.0,41.5858,0.0,Compact Cars,2010,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,66,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29917,0,13,Suzuki,Kizashi AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.0744,0.0,40.8321,0.0,Compact Cars,2010,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,248,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29918,0,16,Cadillac,CTS,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,36.0,0.0,Midsize Cars,2010,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,250,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29919,0,16,Buick,Lacrosse/Allure,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),23.885,0.0,41.696,0.0,Midsize Cars,2010,0,,,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54011,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,8,74,2992,0,8,Chevrolet,Sprint,Y,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.6176,0.0,62.3369,0.0,Subcompact Cars,1987,5000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,51,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29920,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6879,0.0,34.7305,0.0,Midsize Cars,2010,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29921,0,14,Infiniti,G37,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6465,0.0,37.065,0.0,Midsize Cars,2010,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,56,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29922,0,14,Infiniti,G37x,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1981,0.0,35.162,0.0,Midsize Cars,2010,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,79,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29923,0,10,Lexus,LS 600h L,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto (AV-S8),24.7,0.0,30.3,0.0,Midsize Cars,2010,-2250,,,,,Hybrid,,,288V Ni-MH, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,541,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29924,0,10,BMW,535i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),24.2984,0.0,39.4937,0.0,Large Cars,2010,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,7,SIDI; Short Wheelbase,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29925,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9048,0.0,32.6701,0.0,Large Cars,2010,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,8,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,29926,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5111,0.0,29.7559,0.0,Large Cars,2010,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,9,SIDI; Long Wheelbase,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29927,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9575,0.0,31.0736,0.0,Large Cars,2010,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,9,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,29928,0,15,Maybach,57 Zeppelin,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6,0.0,21.7,0.0,Large Cars,2010,-13250,G,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,40,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29929,0,25,Porsche,Panamera S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2603,0.0,Large Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,2993,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1987,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,41,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29930,0,25,Porsche,Panamera 4S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2603,0.0,Large Cars,2010,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,42,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29931,0,25,Porsche,Panamera Turbo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5447,0.0,32.0263,0.0,Large Cars,2010,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,5,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29932,0,14,Rolls-Royce,Ghost,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S8),15.7,0.0,27.3,0.0,Large Cars,2010,-8000,G,,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29933,0,11,Nissan,Cube,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.6,0.0,41.799,0.0,Small Station Wagons,2010,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29934,0,11,Nissan,Cube,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.8246,0.0,43.2609,0.0,Small Station Wagons,2010,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,40,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29935,0,0,Honda,Accord Crosstour 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,38.3,0.0,Sport Utility Vehicle - 2WD,2010,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29936,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.6,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,28,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29937,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8,0.0,36.4,0.0,Sport Utility Vehicle - 2WD,2010,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,29,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,29938,0,0,Hyundai,Tucson 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.0,0.0,43.2286,0.0,Sport Utility Vehicle - 2WD,2010,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,31,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,29939,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3,0.0,41.6,0.0,Sport Utility Vehicle - 2WD,2010,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,2994,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1987,-4750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,80,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,29940,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4,0.0,40.6,0.0,Sport Utility Vehicle - 2WD,2010,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,82,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29941,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.6,0.0,Sport Utility Vehicle - 2WD,2010,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,84,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29942,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2010,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,247,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29943,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2435,0.0,30.2993,0.0,Sport Utility Vehicle - 4WD,2010,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,41,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29944,0,0,Honda,Accord Crosstour 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2,0.0,34.6,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,42,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,29945,0,0,Acura,ZDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2010,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,24,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29946,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0,0.0,37.6,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,27,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29947,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,36.0,0.0,Sport Utility Vehicle - 4WD,2010,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,30,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29948,0,0,Hyundai,Tucson 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.6,0.0,39.2041,0.0,Sport Utility Vehicle - 4WD,2010,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,32,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29949,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.8,0.0,38.6,0.0,Sport Utility Vehicle - 4WD,2010,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,2995,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1987,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,404,,-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29950,0,0,Mercedes-Benz,ML450 Hybrid 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2010,-1750,,,,,Hybrid,,,288V Ni-MH, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,439,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,29951,0,0,Mercedes-Benz,G55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,20.7,0.0,Sport Utility Vehicle - 4WD,2010,-13250,,,,S,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,81,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,29952,0,0,Toyota,Venza AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2010,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,83,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,29953,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,35.0,0.0,Sport Utility Vehicle - 4WD,2010,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,85,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,29954,0,0,Lexus,GX 460,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2010,-5750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4881,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8121,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,431,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.955,0,0.0,0.0,0.0,0.0,0,0,29955,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2246,0.0,39.1501,0.0,Two Seaters,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4659,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9012,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,430,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.3464,0,0.0,0.0,0.0,0.0,0,0,29956,0,0,BMW,Z4 sDrive30i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1949,0.0,39.7206,0.0,Two Seaters,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,29957,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Two Seaters,2011,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8008,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3058,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.608,0,0.0,0.0,0.0,0.0,0,0,29958,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9822,0.0,32.8579,0.0,Two Seaters,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8008,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3058,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,438,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.608,0,0.0,0.0,0.0,0.0,0,0,29959,0,0,BMW,Z4 sDrive35is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9822,0.0,32.8579,0.0,Two Seaters,2011,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,2996,0,0,Chrysler,Laser/Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1987,-2250,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,13.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.69,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,222,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,22.1,0,0.0,0.0,0.0,0.0,0,0,29960,0,0,Mercedes-Benz,SL550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.8,0.0,28.6,0.0,Two Seaters,2011,-5750,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,226,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,29961,0,0,Mercedes-Benz,SL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.6,0.0,26.0,0.0,Two Seaters,2011,-9500,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,228,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,29962,0,0,Mercedes-Benz,SL65 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.2,0.0,25.0,0.0,Two Seaters,2011,-9500,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,13.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.0197,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,270,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.2,0,0.0,0.0,0.0,0.0,0,0,29963,0,0,Mercedes-Benz,SLS AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.7,0.0,26.8,0.0,Two Seaters,2011,-6750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,2997,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1987,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29976,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7312,0.0,32.921,0.0,Minicompact Cars,2011,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4092,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.8952,0,0.0,0.0,0.0,0.0,0,0,29977,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4744,0.0,30.37,0.0,Minicompact Cars,2011,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,29978,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4283,0.0,30.8503,0.0,Minicompact Cars,2011,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,322,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,29979,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.5299,0.0,38.2598,0.0,Minicompact Cars,2011,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,2998,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1987,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,324,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,29980,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.2,0.0,33.3,0.0,Minicompact Cars,2011,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,2999,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4185,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Two Seaters,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4146,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30,0,0,Pontiac,Fiero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.3333,0.0,Two Seaters,1985,-2500,,SIL,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3241,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,300,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,55.1282,0.0,Compact Cars,1985,3500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2424,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3000,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Subcompact Cars,1987,0,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4881,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8121,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,131,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.955,0,0.0,0.0,0.0,0.0,0,0,30007,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2246,0.0,39.1501,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7114,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8919,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,130,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7662,0,0.0,0.0,0.0,0.0,0,0,30008,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1891,0.0,37.4223,0.0,Subcompact Cars,2011,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4881,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8121,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,129,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.955,0,0.0,0.0,0.0,0.0,0,0,30009,10,0,BMW,128i,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2246,0.0,39.1501,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3001,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4659,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9012,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,128,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.3464,0,0.0,0.0,0.0,0.0,0,0,30010,10,0,BMW,128i,Y,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1949,0.0,39.7206,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,136,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30011,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,39.7,0.0,Subcompact Cars,2011,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.8369,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5309,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,135,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.179,0,0.0,0.0,0.0,0.0,0,0,30012,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.356,0.0,35.1229,0.0,Subcompact Cars,2011,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,19.1293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,138,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0257,0,0.0,0.0,0.0,0.0,0,0,30013,8,0,BMW,135i Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0837,0.0,39.2532,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,17.7045,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4595,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,137,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2645,0,0.0,0.0,0.0,0.0,0,0,30014,8,0,BMW,135i Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1799,0.0,35.2465,0.0,Subcompact Cars,2011,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,18.4881,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8121,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.955,0,0.0,0.0,0.0,0.0,0,0,30015,11,0,BMW,328ci,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2246,0.0,39.1501,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4659,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9012,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,302,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.3464,0,0.0,0.0,0.0,0.0,0,0,30016,11,0,BMW,328ci,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1949,0.0,39.7206,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.8107,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1014,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,313,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.4231,0,0.0,0.0,0.0,0.0,0,0,30017,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9953,0.0,37.1828,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7114,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8919,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,312,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7662,0,0.0,0.0,0.0,0.0,0,0,30018,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1891,0.0,37.4223,0.0,Subcompact Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,307,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30019,11,0,BMW,328ci xDrive,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6312,0.0,35.4354,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38004,"(FFS,DOHC)",-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3002,7,0,Nissan,Pulsar NX,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,306,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30020,11,0,BMW,328ci xDrive,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8909,0.0,35.891,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.1293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,338,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0257,0,0.0,0.0,0.0,0.0,0,0,30021,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0837,0.0,39.2532,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,337,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30022,0,11,BMW,335ci,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9253,0.0,39.12,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,19.1293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,348,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0257,0,0.0,0.0,0.0,0.0,0,0,30023,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0837,0.0,39.2532,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,347,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30024,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9253,0.0,39.12,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,18.7311,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5234,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,342,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.3187,0,0.0,0.0,0.0,0.0,0,0,30025,0,11,BMW,335ci xDrive,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.5497,0.0,36.7725,0.0,Subcompact Cars,2011,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,18.3354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3079,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,341,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.573,0,0.0,0.0,0.0,0.0,0,0,30026,0,11,BMW,335ci xDrive,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0206,0.0,37.1412,0.0,Subcompact Cars,2011,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.6851,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6899,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,344,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1127,0,0.0,0.0,0.0,0.0,0,0,30027,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1541,0.0,36.4739,0.0,Subcompact Cars,2011,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8008,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3058,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,343,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.608,0,0.0,0.0,0.0,0.0,0,0,30028,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9822,0.0,32.8579,0.0,Subcompact Cars,2011,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.6851,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6899,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,346,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1127,0,0.0,0.0,0.0,0.0,0,0,30029,0,11,BMW,335is Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1541,0.0,36.4739,0.0,Subcompact Cars,2011,-2250,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38003,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3003,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8008,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3058,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,345,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.608,0,0.0,0.0,0.0,0.0,0,0,30030,0,11,BMW,335is Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9822,0.0,32.8579,0.0,Subcompact Cars,2011,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,364,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30031,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,27.3,0.0,Subcompact Cars,2011,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,365,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30032,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2011,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,362,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30033,11,0,BMW,M3 Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2011,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,13.7438,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.051,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,363,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.1945,0,0.0,0.0,0.0,0.0,0,0,30034,11,0,BMW,M3 Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.9853,0.0,27.9711,0.0,Subcompact Cars,2011,-6750,G,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,40,,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,15,85,30035,0,12,Ford,Fiesta,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,52.6,0.0,Subcompact Cars,2011,3500,,,,,,,,, +9.976196,0.0,0.0,0.0,29,38.0502,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,43.957,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,39,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,54.2501,0,0.0,0.0,0.0,0.0,15,85,30036,0,12,Ford,Fiesta,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.0502,0.0,54.2501,0.0,Subcompact Cars,2011,3750,,,,,,,,, +9.976196,0.0,0.0,0.0,29,38.4571,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,44.8884,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,162,,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,56.4204,0,0.0,0.0,0.0,0.0,15,85,30037,0,12,Ford,Fiesta SFE,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.4571,0.0,56.4204,0.0,Subcompact Cars,2011,3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,18.1259,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,22.4618,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,23,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,31.7423,0,0.0,0.0,0.0,0.0,0,0,30038,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1259,0.0,31.7423,0.0,Subcompact Cars,2011,-5750,,,,S,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,17,,-1,2400,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30039,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.3799,0.0,42.9916,0.0,Subcompact Cars,2011,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,72,3004,0,0,Nissan,Sentra Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,18,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30040,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4879,0.0,40.2557,0.0,Subcompact Cars,2011,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,21.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,26.3073,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,21,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,36.2,0,0.0,0.0,0.0,0.0,0,0,30041,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,36.2,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30042,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.1651,0.0,35.5706,0.0,Subcompact Cars,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,160,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30043,9,0,Ford,Mustang Convertible,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.1704,0.0,41.4056,0.0,Subcompact Cars,2011,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30044,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.2,0.0,34.9,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,142,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30045,6,0,Mercedes-Benz,E550 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.3,0.0,30.6,0.0,Subcompact Cars,2011,-5750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,311,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30046,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1519,0.0,38.6278,0.0,Subcompact Cars,2011,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,312,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30047,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S4),25.8721,0.0,39.0377,0.0,Subcompact Cars,2011,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,314,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30048,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,35.4,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,71,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30049,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),18.8787,0.0,29.1182,0.0,Subcompact Cars,2011,-5750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,72,3005,0,0,Nissan,Sentra Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.8718,0.0,Subcompact Cars,1987,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0409,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,68,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.3,0,0.0,0.0,0.0,0.0,0,0,30050,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.2,0.0,38.6,0.0,Subcompact Cars,2011,0,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,19.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.5233,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,69,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.3,0,0.0,0.0,0.0,0.0,0,0,30051,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.4,0.0,39.0,0.0,Subcompact Cars,2011,0,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,18.4881,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8121,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,301,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.955,0,0.0,0.0,0.0,0.0,0,0,30052,0,12,BMW,328i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.2246,0.0,39.1501,0.0,Compact Cars,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.4659,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9012,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,300,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.3464,0,0.0,0.0,0.0,0.0,0,0,30053,0,12,BMW,328i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1949,0.0,39.7206,0.0,Compact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,305,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30054,0,12,BMW,328i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6312,0.0,35.4354,0.0,Compact Cars,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,304,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30055,0,12,BMW,328i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8909,0.0,35.891,0.0,Compact Cars,2011,-3000,,,,,,,,, +14.140845,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,350,,-1,2200,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30056,0,12,BMW,335d,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),29.0,0.0,51.1,0.0,Compact Cars,2011,1000,,,T,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,19.1293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,336,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0257,0,0.0,0.0,0.0,0.0,0,0,30057,0,12,BMW,335i,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0837,0.0,39.2532,0.0,Compact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,335,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30058,0,12,BMW,335i,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9253,0.0,39.12,0.0,Compact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,340,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30059,0,12,BMW,335i xDrive,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.5497,0.0,36.7725,0.0,Compact Cars,2011,-1750,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3006,11,0,Nissan,Sentra Honeybee,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.3354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3079,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,339,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.573,0,0.0,0.0,0.0,0.0,0,0,30060,0,12,BMW,335i xDrive,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0206,0.0,37.1412,0.0,Compact Cars,2011,-2250,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,360,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30061,0,12,BMW,M3 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Compact Cars,2011,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,361,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30062,0,12,BMW,M3 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S7),16.9853,0.0,27.9711,0.0,Compact Cars,2011,-6750,G,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,12,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,30063,0,12,Kia,Rio,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.7079,0.0,50.4459,0.0,Compact Cars,2011,2750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,13,,-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,92,30064,0,12,Kia,Rio,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6799,0.0,48.3188,0.0,Compact Cars,2011,3000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.3,Rear-Wheel Drive,75,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30065,0,13,Mercedes-Benz,CLS63 AMG,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.7485,0.0,24.7984,0.0,Compact Cars,2011,-9500,G,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,5,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30066,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7154,0.0,37.5899,0.0,Compact Cars,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,7,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30067,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.1376,0.0,36.6557,0.0,Compact Cars,2011,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,73,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.3,0,0.0,0.0,0.0,0.0,15,89,30068,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Compact Cars,2011,500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2911,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,70,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.3,0,0.0,0.0,0.0,0.0,15,89,30069,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.8,0.0,41.8,0.0,Compact Cars,2011,500,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38006,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,3007,11,0,Nissan,Sentra Honeybee,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,51.0,0.0,Subcompact Cars,1987,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,21.4538,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.1173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,528,,-1,2400,0,Premium,Premium Gasoline,-1,-1,32,31.742,0,0.0,0.0,0.0,0.0,0,0,30070,0,14,BMW,528i,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),27.2301,0.0,44.696,0.0,Midsize Cars,2011,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.1293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3173,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,536,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0257,0,0.0,0.0,0.0,0.0,0,0,30071,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0837,0.0,39.2532,0.0,Midsize Cars,2011,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,551,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30072,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1499,0.0,31.2403,0.0,Midsize Cars,2011,-5750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,16.6962,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7235,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,550,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.3389,0,0.0,0.0,0.0,0.0,0,0,30073,0,14,BMW,550i,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.844,0.0,35.1983,0.0,Midsize Cars,2011,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,758,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30074,0,13,BMW,ActiveHybrid 7i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),21.4,0.0,33.6032,0.0,Midsize Cars,2011,-3000,,,T,,Hybrid,,,126V Li-Ion, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,153,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30075,0,13,Buick,Regal,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,42.5,0.0,Midsize Cars,2011,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,151,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30076,0,15,Infiniti,M37,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),22.9766,0.0,36.7528,0.0,Midsize Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,152,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30077,0,15,Infiniti,M37x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),21.9,0.0,33.4,0.0,Midsize Cars,2011,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,111,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30078,0,15,Infiniti,M56,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),20.2,0.0,34.5,0.0,Midsize Cars,2011,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.6,All-Wheel Drive,112,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30079,0,15,Infiniti,M56x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.5,0.0,32.4,0.0,Midsize Cars,2011,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38031,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,76,3008,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,5,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30080,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9163,0.0,32.6906,0.0,Midsize Cars,2011,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30081,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Midsize Cars,2011,-5750,,,,S,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,2,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30082,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.6682,0.0,42.9726,0.0,Midsize Cars,2011,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,1,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30083,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4435,0.0,37.137,0.0,Midsize Cars,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,3,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30084,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.6,0.0,Midsize Cars,2011,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,4,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30085,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9609,0.0,34.2596,0.0,Midsize Cars,2011,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30086,0,15,Toyota,Camry,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0,0.0,46.8,0.0,Midsize Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30087,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8552,0.0,45.0076,0.0,Midsize Cars,2011,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,5,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30088,0,15,Toyota,Camry,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,0.0,40.6,0.0,Midsize Cars,2011,0,,,,,,,,, +9.976196,0.0,0.0,0.0,31,30.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.5411,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,7,,-1,1650,0,Regular,Regular Gasoline,-1,-1,35,34.8,0,0.0,0.0,0.0,0.0,0,0,30089,0,11,Toyota,Camry Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.2454,0.0,48.2,0.0,Midsize Cars,2011,3750,,,,,Hybrid,,,245V Ni-MH, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38031,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,3009,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1987,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,740,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30090,0,14,BMW,740i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1728,0.0,35.4966,0.0,Large Cars,2011,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,741,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30091,0,14,BMW,740Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1728,0.0,35.4966,0.0,Large Cars,2011,-3000,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30092,0,14,BMW,750i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,30.2387,0.0,Large Cars,2011,-5750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,752,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30093,0,14,BMW,750i xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9879,0.0,27.7307,0.0,Large Cars,2011,-6750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,753,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30094,0,14,BMW,750Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9879,0.0,27.7307,0.0,Large Cars,2011,-6750,G,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,759,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30095,0,13,BMW,ActiveHybrid 7Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),21.4,0.0,33.6032,0.0,Large Cars,2011,-3000,,,T,,Hybrid,,,126V Li-Ion, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,757,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30096,0,14,BMW,Alpina B7 LWB xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9879,0.0,27.7307,0.0,Large Cars,2011,-6750,G,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,756,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30097,0,14,BMW,Alpina B7 SWB xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9879,0.0,27.7307,0.0,Large Cars,2011,-6750,G,,T,,,,,, +16.4805,0.0,0.0,0.0,17,21.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,25.9515,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,126,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,35.4,0,0.0,0.0,0.0,0.0,0,0,30098,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.3,0.0,35.4,0.0,Large Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.645,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,119,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.537,0,0.0,0.0,0.0,0.0,0,0,30099,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1,0.0,34.4,0.0,Large Cars,2011,-1750,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3240,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,301,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,3010,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1987,-2500,,2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,18.1846,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5357,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,128,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.7965,0,0.0,0.0,0.0,0.0,0,0,30100,0,20,Ford,Taurus FWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.6,0.0,38.6,0.0,Large Cars,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,22.4,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,27.331,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,127,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,37.4,0,0.0,0.0,0.0,0.0,0,0,30101,0,20,Ford,Taurus FWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Large Cars,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,3,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30102,0,17,Hyundai,Azera,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.6,0.0,38.9,0.0,Large Cars,2011,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30103,0,17,Hyundai,Azera,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.3,0.0,38.1,0.0,Large Cars,2011,-500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30104,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.9,0.0,Large Cars,2011,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,1,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30105,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.756,0.0,48.883,0.0,Large Cars,2011,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,15.2927,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8353,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,9,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.3839,0,0.0,0.0,0.0,0.0,0,0,30106,0,18,Jaguar,XJ LWB,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9574,0.0,31.0733,0.0,Large Cars,2011,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2884,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,8,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,30107,0,18,Jaguar,XJ LWB,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Large Cars,2011,-5750,,,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6475,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,7,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,23.4287,0,0.0,0.0,0.0,0.0,0,0,30108,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),19.887,0.0,32.6266,0.0,Large Cars,2011,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.645,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,118,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.537,0,0.0,0.0,0.0,0.0,0,0,30109,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1,0.0,34.4,0.0,Large Cars,2011,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,3011,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,20.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,24.1135,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,124,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,31.3,0,0.0,0.0,0.0,0.0,0,0,30110,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3,0.0,31.3,0.0,Large Cars,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,25.0726,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,125,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,33.1652,0,0.0,0.0,0.0,0.0,0,0,30111,0,18,Lincoln,MKS FWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,33.1652,0.0,Large Cars,2011,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,6,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30112,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,0.0,40.6,0.0,Large Cars,2011,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.8107,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1014,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,309,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.4231,0,0.0,0.0,0.0,0.0,0,0,30113,0,25,BMW,328i Sports Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.9953,0.0,37.1828,0.0,Small Station Wagons,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7114,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8919,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,308,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7662,0,0.0,0.0,0.0,0.0,0,0,30114,0,25,BMW,328i Sports Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1891,0.0,37.4223,0.0,Small Station Wagons,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,311,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30115,0,25,BMW,328i xDrive Sports Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6312,0.0,35.4354,0.0,Small Station Wagons,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,310,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30116,0,25,BMW,328i xDrive Sports Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8909,0.0,35.891,0.0,Small Station Wagons,2011,-3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30117,0,28,Hyundai,Elantra Touring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9,0.0,42.6,0.0,Small Station Wagons,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,6,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30118,0,28,Hyundai,Elantra Touring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,43.3,0.0,Small Station Wagons,2011,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30119,0,22,Scion,xB,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2011,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,72,3012,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30120,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2011,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,6,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30121,0,19,Subaru,Impreza Wagon/Outback Sport AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.7154,0.0,37.5899,0.0,Small Station Wagons,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,8,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30122,0,19,Subaru,Impreza Wagon/Outback Sport AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S4),25.1376,0.0,36.6557,0.0,Small Station Wagons,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,302,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30123,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1485,0.0,34.1536,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,316,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30124,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1147,0.0,35.3266,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,356,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30125,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1065,0.0,31.857,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,395,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30126,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2011,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,358,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30127,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.7,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,303,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30128,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,317,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30129,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,72,3013,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,357,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30130,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,396,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30131,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2011,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,304,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30132,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1377,0.0,34.186,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,318,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30133,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.1589,0.0,35.2609,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,359,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30134,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.087,0.0,31.8408,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,397,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30135,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2011,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,360,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30136,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.7,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,305,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30137,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,319,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30138,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,361,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30139,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,77,3014,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,398,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30140,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2011,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,452,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30141,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,473,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30142,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.1,0.0,Small Pickup Trucks 4WD,2011,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,475,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30143,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8159,0.0,31.3436,0.0,Small Pickup Trucks 4WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,483,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30144,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,26.6,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,477,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30145,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,29.8,0.0,Small Pickup Trucks 4WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,476,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30146,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,29.8,0.0,Small Pickup Trucks 4WD,2011,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,484,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30147,0,0,Chevrolet,Colorado Crew Cab 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,26.6,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,453,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30148,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,474,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30149,0,0,GMC,Canyon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.1,0.0,Small Pickup Trucks 4WD,2011,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,19,77,3015,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1987,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,478,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30150,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8278,0.0,31.3586,0.0,Small Pickup Trucks 4WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,485,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30151,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,26.6,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,480,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30152,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,29.8,0.0,Small Pickup Trucks 4WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,479,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30153,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.6,0.0,29.8,0.0,Small Pickup Trucks 4WD,2011,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,486,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30154,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1,0.0,26.6,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,363,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30155,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6434,0.0,27.6727,0.0,Standard Pickup Trucks 2WD,2011,-4250,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,339,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30156,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1606,13.4,29.1209,21.9907,Standard Pickup Trucks 2WD,2011,-4250,,,,,FFV,E85,330/450,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,382,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,30157,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0024,12.8163,26.1187,19.3315,Standard Pickup Trucks 2WD,2011,-5250,,,,,FFV,E85,310/420,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,349,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,30158,0,0,Chevrolet,Silverado C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2011,-3250,,,,,FFV,E85,340,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,365,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30159,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6477,0.0,27.6778,0.0,Standard Pickup Trucks 2WD,2011,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,3016,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Subcompact Cars,1987,-3000,,,T,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,344,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30160,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1701,13.4,29.1399,22.0049,Standard Pickup Trucks 2WD,2011,-4250,,,,,FFV,E85,330/450,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,383,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,30161,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9467,12.7765,26.0787,19.3075,Standard Pickup Trucks 2WD,2011,-5250,,,,,FFV,E85,310/420,, +18.304342000000002,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,352,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,30162,0,0,GMC,Sierra C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2011,-3250,,,,,FFV,E85,340,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,487,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30163,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3983,0.0,24.197,0.0,Standard Pickup Trucks 4WD,2011,-6250,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,466,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30164,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1652,13.441,28.9915,21.8915,Standard Pickup Trucks 4WD,2011,-4250,,,,,FFV,E85,330/450,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.8,4-Wheel Drive,495,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30165,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2566,12.2279,24.1749,17.8985,Standard Pickup Trucks 4WD,2011,-6250,,,,,FFV,E85,280/380,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,488,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30166,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3983,0.0,24.197,0.0,Standard Pickup Trucks 4WD,2011,-6250,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,469,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30167,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.245,13.4911,28.9812,21.8812,Standard Pickup Trucks 4WD,2011,-4250,,,,,FFV,E85,330/450,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.8,4-Wheel Drive,496,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30168,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.276,12.2263,24.2016,17.9032,Standard Pickup Trucks 4WD,2011,-6250,,,,,FFV,E85,280/380,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,362,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30169,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2011,-4250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,11,81,3017,0,11,Dodge,Colt,Y,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,42.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,364,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30170,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2011,-4250,,,,,,,,, +25.336022,7.4910000000000005,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,600,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30171,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,310,, +25.336022,7.4910000000000005,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,601,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30172,0,0,GMC,Savana 1500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,310,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,7,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30173,0,0,Hyundai,Entourage,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7,0.0,34.4,0.0,Minivan - 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,6,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30174,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7,0.0,34.4,0.0,Minivan - 2WD,2011,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,8,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30175,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6938,0.0,34.0,0.0,Minivan - 2WD,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9311,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,10,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,23.9,0,0.0,0.0,0.0,0.0,0,0,30176,0,0,Toyota,Sienna 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,37.0,0.0,Minivan - 2WD,2011,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,9,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30177,0,0,Toyota,Sienna AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7499,0.0,30.0493,0.0,Minivan - 4WD,2011,-3250,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,337,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30178,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2011,-4250,,,,,FFV,E85,410,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,338,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30179,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2011,-4250,,,,,FFV,E85,410,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3018,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,48.7179,0.0,Subcompact Cars,1987,3000,,SIL,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,336,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30180,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2011,-4250,,,,,FFV,E85,330,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,117,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30181,0,0,Ford,Flex FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,33.1,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,341,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30182,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2011,-4250,,,,,FFV,E85,330,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,342,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30183,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2011,-4250,,,,,FFV,E85,410,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,43,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30184,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.5891,0.0,31.925,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,33,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30185,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2011,-5250,,,,,,,,, +18.304342000000002,5.348574,0.0,0.0,16,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,493.72222222222223,18,0.0,14,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,31,FFV,-1,3050,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,30186,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,15.6,31.3,23.6,Sport Utility Vehicle - 2WD,2011,-3250,,,,,FFV,E85,350,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,9,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30187,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,29.5,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,11,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30188,0,0,Kia,Borrego 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,30.0,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30189,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.9,0.0,40.3,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3019,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1987,2750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30190,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,5,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30191,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.3,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,123,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30192,0,0,Lincoln,MKT FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.3,0.0,31.8,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,674,63 and 67 motor/generators,-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30193,0,0,BMW,ActiveHybrid X6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.7106,0.0,26.8567,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,T,,Hybrid,,,312V Ni-MH, +17.351199,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,572,,-1,2700,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30194,0,0,BMW,X5 xDrive35d,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8298,0.0,36.5179,0.0,Sport Utility Vehicle - 4WD,2011,-1500,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,570,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30195,0,0,BMW,X5 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.8504,0.0,32.286,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,573,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30196,0,0,BMW,X5 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.2585,0.0,28.1647,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,574,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30197,0,0,BMW,X5 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.0374,0.0,23.0639,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,671,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30198,0,0,BMW,X6 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.8504,0.0,32.286,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,672,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30199,0,0,BMW,X6 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.2585,0.0,28.1647,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,T,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,302,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1985,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,3020,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,673,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30200,0,0,BMW,X6 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.0374,0.0,23.0639,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,T,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,464,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30201,0,0,Chevrolet,Avalanche 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2011,-4250,,,,,FFV,E85,410,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,500,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30202,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2011,-4250,,,,,FFV,E85,410,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,465,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30203,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2011,-4250,,,,,FFV,E85,330,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,116,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30204,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1476,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,120,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.1924,0,0.0,0.0,0.0,0.0,0,0,30205,0,0,Ford,Flex AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,30.2,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,T,,,,,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,468,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30206,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2011,-4250,,,,,FFV,E85,330,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,467,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,16,0.0,0.0,0.0,0.0,0,0,30207,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,29.0,21.9,Sport Utility Vehicle - 4WD,2011,-4250,,,,,FFV,E85,410,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,44,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30208,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.0,0.0,30.5,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,34,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30209,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6,0.0,26.0,0.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,3021,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,0,,,T,,,,,, +18.304342000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,493.72222222222223,18,0.0,14,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,32,FFV,-1,3050,3250,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,30210,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.0,31.2,22.7,Sport Utility Vehicle - 4WD,2011,-3250,,,,,FFV,E85,350,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,8,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30211,0,0,Kia,Borrego 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,29.2986,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,10,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30212,0,0,Kia,Borrego 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.4,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,1,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30213,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.4,0.0,37.4,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,4,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30214,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.6,0.0,34.9,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1476,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,121,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.1924,0,0.0,0.0,0.0,0.0,0,0,30215,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,30.2,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,122,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30216,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9438,0.0,29.9039,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,15,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30217,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.3072,0.0,40.1077,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,13,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30218,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4435,0.0,37.137,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,18,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30219,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9609,0.0,34.2596,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,3022,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1987,-3750,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,22.3874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6055,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,26,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,31.0629,0,0.0,0.0,0.0,0.0,0,0,30220,0,0,Audi,TT Roadster quattro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3653,0.0,42.1795,0.0,Two Seaters,2011,500,,,T,,,,,, +21.974,0.0,0.0,0.0,13,12.8484,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.1208,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,27,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2908,0,0.0,0.0,0.0,0.0,0,0,30221,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.331,0.0,24.3325,0.0,Two Seaters,2011,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,12.8484,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.1208,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,28,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2908,0,0.0,0.0,0.0,0.0,0,0,30222,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.331,0.0,24.3325,0.0,Two Seaters,2011,-8000,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.0535,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,29,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,19.0061,0,0.0,0.0,0.0,0.0,0,0,30223,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.0667,0.0,Two Seaters,2011,-9500,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.0535,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,30,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,19.0061,0,0.0,0.0,0.0,0.0,0,0,30224,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.0667,0.0,Two Seaters,2011,-9500,G,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,11.7036,8,8.1576,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1289,10,10.0502,0.0,0.0,0.0,12,6.0,All-Wheel Drive,47,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.9212,14,14.028,0.0,0.0,0.0,0,0,30225,0,0,Bentley,Continental Supersports,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3,10.3,25.2,17.7,Two Seaters,2011,-9500,G,,T,,FFV,E85,240,, +32.961,0.0,0.0,0.0,8,8.4232,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,10.4424,0,0.0,0.0,0.0,0.0,16,8.0,All-Wheel Drive,61,,-1,6050,0,Premium,Premium Gasoline,-1,-1,15,14.7698,0,0.0,0.0,0.0,0.0,0,0,30226,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),10.0,0.0,17.9,0.0,Two Seaters,2011,-18250,G,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,69,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30227,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3,0.0,33.5,0.0,Two Seaters,2011,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,70,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30228,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.9,0.0,27.1,0.0,Two Seaters,2011,-6750,G,,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,99,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30229,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,3023,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1987,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,100,,-1,3050,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30230,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,34.3,0.0,Two Seaters,2011,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,65,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30231,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.1,0.0,35.6,0.0,Two Seaters,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,68,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30232,0,0,Mercedes-Benz,SLK300,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,35.9,0.0,Two Seaters,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,232,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30233,0,0,Mercedes-Benz,SLK300,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3,0.0,36.2,0.0,Two Seaters,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,236,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30234,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.5,0.0,35.2,0.0,Two Seaters,2011,-2250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.4655,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.718,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,52,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7573,0,0.0,0.0,0.0,0.0,0,0,30235,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.1,0.0,25.4,0.0,Two Seaters,2011,-6750,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.3954,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.6701,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,53,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7741,0,0.0,0.0,0.0,0.0,0,0,30236,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.0,0.0,25.4,0.0,Two Seaters,2011,-6750,G,,,,,,,, +21.974,0.0,0.0,0.0,12,12.0883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.7021,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,54,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.9831,0,0.0,0.0,0.0,0.0,0,0,30237,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2011,-8000,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.5388,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1465,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,55,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.5451,0,0.0,0.0,0.0,0.0,0,0,30238,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2011,-9500,G,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,30,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30239,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4337,0.0,37.3472,0.0,Two Seaters,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,83,3024,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,31,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30240,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,32,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30241,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4337,0.0,37.3472,0.0,Two Seaters,2011,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,33,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30242,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,35,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30243,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2011,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,36,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30244,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9978,0.0,Two Seaters,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,37,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30245,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.666,0.0,36.7299,0.0,Two Seaters,2011,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,38,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30246,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6814,0.0,40.9978,0.0,Two Seaters,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,39,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30247,0,0,Porsche,Boxster Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0596,0.0,37.055,0.0,Two Seaters,2011,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,40,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30248,0,0,Porsche,Boxster Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.0772,0.0,41.347,0.0,Two Seaters,2011,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,41,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30249,0,0,Porsche,911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.2464,0.0,28.5492,0.0,Two Seaters,2011,-6750,G,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2424,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,3025,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Subcompact Cars,1987,0,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,42,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30250,0,0,Porsche,911 GT3 RS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.7855,0.0,27.372,0.0,Two Seaters,2011,-6750,G,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,8,,-1,2400,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30251,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Two Seaters,2011,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30252,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2011,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,10,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30253,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.1085,0.0,38.7414,0.0,Two Seaters,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,10,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30254,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1717,0.0,34.9402,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,11,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30255,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4818,0.0,37.8668,0.0,Minicompact Cars,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,12,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30256,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1818,0.0,35.5915,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,13,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30257,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2433,0.0,37.3842,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,14,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30258,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4737,0.0,34.8617,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,15,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30259,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6061,0.0,36.7669,0.0,Minicompact Cars,2011,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3026,10,0,Dodge,Lancer Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1987,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,16,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30260,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8253,0.0,36.0277,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,17,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30261,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,18,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30262,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9382,0.0,34.1119,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,19,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30263,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0006,0.0,36.7563,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,20,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30264,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8749,0.0,35.3192,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,21,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30265,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8233,0.0,36.4375,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,22,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30266,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5957,0.0,34.7504,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,23,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30267,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.9887,0.0,35.9964,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,24,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30268,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8676,0.0,34.3243,0.0,Minicompact Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,25,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30269,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3027,10,0,Dodge,Lancer Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1987,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,26,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30270,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8749,0.0,35.3192,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,27,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30271,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8233,0.0,36.4375,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,28,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30272,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8676,0.0,34.3243,0.0,Minicompact Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,29,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30273,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,50,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30274,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,51,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30275,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,52,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30276,5,0,Porsche,911 Turbo S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,53,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30277,5,0,Porsche,911 Turbo S Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,54,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30278,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5187,0.0,33.2357,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,55,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30279,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0177,0.0,33.1649,0.0,Minicompact Cars,2011,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3241,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,3028,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.0197,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9869,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.9137,0,0.0,0.0,0.0,0.0,0,0,30280,10,0,Audi,A5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2562,0.0,42.8122,0.0,Subcompact Cars,2011,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.6972,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8439,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,4,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.2859,0,0.0,0.0,0.0,0.0,0,0,30281,12,0,Audi,A5 quattro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.0226,0.0,39.6595,0.0,Subcompact Cars,2011,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.6972,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8439,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,6,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.2859,0,0.0,0.0,0.0,0.0,0,0,30282,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.0226,0.0,39.6595,0.0,Subcompact Cars,2011,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.1151,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7864,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,8,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.4753,0,0.0,0.0,0.0,0.0,0,0,30283,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6262,0.0,42.4083,0.0,Subcompact Cars,2011,0,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,14.2883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9482,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,12,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.9404,0,0.0,0.0,0.0,0.0,0,0,30284,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.3,0.0,Subcompact Cars,2011,-5750,G,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.4584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2125,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,14,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.1522,0,0.0,0.0,0.0,0.0,0,0,30285,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.0,0.0,Subcompact Cars,2011,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.6793,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9228,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,18,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.1345,0,0.0,0.0,0.0,0.0,0,0,30286,10,0,Audi,S5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.3,0.0,34.0,0.0,Subcompact Cars,2011,-3000,,,,S,,,,, +12.657024,0.0,0.0,0.0,22,22.3874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6055,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,25,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,31.0629,0,0.0,0.0,0.0,0.0,13,74,30287,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3653,0.0,42.1795,0.0,Subcompact Cars,2011,500,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.1346,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6117,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8063,0,0.0,0.0,0.0,0.0,0,0,30288,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0007,0.0,41.3706,0.0,Subcompact Cars,2011,0,,,T,,,,,, +25.336022,7.4910000000000005,0.0,0.0,11,11.104,8,7.8477,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.3448,10,9.4698,0.0,0.0,0.0,12,6.0,All-Wheel Drive,44,FFV,-1,4650,4550,Premium or E85,Premium Gasoline,-1,-1,18,17.7139,13,12.6708,0.0,0.0,0.0,0,0,30289,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.3989,9.5591,23.8737,16.8778,Subcompact Cars,2011,-11250,G,,T,,FFV,E85,210,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3238,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,3029,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.8974,0.0,Subcompact Cars,1987,-500,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,11.5043,8,8.3016,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.9574,10,10.0512,0.0,0.0,0.0,12,6.0,All-Wheel Drive,46,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.877,14,13.5384,0.0,0.0,0.0,0,0,30290,7,0,Bentley,Continental Supersports Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,10.3,24.7,17.2,Subcompact Cars,2011,-9500,G,,T,,FFV,E85,240,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,176,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,30291,0,0,Chevrolet,Aveo 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2011,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,177,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,91,30292,0,0,Suzuki,Swift x,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Subcompact Cars,2011,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,179,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,7,91,30293,0,0,Chevrolet,Aveo 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Subcompact Cars,2011,2750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,180,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,7,91,30294,0,0,Suzuki,Swift x,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Subcompact Cars,2011,2750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,7,,-1,2600,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30295,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8964,0.0,41.5484,0.0,Subcompact Cars,2011,-1000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,8,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30296,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,42.2,0.0,Subcompact Cars,2011,-500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,9,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30297,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.3358,0.0,37.8229,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,10,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30298,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,36.4,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,131,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30299,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4308,0.0,36.0343,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +9.554625000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,,-1,1500,0,Diesel,Diesel,-1,-1,46,0.0,0,0.0,0.0,0.0,0.0,17,85,303,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.0,0.0,66.6667,0.0,Compact Cars,1985,4500,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,84,3030,8,0,Ford,Mustang,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1987,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,132,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30300,11,0,Mercedes-Benz,E550 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Subcompact Cars,2011,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.7634,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.8658,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,37,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,30.1121,0,0.0,0.0,0.0,0.0,0,0,30301,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5,0.0,41.5,0.0,Subcompact Cars,2011,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,22.0197,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9869,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.9137,0,0.0,0.0,0.0,0.0,0,0,30302,0,12,Audi,A4,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2562,0.0,42.8122,0.0,Compact Cars,2011,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.6972,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8439,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,3,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.2859,0,0.0,0.0,0.0,0.0,0,0,30303,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S8),26.0226,0.0,39.6595,0.0,Compact Cars,2011,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.1151,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7864,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,7,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.4753,0,0.0,0.0,0.0,0.0,0,0,30304,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6262,0.0,42.4083,0.0,Compact Cars,2011,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.7412,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1948,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,17,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.812,0,0.0,0.0,0.0,0.0,0,0,30305,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6,0.0,35.0,0.0,Compact Cars,2011,-2250,,,,S,,,,, +15.689436,0.0,0.0,0.0,18,17.7593,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8985,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,19,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6578,0,0.0,0.0,0.0,0.0,0,0,30306,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.1,0.0,Compact Cars,2011,-2250,,,,S,,,,, +13.1844,0.0,0.0,0.0,21,21.1346,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6117,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8063,0,0.0,0.0,0.0,0.0,15,94,30307,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0007,0.0,41.3706,0.0,Compact Cars,2011,0,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,21.1346,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6117,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8063,0,0.0,0.0,0.0,0.0,0,0,30308,0,13,Volkswagen,CC,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0007,0.0,41.3706,0.0,Compact Cars,2011,0,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,9,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30309,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.746,0.0,31.3669,0.0,Compact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,3031,8,0,Ford,Mustang,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,11,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30310,0,11,Subaru,Impreza AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4448,0.0,34.4341,0.0,Compact Cars,2011,-2250,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,84,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30311,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.9039,0.0,47.9246,0.0,Compact Cars,2011,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,32.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,38.6435,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,85,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,49.4,0,0.0,0.0,0.0,0.0,0,0,30312,14,14,Ford,Focus FWD,Y,false,93,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.8,0.0,49.4,0.0,Compact Cars,2011,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,175,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30313,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.8,0.0,47.9,0.0,Compact Cars,2011,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,178,,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30314,0,12,Chevrolet,Aveo,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,48.9,0.0,Compact Cars,2011,2750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,19,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30315,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.1,0.0,Compact Cars,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.7874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7178,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,24,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,24.2104,0,0.0,0.0,0.0,0.0,0,0,30316,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6479,0.0,33.7252,0.0,Compact Cars,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,25,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30317,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4038,0.0,34.1873,0.0,Compact Cars,2011,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,157,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30318,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.0,0.0,39.0,0.0,Compact Cars,2011,-1750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,30319,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,50.4,0.0,Compact Cars,2011,2750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3402,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,3032,8,0,Ford,Mustang,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1987,-4250,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,22,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,92,30320,0,12,Hyundai,Accent,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.764,0.0,48.3648,0.0,Compact Cars,2011,2750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,23,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,92,30321,0,0,Hyundai,Accent Blue,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.146,0.0,50.3812,0.0,Compact Cars,2011,2750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,22,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30322,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.3,0.0,34.8,0.0,Compact Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,23,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30323,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,35.9,0.0,Compact Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.368,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9352,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,25,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.3308,0,0.0,0.0,0.0,0.0,0,0,30324,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.7,0.0,33.9,0.0,Compact Cars,2011,-3000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,108,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30325,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.5,0.0,26.8,0.0,Compact Cars,2011,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,14.0225,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4554,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,319,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.8839,0,0.0,0.0,0.0,0.0,0,0,30326,0,13,Mercedes-Benz,CLS550,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,29.0,0.0,Compact Cars,2011,-6750,G,,,,,,,, +11.75609,0.0,0.0,0.0,24,24.2544,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5546,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,111,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,33.0511,0,0.0,0.0,0.0,0.0,0,0,30327,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0898,0.0,46.6272,0.0,Compact Cars,2011,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,25.466,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.4794,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,112,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,33.2947,0,0.0,0.0,0.0,0.0,0,0,30328,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.7835,0.0,46.9873,0.0,Compact Cars,2011,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,113,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30329,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5889,0.0,43.3312,0.0,Compact Cars,2011,1500,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,26010,,-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,15,70,3033,0,12,Honda,Civic,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,41.0,0.0,55.0,0.0,Subcompact Cars,1987,4000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,23.0772,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8248,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,114,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.2227,0,0.0,0.0,0.0,0.0,0,0,30330,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.4582,0.0,42.4638,0.0,Compact Cars,2011,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,115,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30331,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),21.9,0.0,34.9,0.0,Compact Cars,2011,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,131,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30332,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.9,0.0,Compact Cars,2011,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,132,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30333,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),20.6,0.0,30.6,0.0,Compact Cars,2011,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,3,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,30334,11,0,Rolls-Royce,Phantom Drophead Coupe,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2011,-9500,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,4,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,30335,13,0,Rolls-Royce,Phantom Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2011,-9500,G,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,1,,-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,87,30336,0,0,Mazda,2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.2,0.0,49.6,0.0,Compact Cars,2011,3500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,2,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,87,30337,0,0,Mazda,2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.8,0.0,46.5,0.0,Compact Cars,2011,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,95,30338,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.898,0.0,46.4409,0.0,Compact Cars,2011,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,95,30339,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),30.2376,0.0,46.6245,0.0,Compact Cars,2011,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,70,3034,0,12,Honda,Civic,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Subcompact Cars,1987,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,5,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,95,30340,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5544,0.0,39.5544,0.0,Compact Cars,2011,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,6,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,95,30341,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),28.2545,0.0,40.5356,0.0,Compact Cars,2011,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0699,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,30342,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,35.8,0.0,Compact Cars,2011,-1000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2911,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,72,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.3,0,0.0,0.0,0.0,0.0,0,0,30343,0,13,Volvo,S40 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),25.8,0.0,41.8,0.0,Compact Cars,2011,500,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,23.6601,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.5033,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,32,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,31.0661,0,0.0,0.0,0.0,0.0,0,0,30344,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0812,0.0,42.4888,0.0,Compact Cars,2011,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,23.6601,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.5033,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,33,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,31.0661,0,0.0,0.0,0.0,0.0,15,94,30345,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0812,0.0,42.4888,0.0,Compact Cars,2011,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.7575,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3775,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,35,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7434,0,0.0,0.0,0.0,0.0,0,0,30346,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3068,0.0,44.5159,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.7575,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3775,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,36,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7434,0,0.0,0.0,0.0,0.0,15,94,30347,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3068,0.0,44.5159,0.0,Compact Cars,2011,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.8725,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2224,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.0314,0,0.0,0.0,0.0,0.0,0,0,30348,0,13,Volkswagen,CC,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1,0.0,42.4736,0.0,Compact Cars,2011,0,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,24.229,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.3682,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,39,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,33,32.5176,0,0.0,0.0,0.0,0.0,15,94,30349,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9467,0.0,43.5342,0.0,Compact Cars,2011,750,,,T,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS) 3 barrel carb,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,70,3035,0,12,Honda,Civic,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.8718,0.0,Subcompact Cars,1987,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,23.0924,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.4725,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,50,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.1439,0,0.0,0.0,0.0,0.0,0,0,30350,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1,0.0,41.399,0.0,Compact Cars,2011,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,24,24.3944,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.8344,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,51,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,33.6309,0,0.0,0.0,0.0,0.0,0,0,30351,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,46.2,0.0,Compact Cars,2011,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.9415,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.8774,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,60,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.219,0,0.0,0.0,0.0,0.0,0,0,30352,0,13,Volkswagen,CC 4motion,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,17,17.3466,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6242,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,11,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.8174,0,0.0,0.0,0.0,0.0,0,0,30353,0,13,Audi,A8,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),21.1125,0.0,35.7222,0.0,Midsize Cars,2011,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.0034,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7963,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,13,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.8927,0,0.0,0.0,0.0,0.0,0,0,30354,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1,0.0,32.2,0.0,Midsize Cars,2011,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.8972,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.3133,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,16,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.3841,0,0.0,0.0,0.0,0.0,0,0,30355,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.1,0.0,40.8,0.0,Midsize Cars,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.6132,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.567,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.8695,0,0.0,0.0,0.0,0.0,0,0,30356,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,34.8,0.0,Midsize Cars,2011,-2250,,,,S,,,,, +20.589638,0.0,0.0,0.0,14,14.0753,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4149,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,59,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.6,0,0.0,0.0,0.0,0.0,0,0,30357,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.7,0.0,Midsize Cars,2011,-6750,G,,,,,,,, +25.336022,7.4910000000000005,0.0,0.0,11,11.104,8,7.8477,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.3448,10,9.4698,0.0,0.0,0.0,12,6.0,All-Wheel Drive,45,FFV,-1,4650,4550,Premium or E85,Premium Gasoline,-1,-1,18,17.7139,13,12.6708,0.0,0.0,0.0,0,0,30358,13,0,Bentley,Continental Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.3989,9.5591,23.8737,16.8778,Midsize Cars,2011,-11250,G,,T,,FFV,E85,210,, +13.1844,0.0,0.0,0.0,22,21.5758,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6666,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.9021,0,0.0,0.0,0.0,0.0,0,0,30359,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),27.3967,0.0,41.994,0.0,Midsize Cars,2011,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS) fuel injection,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,70,3036,0,12,Honda,Civic,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Subcompact Cars,1987,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,56,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30360,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.0,0.0,46.3,0.0,Midsize Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,29.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,34.8617,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,57,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,46.3,0,0.0,0.0,0.0,0.0,0,0,30361,0,16,Mercury,Milan FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.0,0.0,46.3,0.0,Midsize Cars,2011,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,21.8708,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4854,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,61,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.6751,0,0.0,0.0,0.0,0.0,0,0,30362,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8,0.0,40.2,0.0,Midsize Cars,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,63,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30363,0,16,Mercury,Milan FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8,0.0,40.2,0.0,Midsize Cars,2011,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,68,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30364,0,16,Ford,Fusion AWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6981,0.0,33.5,0.0,Midsize Cars,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,69,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30365,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Midsize Cars,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,70,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30366,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6981,0.0,33.5,0.0,Midsize Cars,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,71,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30367,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.4,0.0,Midsize Cars,2011,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.6515,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2082,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,79,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,30368,0,16,Ford,Fusion S FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5,0.0,44.4,0.0,Midsize Cars,2011,1000,,,,,,,,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,80,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,30369,0,16,Ford,Fusion AWD FFV,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9472,15.9486,35.6814,25.8996,Midsize Cars,2011,-1750,,,,,FFV,E85,250,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3037,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.7436,0.0,Subcompact Cars,1987,500,,,,,,,,, +8.438016000000001,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30370,0,16,Mercury,Milan Hybrid FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2011,5000,,,,,Hybrid,,,275V Ni-MH, +8.438016000000001,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,82,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30371,0,11,Lincoln,MKZ Hybrid FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2011,5000,,,,,Hybrid,,,275V Ni-MH, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,180,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,30372,0,16,Mercury,Milan AWD FFV,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9472,15.9486,35.6814,25.8996,Midsize Cars,2011,-1750,,,,,FFV,E85,250,, +8.438016000000001,0.0,0.0,0.0,41,56.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,54.1846,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,181,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,51.6,0,0.0,0.0,0.0,0.0,0,0,30373,0,12,Ford,Fusion Hybrid FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2011,5000,,,,,Hybrid,,,275V Ni-MH, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,191,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30374,0,16,Mercury,Milan S FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5,0.0,44.4,0.0,Midsize Cars,2011,1000,,,,,,,,, +14.327048,4.679378,0.0,0.0,20,24.7,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,386.39130434782606,23,29.7599,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,280,FFV,-1,2400,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,39.7,21,0.0,0.0,0.0,0.0,0,0,30375,0,16,Mercury,Milan FWD FFV,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,17.5,39.7,28.9,Midsize Cars,2011,0,,,,,FFV,E85,280,, +14.327048,4.679378,0.0,0.0,20,24.7,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,386.39130434782606,23,29.7599,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,380,FFV,-1,2400,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,39.7,21,0.0,0.0,0.0,0.0,0,0,30376,0,16,Ford,Fusion FWD FFV,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,17.5,39.7,28.9,Midsize Cars,2011,0,,,,,FFV,E85,280,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30377,0,16,Buick,LaCrosse,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,42.0,0.0,Midsize Cars,2011,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,16,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30378,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.1,0.0,Midsize Cars,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,18,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30379,0,14,Cadillac,STS,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.9,0.0,40.1,0.0,Midsize Cars,2011,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3038,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,39.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30380,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,0.0,46.8,0.0,Midsize Cars,2011,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,38,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30381,0,16,Buick,LaCrosse,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0527,0.0,37.4874,0.0,Midsize Cars,2011,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,66,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30382,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3707,0.0,25.1835,0.0,Midsize Cars,2011,-9500,G,,,S,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,67,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30383,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.3,0.0,Midsize Cars,2011,-6750,G,,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,68,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30384,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0858,0.0,35.7384,0.0,Midsize Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,85,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30385,0,16,Buick,LaCrosse AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,36.1,0.0,Midsize Cars,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,90,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30386,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,37.3,0.0,Midsize Cars,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,92,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30387,0,14,Cadillac,STS AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,37.3,0.0,Midsize Cars,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,97,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30388,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.8,0.0,36.1,0.0,Midsize Cars,2011,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,110,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30389,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,38.3,0.0,Midsize Cars,2011,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26040,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3039,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,112,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30390,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Midsize Cars,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,139,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30391,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9,0.0,36.0,0.0,Midsize Cars,2011,-2500,,,,,,,,, +12.657024,4.160002,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,0.0,18,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,149,FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,0.0,23,0.0,0.0,0.0,0.0,0,0,30392,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,18.6,46.9,32.8,Midsize Cars,2011,1500,,,,,FFV,E85,300,, +18.304342000000002,0.0,0.0,0.0,15,15.0216,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8501,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,302,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.1863,0,0.0,0.0,0.0,0.0,0,0,30393,0,14,Mercedes-Benz,E550,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.6458,0.0,32.2516,0.0,Midsize Cars,2011,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,306,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30394,0,14,Mercedes-Benz,E350 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6,0.0,33.2,0.0,Midsize Cars,2011,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,307,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30395,0,14,Mercedes-Benz,E550 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5,0.0,31.5,0.0,Midsize Cars,2011,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,322,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30396,0,14,Mercedes-Benz,E63 AMG,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.7657,0.0,27.0993,0.0,Midsize Cars,2011,-8000,G,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,1,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,30397,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.2681,0.0,48.1316,0.0,Midsize Cars,2011,2750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,18,95,30398,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,44.9,0.0,Midsize Cars,2011,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,95,30399,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,44.2,0.0,Midsize Cars,2011,2250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,304,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Compact Cars,1985,3250,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3040,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,95,30400,0,14,Nissan,Versa,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.7,0.0,46.5,0.0,Midsize Cars,2011,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,18,95,30401,0,14,Nissan,Versa,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.1,0.0,47.3,0.0,Midsize Cars,2011,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,7,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,95,30402,0,0,Mazda,Speed 3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.7,0.0,Midsize Cars,2011,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,11,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30403,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6585,0.0,37.3778,0.0,Midsize Cars,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0699,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,30404,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,35.8,0.0,Midsize Cars,2011,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,17.3466,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6242,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,10,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.8174,0,0.0,0.0,0.0,0.0,0,0,30405,0,13,Audi,A8 L,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),21.1125,0.0,35.7222,0.0,Large Cars,2011,-2250,,,,,,,,, +15.689436,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,58,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,0.0,20,0.0,0.0,0.0,0.0,0,0,30406,0,17,Buick,Lucerne,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2011,-1000,,,,,FFV,E85,280,, +15.689436,4.994,0.0,0.0,17,17.3431,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,20.5855,15,0.0,0.0,0.0,0.0,6,3.9,Front-Wheel Drive,59,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,26.6824,20,0.0,0.0,0.0,0.0,0,0,30407,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,16.0,37.3,27.3,Large Cars,2011,-1000,,,,,FFV,E85,270,, +14.327048,4.404708,0.0,0.0,19,19.1415,14,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.696,17,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,93,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,29.3596,22,0.0,0.0,0.0,0.0,0,0,30408,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.1,17.6,41.2,30.3,Large Cars,2011,0,,,,,FFV,E85,300,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,131,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30409,0,17,Buick,Lucerne,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2011,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3041,9,0,Honda,Prelude,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,132,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30410,0,19,Cadillac,DTS,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.7,0.0,Large Cars,2011,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,133,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30411,0,19,Cadillac,Limousine,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0083,0.0,24.4112,0.0,Large Cars,2011,-7750,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,134,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,30412,0,19,Cadillac,Funeral Coach / Hearse,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.9035,0.0,22.7071,0.0,Large Cars,2011,-7750,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,11,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30413,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.9,0.0,38.3,0.0,Large Cars,2011,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,12,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30414,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,34.4,0.0,Large Cars,2011,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,202,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30415,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.8,0.0,32.0,0.0,Large Cars,2011,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,207,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30416,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.5,0.0,29.8,0.0,Large Cars,2011,-5750,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1031,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,43,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,30417,0,25,Porsche,Panamera,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.6,0.0,37.3,0.0,Large Cars,2011,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,44,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30418,0,25,Porsche,Panamera S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2302,0.0,Large Cars,2011,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,45,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30419,0,25,Porsche,Panamera 4S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2302,0.0,Large Cars,2011,-3750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3042,9,0,Honda,Prelude,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,46,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30420,0,25,Porsche,Panamera Turbo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5447,0.0,31.9791,0.0,Large Cars,2011,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,47,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30421,0,25,Porsche,Panamera 4,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2135,0.0,36.544,0.0,Large Cars,2011,-2250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,1,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,30422,0,14,Rolls-Royce,Phantom,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2011,-9500,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,2,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,30423,0,14,Rolls-Royce,Phantom EWB,N,false,0,125,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2011,-9500,G,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.6972,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8439,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,5,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.2859,0,0.0,0.0,0.0,0.0,0,0,30424,0,28,Audi,A4 Avant quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),26.0226,0.0,39.6595,0.0,Small Station Wagons,2011,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.8001,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.139,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,22,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.031,0,0.0,0.0,0.0,0.0,0,0,30425,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2896,0.0,40.4108,0.0,Small Station Wagons,2011,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,21.6024,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9797,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,23,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,27.7062,0,0.0,0.0,0.0,0.0,0,0,30426,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0555,0.0,38.8824,0.0,Small Station Wagons,2011,-500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.891,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.6187,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,24,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,28.1035,0,0.0,0.0,0.0,0.0,0,0,30427,0,20,Audi,A3 quattro,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.2,0.0,37.1,0.0,Small Station Wagons,2011,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,10,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30428,0,19,Subaru,Impreza Wagon/Outback Sport AWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.746,0.0,31.3669,0.0,Small Station Wagons,2011,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,12,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30429,0,19,Subaru,Impreza Wagon/Outback Sport AWD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4448,0.0,34.4341,0.0,Small Station Wagons,2011,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,3043,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,36.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,32,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,28,101,30430,0,0,Acura,RDX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2011,-2250,,,T,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,14,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30431,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.9,0.0,43.5,0.0,Small Station Wagons,2011,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,15,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30432,0,24,Kia,Soul,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,44.2,0.0,Small Station Wagons,2011,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,24.118,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3708,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,16,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,30433,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.9,0.0,41.8,0.0,Small Station Wagons,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30434,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6,0.0,42.8,0.0,Small Station Wagons,2011,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,121,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,95,30435,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.4627,0.0,45.5252,0.0,Small Station Wagons,2011,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,123,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,14,95,30436,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.1699,0.0,43.0093,0.0,Small Station Wagons,2011,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,125,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,95,30437,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),21.9,0.0,34.9,0.0,Small Station Wagons,2011,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2911,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,71,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.3,0,0.0,0.0,0.0,0.0,0,0,30438,0,32,Volvo,V50 FWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S5),25.8,0.0,41.8,0.0,Small Station Wagons,2011,500,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,23.6601,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.5033,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,31,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,31.0661,0,0.0,0.0,0.0,0.0,0,0,30439,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0812,0.0,42.4888,0.0,Small Station Wagons,2011,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,82,3044,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,39.7436,0.0,Subcompact Cars,1987,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.7575,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3775,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,34,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7434,0,0.0,0.0,0.0,0.0,0,0,30440,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3068,0.0,44.5159,0.0,Small Station Wagons,2011,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.6132,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.567,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.8695,0,0.0,0.0,0.0,0.0,0,0,30441,0,34,Audi,A6 Avant quattro,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,34.8,0.0,Midsize Station Wagons,2011,-2250,,,,S,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30442,0,32,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,37.1,0.0,Midsize Station Wagons,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,23,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30443,0,32,Kia,Rondo,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,35.9,0.0,Midsize Station Wagons,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,316,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30444,0,36,Mercedes-Benz,E350 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.4,0.0,32.2,0.0,Midsize Station Wagons,2011,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,24.2054,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,24.3838,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,11,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,24.6055,0,0.0,0.0,0.0,0.0,0,0,30445,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.2054,0.0,35.82,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,26.4857,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,25.6776,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,12,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,24.7545,0,0.0,0.0,0.0,0.0,0,0,30446,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4857,0.0,36.3767,0.0,Small Pickup Trucks 2WD,2011,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,15,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30447,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.7,0.0,29.2,0.0,Small Pickup Trucks 2WD,2011,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,16,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30448,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,26.9,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,22.8462,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,22.0951,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,13,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,21.2416,0,0.0,0.0,0.0,0.0,0,0,30449,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.8462,0.0,31.6473,0.0,Small Pickup Trucks 4WD,2011,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,82,3045,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,22.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,21.6028,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,14,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,20.3,0,0.0,0.0,0.0,0.0,0,0,30450,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,30.2,0.0,Small Pickup Trucks 4WD,2011,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,17,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30451,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,28.3,0.0,Small Pickup Trucks 4WD,2011,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,18,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30452,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,24.4,0.0,Small Pickup Trucks 4WD,2011,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,50,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30453,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.1,0.0,28.1,0.0,Standard Pickup Trucks 2WD,2011,-4250,,,,,,,,, +20.589638,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,555.4375,16,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,52,FFV,-1,3450,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,30454,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.3,11.0,25.7,17.9,Standard Pickup Trucks 2WD,2011,-5250,,,,,FFV,E85,220,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30455,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7,0.0,27.8,0.0,Standard Pickup Trucks 2WD,2011,-5250,,,,,,,,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,56,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,30456,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.2,Standard Pickup Trucks 2WD,2011,-6250,,,,,FFV,E85,320,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,58,,-1,3600,0,Midgrade,Midgrade Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30457,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.2,0.0,Standard Pickup Trucks 2WD,2011,-6000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0844,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,329,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30458,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Pickup Trucks 2WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0844,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,331,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30459,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Pickup Trucks 2WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,3046,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1987,2250,,,,,,,,, +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.4003,11,10.6557,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,368,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.6543,13,13.4685,0.0,0.0,0.0,0,0,30460,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.1974,11.048,24.9499,18.6,Standard Pickup Trucks 2WD,2011,-7750,,,,,FFV,E85,290,, +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.4003,11,10.6557,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,370,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.6543,13,13.4685,0.0,0.0,0.0,0,0,30461,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.1974,11.048,24.9499,18.6,Standard Pickup Trucks 2WD,2011,-7750,,,,,FFV,E85,290,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,51,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30462,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.8,0.0,24.4,0.0,Standard Pickup Trucks 4WD,2011,-6250,,,,,,,,, +21.974,7.4910000000000005,0.0,0.0,14,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,53,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,30463,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,10.7,25.6,17.1,Standard Pickup Trucks 4WD,2011,-6250,,,,,FFV,E85,220,, +21.974,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,0.0,10,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,57,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,12,0.0,0.0,0.0,0.0,0,0,30464,0,0,Dodge,Ram 1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0,11.0,24.6,16.5,Standard Pickup Trucks 4WD,2011,-6250,,,,,FFV,E85,320,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,59,,-1,3850,0,Midgrade,Midgrade Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30465,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.5,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2011,-7250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9457,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,461,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7,0,0.0,0.0,0.0,0.0,0,0,30466,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Standard Pickup Trucks 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9457,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,463,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7,0,0.0,0.0,0.0,0.0,0,0,30467,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Standard Pickup Trucks 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +23.534154,7.4910000000000005,0.0,0.0,12,12.1814,9,8.8521,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.113,10,10.4552,0.0,0.0,0.0,8,6.2,4-Wheel Drive,489,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5058,13,13.4271,0.0,0.0,0.0,0,0,30468,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9746,10.8819,24.8209,18.5396,Standard Pickup Trucks 4WD,2011,-7750,,,,,FFV,E85,260,, +23.534154,7.4910000000000005,0.0,0.0,12,12.1817,9,8.8523,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1135,10,10.4555,0.0,0.0,0.0,8,6.2,4-Wheel Drive,491,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5066,13,13.4278,0.0,0.0,0.0,0,0,30469,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.975,10.8822,24.8221,18.5405,Standard Pickup Trucks 4WD,2011,-7750,,,,,FFV,E85,260,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,3047,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1987,3750,,SIL,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,12.2012,9,8.8662,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1438,10,10.4776,0.0,0.0,0.0,8,6.2,All-Wheel Drive,492,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5611,13,13.4698,0.0,0.0,0.0,0,0,30470,0,0,GMC,Sierra K15 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,10.9,24.9,18.6,Standard Pickup Trucks 4WD,2011,-7750,,,,,FFV,E85,260,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,40,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30471,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,28.2,0.0,Standard Pickup Trucks 4WD,2011,-4250,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,406,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30472,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2011,-6250,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,407,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30473,0,0,Chevrolet,Express 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,340,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,409,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30474,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2011,-6250,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,410,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30475,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,340,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,417,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30476,0,0,Chevrolet,Express 2500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,420,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30477,0,0,Chevrolet,Express 2500 2WD Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,421,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30478,0,0,Chevrolet,Express 3500 2WD Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,422,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30479,0,0,GMC,Savana 2500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,85,3048,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1987,3000,,,,,,,,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,425,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30480,0,0,GMC,Savana 2500 2WD (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,10,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,426,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30481,0,0,GMC,Savana 3500 2WD (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6056,9.2942,21.4734,15.8665,"Vans, Cargo Type",2011,-11000,,,,,FFV,E85,280,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,506,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30482,0,0,Chevrolet,Express 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,310,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,508,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30483,0,0,Chevrolet,Express 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.629,12.0,23.302,17.4,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,510,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30484,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.629,12.0,23.302,17.4,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,340,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,511,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30485,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,310,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,405,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30486,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2011,-7750,,,,,FFV,E85,340,, +23.534154,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,408,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30487,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2011,-7750,,,,,FFV,E85,340,, +25.336022,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,418,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30488,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.8,15.9,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,419,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30489,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.8375,9.3916,21.6285,15.8825,"Vans, Passenger Type",2011,-11000,,,,,FFV,E85,280,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29011,"(FFS,TRBO)",-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,3049,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1987,1750,,,T,,,,,, +25.336022,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,423,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30490,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.8,15.9,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,280,, +27.4675,8.320004,0.0,0.0,11,0.0,8,0.0,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,0.0,9,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,424,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30491,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.8723,9.4061,21.6515,15.8849,"Vans, Passenger Type",2011,-11000,,,,,FFV,E85,280,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,507,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30492,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2011,-7750,,,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.3,All-Wheel Drive,509,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30493,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2011,-7750,,,,,FFV,E85,310,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,40,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30494,0,0,Jeep,Liberty 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.4,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,41,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30495,0,0,Dodge,Nitro 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.4,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,44,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30496,0,0,Dodge,Nitro 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.6,0.0,29.4,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,411,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30497,0,0,Mitsubishi,Endeavor 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),19.1025,0.0,29.8075,0.0,Sport Utility Vehicle - 2WD,2011,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,148,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30498,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,36.6,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,149,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30499,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3311,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,305,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Compact Cars,1985,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,77,3050,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,150,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30500,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,151,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30501,0,0,Lincoln,MKX FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +13.1844,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,355.48,25,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,33,FFV,-1,2200,2700,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,21,0.0,0.0,0.0,0.0,0,0,30502,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,19.1,41.5,29.5,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,280,, +13.1844,4.404708,0.0,0.0,22,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,355.48,25,0.0,17,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,34,FFV,-1,2200,2700,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,21,0.0,0.0,0.0,0.0,0,0,30503,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.5,19.1,41.5,29.5,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,280,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,122,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30504,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,125,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30505,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,45.1,0.0,Sport Utility Vehicle - 2WD,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,126,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30506,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,45.1,0.0,Sport Utility Vehicle - 2WD,2011,1500,,,,,,,,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,141,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,30507,0,0,Chevrolet,HHR FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.8,42.2,30.6,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,290,, +13.1844,4.160002,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,142,FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,22,0.0,0.0,0.0,0.0,0,0,30508,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,19.8,42.2,30.6,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,290,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,143,FFV,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,30509,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.8,32.2,Sport Utility Vehicle - 2WD,2011,1500,,,,,FFV,E85,310,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,77,3051,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +12.657024,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,341.8076923076923,26,0.0,19,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,144,FFV,-1,2100,2400,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,23,0.0,0.0,0.0,0.0,0,0,30510,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,20.7,44.8,32.2,Sport Utility Vehicle - 2WD,2011,1500,,,,,FFV,E85,310,, +15.689436,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0844,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,327,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30511,0,0,Cadillac,Escalade Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0844,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,328,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30512,0,0,Chevrolet,Tahoe Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0844,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,330,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30513,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,353,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30514,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,354,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30515,0,0,Chevrolet,Traverse FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,355,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30516,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5746,12,11.8279,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,375,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0836,15,14.9385,0.0,0.0,0.0,0,0,30517,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.7,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,310,, +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5746,12,11.8279,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,376,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0836,15,14.9385,0.0,0.0,0.0,0,0,30518,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.7,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,380,, +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5746,12,11.8279,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,377,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0836,15,14.9385,0.0,0.0,0.0,0,0,30519,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.7,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,310,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,3052,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5746,12,11.8279,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,378,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0836,15,14.9385,0.0,0.0,0.0,0,0,30520,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.7,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,380,, +13.1844,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,355.48,25,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,379,FFV,-1,2200,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,23,0.0,0.0,0.0,0.0,0,0,30521,0,0,Chevrolet,HHR FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.8,41.9,31.6,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,310,, +13.1844,3.9402660000000003,0.0,0.0,22,0.0,16,0.0,0.0,0.0,0.0,-1,-1,331.3157894736842,355.48,25,0.0,19,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,380,FFV,-1,2200,2400,Gasoline or E85,Regular Gasoline,-1,-1,30,0.0,23,0.0,0.0,0.0,0.0,0,0,30522,0,0,Chevrolet,HHR Panel FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,20.8,41.9,31.6,Sport Utility Vehicle - 2WD,2011,1000,,,,,FFV,E85,310,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,427,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,30523,0,0,Chevrolet,Suburban 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Sport Utility Vehicle - 2WD,2011,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,428,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,30524,0,0,GMC,Yukon XL 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Sport Utility Vehicle - 2WD,2011,-11000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,13,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30525,0,0,Hyundai,Tucson 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.4,0.0,43.0456,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30526,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.3,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30527,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.8,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2011,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30528,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.6,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,18,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30529,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.4615,0.0,42.9897,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,77,3053,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,20,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30530,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.2,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,401,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30531,0,41,Mercedes-Benz,ML350,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.3,0.0,28.4,0.0,Sport Utility Vehicle - 2WD,2011,-5750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,381,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30532,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.8,0.0,27.8553,0.0,Sport Utility Vehicle - 2WD,2011,-6750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,13,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30533,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8197,0.0,34.5424,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,18,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30534,0,37,Volvo,XC70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8197,0.0,34.5424,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,40,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30535,0,0,Volvo,XC90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9,0.0,30.8,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,19.7627,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9328,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,41,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,25,25.3327,0,0.0,0.0,0.0,0.0,0,0,30536,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.4,0.0,34.5,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,18.1488,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0791,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,42,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.2617,0,0.0,0.0,0.0,0.0,0,0,30537,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2011,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,19.7598,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.4615,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,9,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.9681,0,0.0,0.0,0.0,0.0,0,0,30538,0,0,Audi,Q5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.6,0.0,35.9,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,17.8282,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7885,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,15,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,22.8606,0,0.0,0.0,0.0,0.0,0,0,30539,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2011,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3054,11,0,Jaguar,XJS,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,22.0,0.0,Subcompact Cars,1987,-7750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,43,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30540,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.2896,0.0,29.8624,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,S,,,,, +19.109250000000003,0.0,0.0,0.0,17,17.4714,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,20.1991,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,48,,-1,2950,0,Diesel,Diesel,-1,-1,25,24.9624,0,0.0,0.0,0.0,0.0,0,0,30541,0,0,Audi,Q7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.3,0.0,37.4,0.0,Sport Utility Vehicle - 4WD,2011,-2750,,,T,,Diesel,,,, +17.351199,0.0,0.0,0.0,19,19.0707,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,22.2444,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,49,,-1,2700,0,Diesel,Diesel,-1,-1,28,27.9241,0,0.0,0.0,0.0,0.0,0,0,30542,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.4,0.0,40.7,0.0,Sport Utility Vehicle - 4WD,2011,-1500,,,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,42,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30543,0,0,Jeep,Liberty 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,43,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30544,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,45,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30545,0,0,Dodge,Nitro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,412,,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30546,0,0,Mitsubishi,Endeavor AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.4,0.0,26.9,0.0,Sport Utility Vehicle - 4WD,2011,-5750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,45,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30547,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,34.7,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,47,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30548,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,35.7,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,49,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30549,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4583,0.0,31.622,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,Rear-Wheel Drive,30540,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3055,0,10,Jaguar,XJ6,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Subcompact Cars,1987,-6250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,53,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30550,0,0,Lincoln,MKX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4583,0.0,31.622,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,42,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30551,0,0,Chevrolet,Equinox AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8,0.0,40.2,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,43,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30552,0,0,GMC,Terrain AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8,0.0,40.2,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,121,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30553,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,140,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30554,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2436,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,400,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30555,0,0,Cadillac,Escalade Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9457,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,460,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7,0,0.0,0.0,0.0,0.0,0,0,30556,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9457,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,462,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7,0,0.0,0.0,0.0,0.0,0,0,30557,0,0,GMC,Yukon 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,470,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30558,0,0,Buick,Enclave AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,31.1,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,471,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30559,0,0,Chevrolet,Traverse AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36001,(GUZZLER) (TURBO),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3056,0,14,Maserati,Biturbo 425,N,false,0,72,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.2308,0.0,Subcompact Cars,1987,-9250,T,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,472,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30560,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +21.974,6.242500000000001,0.0,0.0,13,13.8324,10,9.9496,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,15.2841,12,11.5699,0.0,0.0,0.0,8,6.2,All-Wheel Drive,493,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5332,14,14.4449,0.0,0.0,0.0,0,0,30561,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.4996,20.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,FFV,E85,310,, +21.974,6.242500000000001,0.0,0.0,13,13.8324,10,9.9496,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,15.2841,12,11.5699,0.0,0.0,0.0,8,6.2,All-Wheel Drive,494,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5332,14,14.4449,0.0,0.0,0.0,0,0,30562,0,0,GMC,Yukon Denali 1500 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.4996,20.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,522,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30563,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2011,-7750,,,,,FFV,E85,320,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,523,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30564,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2011,-7750,,,,,FFV,E85,320,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,527,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,30565,0,0,Chevrolet,Suburban 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6,0.0,21.2,0.0,Sport Utility Vehicle - 4WD,2011,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,528,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,30566,0,0,GMC,Yukon XL 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6,0.0,21.2,0.0,Sport Utility Vehicle - 4WD,2011,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,All-Wheel Drive,33,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30567,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,14,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30568,0,0,Hyundai,Tucson 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.7069,0.0,39.0985,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,16,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30569,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36005,(GUZZLER) (TURBO),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3057,0,14,Maserati,Biturbo 425,N,false,0,72,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Subcompact Cars,1987,-7750,T,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,19,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30570,0,0,Kia,Sportage 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1,0.0,38.8419,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,21,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30571,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,402,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30572,0,41,Mercedes-Benz,ML350 4matic,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.6,0.0,27.1,0.0,Sport Utility Vehicle - 4WD,2011,-5750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,405,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30573,0,41,Mercedes-Benz,ML550 4matic,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,25.3,0.0,Sport Utility Vehicle - 4WD,2011,-8000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,412,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30574,0,14,Mercedes-Benz,R350 4matic,N,false,0,148,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.2,0.0,26.4,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,421,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30575,0,16,Mercedes-Benz,GL450 4matic,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.7,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2011,-8000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,382,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30576,0,0,Infiniti,QX56 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.7,0.0,27.1299,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0573,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,3,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.1776,0,0.0,0.0,0.0,0.0,0,0,30577,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.4629,0.0,31.6418,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,7,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30578,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.2815,0.0,29.939,0.0,Sport Utility Vehicle - 4WD,2011,-5750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30579,0,37,Volvo,XC70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6521,0.0,31.2237,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,T,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20020,(NO-CAT),-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3058,0,12,Mercedes-Benz,190D 2.5,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1987,1500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30580,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6521,0.0,31.2237,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,13.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.159,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,30,,-1,3450,0,Regular,Regular Gasoline,-1,-1,21,20.7,0,0.0,0.0,0.0,0.0,0,0,30581,0,0,Volvo,XC90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8,0.0,27.2,0.0,Sport Utility Vehicle - 4WD,2011,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,41,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30582,0,0,Volvo,XC90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,30.4,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30583,0,37,Volvo,XC70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2442,0.0,33.3068,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30584,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2442,0.0,33.3068,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,19.442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4413,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,40,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.5235,0,0.0,0.0,0.0,0.0,0,0,30585,0,0,Volkswagen,Tiguan 4motion,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0,0.0,34.9,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,255,,-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30586,0,14,Saab,9-5 Sedan AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5199,0.0,37.1185,0.0,Midsize Cars,2010,-3000,,,T,,,,,, +9.690534,0.0,0.0,0.0,31,31.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,33.5194,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,8,,-1,1600,0,Regular,Regular Gasoline,-1,-1,37,36.7,0,0.0,0.0,0.0,0.0,10,69,30587,0,0,Honda,CR-Z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,40.3,0.0,52.2,0.0,Two Seaters,2011,4000,,,,,Hybrid,,,101V Ni-MH, +8.89947,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,9,,-1,1500,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,10,69,30588,0,0,Honda,CR-Z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),46.3474,0.0,55.6446,0.0,Two Seaters,2011,4500,,,,,Hybrid,,,101V Ni-MH, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,60,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30589,0,0,Porsche,911 GT2 RS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0603,0.0,32.2993,0.0,Two Seaters,2011,-3750,,,T,,,,,, +13.631265,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20020,(NO-CAT),-1,2100,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3059,0,12,Mercedes-Benz,190D 2.5,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Subcompact Cars,1987,1500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,6,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30590,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7715,0.0,23.6523,0.0,Minicompact Cars,2011,-11250,G,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,10,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30591,6,0,MINI,Cooper,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9686,0.0,51.6393,0.0,Minicompact Cars,2011,2250,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,11,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,30592,6,0,MINI,Cooper,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.053,0.0,53.004,0.0,Minicompact Cars,2011,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,14,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30593,6,0,MINI,Cooper Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.7991,0.0,50.0457,0.0,Minicompact Cars,2011,2000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,15,,-1,1950,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30594,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.75,0.0,49.9494,0.0,Minicompact Cars,2011,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,16,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30595,6,0,MINI,Cooper S,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9945,0.0,47.8478,0.0,Minicompact Cars,2011,1500,,,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,17,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30596,6,0,MINI,Cooper S,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.5014,0.0,50.2436,0.0,Minicompact Cars,2011,2000,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,20,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30597,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9945,0.0,47.8478,0.0,Minicompact Cars,2011,1500,,,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30598,6,0,MINI,Cooper S Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.5014,0.0,50.2436,0.0,Minicompact Cars,2011,2000,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,23,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30599,6,0,MINI,John Cooper Works,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9847,0.0,46.5057,0.0,Minicompact Cars,2011,1250,,,T,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3312,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,306,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1985,0,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20022,"(DSL,TRBO) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3060,0,12,Mercedes-Benz,190D 2.5 Turbo,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1111,0.0,41.0256,0.0,Subcompact Cars,1987,500,,,T,,Diesel,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30600,6,0,MINI,John Cooper Works Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9847,0.0,46.5057,0.0,Minicompact Cars,2011,1250,,,T,,,,,, +0.06634,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,251.07142857142858,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,10,RNG=170,-1,1100,0,CNG,Natural Gas,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30601,0,6,Honda,Civic CNG,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,31.0,0.0,50.5,0.0,Subcompact Cars,2011,6500,,,,,CNG,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,11,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30602,12,12,Honda,Civic,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,48.6,0.0,Subcompact Cars,2011,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30603,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,33.2814,0.0,51.6158,0.0,Subcompact Cars,2011,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9351,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,13,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.1,0,0.0,0.0,0.0,0.0,0,0,30604,12,12,Honda,Civic,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,40.5,0.0,Subcompact Cars,2011,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30605,11,11,Lexus,IS 250/IS 250C,N,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0032,0.0,42.0414,0.0,Subcompact Cars,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,28,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30606,11,11,Lexus,IS 250/IS 250C,N,false,77,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3206,0.0,38.437,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,29,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30607,0,11,Lexus,IS 250 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7899,0.0,37.1903,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,33,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30608,11,11,Lexus,IS 350/IS 350C,Y,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8373,0.0,37.9116,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,34,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30609,0,11,Lexus,IS 350 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3061,0,11,Mercedes-Benz,190E 2.3,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1987,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,40,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30610,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6214,0.0,32.0888,0.0,Subcompact Cars,2011,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30611,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.0642,0.0,27.5862,0.0,Subcompact Cars,2011,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,21,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30612,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6372,0.0,27.9329,0.0,Subcompact Cars,2011,-8000,G,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,25,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30613,5,0,Maserati,GranTurismo Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0943,0.0,27.2851,0.0,Subcompact Cars,2011,-8000,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,14,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30614,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.4,0.0,30.2,0.0,Subcompact Cars,2011,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,15,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30615,0,8,Mazda,RX-8,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2,0.0,32.1,0.0,Subcompact Cars,2011,-3750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,12,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,80,30616,0,0,MINI,Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.7991,0.0,50.0457,0.0,Subcompact Cars,2011,2000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,13,,-1,1950,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,80,30617,0,0,MINI,Clubman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.75,0.0,49.9494,0.0,Subcompact Cars,2011,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,18,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,80,30618,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9945,0.0,47.8478,0.0,Subcompact Cars,2011,1500,,,T,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,80,30619,0,0,MINI,Cooper S Clubman,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.5014,0.0,50.2436,0.0,Subcompact Cars,2011,2000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3062,0,11,Mercedes-Benz,190E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1987,-2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,22,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,80,30620,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9847,0.0,46.5057,0.0,Subcompact Cars,2011,1250,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,21,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,30621,0,0,Scion,xD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,47.2,0.0,Subcompact Cars,2011,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,22,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,84,30622,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2011,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,84,30623,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,37.4777,0.0,48.8975,0.0,Subcompact Cars,2011,3000,,,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,20,,-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,84,30624,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.6671,0.0,50.6381,0.0,Subcompact Cars,2011,3500,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30625,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.4,0.0,50.8,0.0,Midsize Cars,2011,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,3,,-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,30626,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),30.6,0.0,50.4,0.0,Midsize Cars,2011,2250,,,T,,,,,, +8.02051,0.0,0.0,0.0,40,40.1931,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,41.4927,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,2,,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,43.2,0,0.0,0.0,0.0,0.0,0,0,30627,0,10,Honda,Civic Hybrid,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6,0.0,65.0,0.0,Compact Cars,2011,5250,,,,,Hybrid,,,158V Ni-MH, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,16,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30628,12,0,Honda,Accord Coupe,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0517,0.0,44.6545,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30629,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.4659,0.0,46.2288,0.0,Compact Cars,2011,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3063,0,11,Mercedes-Benz,190E 2.3-16,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Subcompact Cars,1987,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30630,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,36.6,0.0,Compact Cars,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,25,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30631,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,41.2,0.0,Compact Cars,2011,0,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,30,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30632,0,9,Lexus,GS 450h,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AV-S6),27.9,0.0,35.3494,0.0,Compact Cars,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +15.689436,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,0.0,15,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,24,FFV,-1,2850,3050,Premium or E85,Premium Gasoline,-1,-1,26,0.0,19,0.0,0.0,0.0,0.0,0,0,30633,0,12,Mercedes-Benz,C300,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.1472,16.4,35.6975,26.4,Compact Cars,2011,-2250,,,,,FFV,E85,340,, +16.4805,4.994,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,26,FFV,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,30634,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.1,16.0,34.9,25.6,Compact Cars,2011,-3000,,,,,FFV,E85,330,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,-1,2250,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,87,30635,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2011,750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,,-1,1950,0,Premium,Premium Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,87,30636,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.75,0.0,49.9494,0.0,Compact Cars,2011,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,34,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30637,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),32.2,0.0,45.3,0.0,Compact Cars,2011,1250,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30638,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2011,1500,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,36,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30639,0,16,MINI,Cooper S Countryman All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),30.0,0.0,42.8,0.0,Compact Cars,2011,500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3064,0,11,Mercedes-Benz,190E 2.3-16,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1987,-3750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,37,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30640,0,16,MINI,Cooper S Countryman All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.7,0.0,43.7,0.0,Compact Cars,2011,1250,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,90,30641,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.7362,0.0,43.2617,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,24,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,90,30642,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.896,0.0,42.904,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30643,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.1254,0.0,46.3629,0.0,Compact Cars,2011,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30644,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.516,0.0,45.1901,0.0,Compact Cars,2011,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30645,0,16,Suzuki,SX4 Sport/Anniversary Edition,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.841,0.0,44.708,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30646,0,16,Suzuki,SX4 Sport/Anniversary Edition,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.4352,0.0,41.5661,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,61,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30647,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.8696,0.0,44.0818,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.9476,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7199,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,62,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.1756,0,0.0,0.0,0.0,0.0,0,0,30648,0,13,Suzuki,Kizashi,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2794,0.0,42.3947,0.0,Compact Cars,2011,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,63,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30649,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7092,0.0,43.0035,0.0,Compact Cars,2011,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3065,0,12,Mercedes-Benz,190E 2.6,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Subcompact Cars,1987,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,64,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30650,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8524,0.0,41.3959,0.0,Compact Cars,2011,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,22.5314,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2518,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,65,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.6233,0,0.0,0.0,0.0,0.0,0,0,30651,0,13,Suzuki,Kizashi S AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7062,0.0,41.5858,0.0,Compact Cars,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.0712,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7653,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,66,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.1079,0,0.0,0.0,0.0,0.0,0,0,30652,0,13,Suzuki,Kizashi AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.0744,0.0,40.8321,0.0,Compact Cars,2011,1000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,63,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,15,94,30653,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),39.0899,0.0,59.4381,0.0,Compact Cars,2011,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,30654,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),39.0899,0.0,59.4381,0.0,Compact Cars,2011,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,66,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,15,94,30655,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7215,0.0,59.5361,0.0,Compact Cars,2011,3250,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,67,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,30656,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7215,0.0,59.5361,0.0,Compact Cars,2011,3250,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,21,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30657,0,13,Acura,TL 2WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),22.6,0.0,36.8,0.0,Midsize Cars,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,28,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30658,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.4,0.0,Midsize Cars,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,29,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30659,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S5),21.2,0.0,34.3,0.0,Midsize Cars,2011,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,78,3066,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,20,20.2974,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7923,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,535,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.1341,0,0.0,0.0,0.0,0.0,0,0,30660,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6583,0.0,42.3339,0.0,Midsize Cars,2011,-500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,537,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30661,0,14,BMW,535i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),24.9558,0.0,40.2256,0.0,Midsize Cars,2011,-1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,552,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30662,0,14,BMW,550i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4499,0.0,33.0499,0.0,Midsize Cars,2011,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,31,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30663,0,13,Lexus,GS 350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.703,0.0,36.5109,0.0,Midsize Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,32,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30664,0,13,Lexus,GS 350 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3982,0.0,34.7494,0.0,Midsize Cars,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,35,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30665,0,13,Lexus,GS 460,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),21.0489,0.0,34.0499,0.0,Midsize Cars,2011,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.8967,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1435,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,11,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.1674,0,0.0,0.0,0.0,0.0,0,0,30666,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9747,0.0,35.2605,0.0,Midsize Cars,2011,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,15,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30667,0,14,Mercedes-Benz,E350,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.583,0.0,34.5993,0.0,Midsize Cars,2011,-3000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,-1,2300,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30668,0,14,Mercedes-Benz,E350 Bluetec,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.7,0.0,47.1,0.0,Midsize Cars,2011,500,,,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,331,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30669,0,13,Mitsubishi,Galant,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),26.7624,0.0,42.2247,0.0,Midsize Cars,2011,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,78,3067,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30670,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.3032,0.0,48.6653,0.0,Midsize Cars,2011,2750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30671,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.8,0.0,43.2,0.0,Midsize Cars,2011,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,21,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30672,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.1,0.0,42.6998,0.0,Midsize Cars,2011,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,22,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30673,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7,0.0,39.6,0.0,Midsize Cars,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30674,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Auto(AV-S6),24.3492,0.0,36.5435,0.0,Midsize Cars,2011,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,20.2974,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7923,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,541,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.1341,0,0.0,0.0,0.0,0.0,0,0,30675,0,10,BMW,535i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6583,0.0,42.3339,0.0,Large Cars,2011,-500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,543,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30676,0,10,BMW,535i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),22.805,0.0,37.7831,0.0,Large Cars,2011,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,554,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30677,0,10,BMW,550i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),18.9514,0.0,31.2274,0.0,Large Cars,2011,-4750,G,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,555,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30678,0,10,BMW,550i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),18.5914,0.0,30.548,0.0,Large Cars,2011,-5750,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,14.3823,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9006,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.5023,0,0.0,0.0,0.0,0.0,0,0,30679,0,14,BMW,750Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8132,0.0,29.8378,0.0,Large Cars,2011,-5750,G,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,78,3068,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0256,0.0,Subcompact Cars,1987,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,14.3823,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9006,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,754,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.5023,0,0.0,0.0,0.0,0.0,0,0,30680,0,14,BMW,Alpina B7 SWB,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8132,0.0,29.8378,0.0,Large Cars,2011,-5750,G,,T,,,,,, +19.381068,0.0,0.0,0.0,14,14.3823,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9006,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,755,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.5023,0,0.0,0.0,0.0,0.0,0,0,30681,0,14,BMW,Alpina B7 LWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8132,0.0,29.8378,0.0,Large Cars,2011,-5750,G,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,760,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30682,0,14,BMW,760Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),15.6203,0.0,26.7495,0.0,Large Cars,2011,-8000,G,,T,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,19.7288,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,24.1152,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,72,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,33.1135,17,0.0,0.0,0.0,0.0,0,0,30683,0,21,Ford,Crown Victoria FFV,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7288,14.3321,33.1135,23.9737,Large Cars,2011,-2500,,,,,FFV,E85,270,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30684,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4729,0.0,46.8463,0.0,Large Cars,2011,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30685,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.7223,0.0,47.7787,0.0,Large Cars,2011,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,24,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30686,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3,0.0,42.6,0.0,Large Cars,2011,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,24,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30687,0,17,Hyundai,Equus,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.2979,0.0,33.2892,0.0,Large Cars,2011,-4750,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,19.7288,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,24.1152,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,74,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,33.1135,17,0.0,0.0,0.0,0.0,0,0,30688,0,21,Mercury,Grand Marquis FFV,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7288,14.3321,33.1135,23.9737,Large Cars,2011,-2500,,,,,FFV,E85,270,, +17.337486000000002,5.348574,0.0,0.0,16,19.7288,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,24.1152,14,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,75,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,33.1135,17,0.0,0.0,0.0,0.0,0,0,30689,0,21,Lincoln,Town Car FFV,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.7288,14.3321,33.1135,23.9737,Large Cars,2011,-2500,,,,,FFV,E85,270,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,11,81,3069,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,15,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30690,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9031,0.0,27.3597,0.0,Large Cars,2011,-8000,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,16,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30691,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5878,0.0,26.42,0.0,Large Cars,2011,-9500,G,,,,,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,62,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,30692,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),39.0899,0.0,59.4381,0.0,Small Station Wagons,2011,3250,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,17,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30693,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.0,0.0,Small Station Wagons,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,91,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30694,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,37.3,0.0,Small Station Wagons,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,111,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30695,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,38.3,0.0,Small Station Wagons,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,113,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30696,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Small Station Wagons,2011,-1000,,,,,,,,, +12.19557,0.0,0.0,0.0,25,24.5076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.298,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,122,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,31.7109,0,0.0,0.0,0.0,0.0,14,95,30697,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.4426,0.0,44.6501,0.0,Small Station Wagons,2011,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,22.5724,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0726,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,124,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,28.9984,0,0.0,0.0,0.0,0.0,14,95,30698,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.7626,0.0,40.6721,0.0,Small Station Wagons,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,51,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30699,0,8,Suzuki,SX4 AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1022,0.0,41.7078,0.0,Small Station Wagons,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3310,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,307,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1985,1000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3070,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,48.7179,0.0,Subcompact Cars,1987,3000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,52,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30700,0,8,Suzuki,SX4 AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9299,0.0,41.2658,0.0,Small Station Wagons,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30701,0,8,Suzuki,SX4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0966,0.0,42.3461,0.0,Small Station Wagons,2011,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30702,0,8,Suzuki,SX4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.6378,0.0,41.5661,0.0,Small Station Wagons,2011,1500,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,65,,-1,1800,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,30703,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),37.6,0.0,56.2,0.0,Small Station Wagons,2011,3000,,,T,,Diesel,,,, +11.236239000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,68,,-1,1750,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,30704,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7215,0.0,59.5361,0.0,Small Station Wagons,2011,3250,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,99,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30705,0,0,Ford,Ranger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.2925,0.0,32.8497,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,100,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30706,0,0,Ford,Ranger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.4,0.0,37.7,0.0,Small Pickup Trucks 2WD,2011,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,106,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30707,0,0,Ford,Ranger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.8,0.0,27.2,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,107,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30708,0,0,Ford,Ranger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.4856,0.0,28.4153,0.0,Small Pickup Trucks 2WD,2011,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,84,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30709,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.9208,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3071,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1987,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,85,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30710,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,30.6,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8471,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,86,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,30711,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2011,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,14.4622,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.7998,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,104,Part-time 4-Wheel Drive,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,17.8134,0,0.0,0.0,0.0,0.0,0,0,30712,0,0,Ford,Ranger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9171,0.0,24.5903,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,141,Part-time 4-Wheel Drive,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30713,0,0,Ford,Ranger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.5177,0.0,26.2,0.0,Small Pickup Trucks 4WD,2011,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,284,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30714,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.2,0.0,25.3,0.0,Standard Pickup Trucks 2WD,2011,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,61,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30715,0,0,Toyota,Tundra 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4406,0.0,27.7513,0.0,Standard Pickup Trucks 2WD,2011,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,67,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30716,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2875,0.0,25.4714,0.0,Standard Pickup Trucks 2WD,2011,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,285,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30717,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8881,0.0,23.3079,0.0,Standard Pickup Trucks 4WD,2011,-7750,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30718,0,0,Nissan,Titan 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.6,11.4,24.9,18.4,Standard Pickup Trucks 2WD,2011,-6250,,,,,FFV,E85,310,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,294,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30719,0,0,Nissan,Titan 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8635,10.9181,23.4666,17.337,Standard Pickup Trucks 4WD,2011,-7750,,,,,FFV,E85,280,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,3072,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,62,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30720,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4028,0.0,26.5045,0.0,Standard Pickup Trucks 4WD,2011,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,68,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30721,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.544,0.0,23.481,0.0,Standard Pickup Trucks 4WD,2011,-7750,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,70,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,13,0.0,0.0,0.0,0.0,0,0,30722,0,0,Toyota,Tundra 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3355,11.8437,23.9789,17.5528,Standard Pickup Trucks 4WD,2011,-6250,,,,,FFV,E85,290,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,131,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,30723,0,0,Ford,E350 Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6,0.0,18.6,0.0,"Vans, Cargo Type",2011,-11000,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,212,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30724,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,11.8,23.0,16.7,"Vans, Cargo Type",2011,-6250,,,,,FFV,E85,370,, +25.336022,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,213,,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30725,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.8397,11.3935,21.6412,16.2674,"Vans, Cargo Type",2011,-9250,,,,,FFV,E85,330,, +25.336022,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,215,,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,30726,0,0,Ford,E350 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,11.1,21.2,15.9,"Vans, Cargo Type",2011,-9250,,,,,FFV,E85,330,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,218,,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30727,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,11.5,21.8,16.4,"Vans, Cargo Type",2011,-7750,,,,,FFV,E85,330,, +21.974,6.806822,0.0,0.0,13,0.0,10,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,220,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30728,0,0,Ford,E150 Van FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.3,11.8,23.0,16.7,"Vans, Cargo Type",2011,-6250,,,,,FFV,E85,365,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,132,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,30729,0,0,Ford,E350 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,11.8,0.0,17.7,0.0,"Vans, Passenger Type",2011,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,3073,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,0,,,T,,,,,, +25.336022,7.4910000000000005,0.0,0.0,11,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,216,,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,15,0.0,11,0.0,0.0,0.0,0.0,0,0,30730,0,0,Ford,E350 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9484,10.7,20.6,15.5,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,330,, +25.336022,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,0.0,10,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,219,,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,15,0.0,12,0.0,0.0,0.0,0.0,0,0,30731,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4,11.1,21.2,15.9,"Vans, Passenger Type",2011,-9250,,,,,FFV,E85,330,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,221,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,0.0,12,0.0,0.0,0.0,0.0,0,0,30732,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.5,11.2,21.9,15.9,"Vans, Passenger Type",2011,-7750,,,,,FFV,E85,330,, +17.337486000000002,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3723,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.6144,0,0.0,0.0,0.0,0.0,0,0,30733,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,16.8899,12,12.3272,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,19.3723,14,14.2642,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,53,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,23.6144,18,17.6548,0.0,0.0,0.0,0,0,30734,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,15.4,34.0,24.6,Sport Utility Vehicle - 2WD,2011,-2500,,,,,FFV,E85,290,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,111,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,30735,0,0,Ford,Expedition 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0796,12.5346,27.2971,20.0782,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,340,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,174,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30736,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,206,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30737,0,0,Ford,Escape Hybrid FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2011,3500,,,,,Hybrid,,,330V Ni-MH, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,581,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,30738,0,0,Ford,Escape FWD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2011,-1000,,,,,FFV,E85,280,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,922,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30739,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0377,0.0,38.7171,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26513,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,3074,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,36.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3723,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,50,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.6144,0,0.0,0.0,0.0,0.0,0,0,30740,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,32.3,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,16.8899,12,12.3272,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,19.3723,14,14.2642,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,54,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,23.6144,18,17.6548,0.0,0.0,0.0,0,0,30741,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,15.4,34.0,24.6,Sport Utility Vehicle - 2WD,2011,-2500,,,,,FFV,E85,290,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,34,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30742,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.8,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,20.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,21.1358,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,20,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.8298,0,0.0,0.0,0.0,0.0,0,0,30743,0,0,Hyundai,Veracruz 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,32.5,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +21.974,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,112,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30744,0,0,Lincoln,Navigator 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6838,11.6145,24.1556,17.6533,Sport Utility Vehicle - 4WD,2011,-6250,,,,,FFV,E85,310,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,113,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,0.0,15,0.0,0.0,0.0,0.0,0,0,30745,0,0,Lincoln,Navigator 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1223,12.5666,27.3941,20.1594,Sport Utility Vehicle - 2WD,2011,-5250,,,,,FFV,E85,340,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,12,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30746,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0493,0.0,33.1807,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,182,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,30747,0,0,Mazda,Tribute FWD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2011,-1000,,,,,FFV,E85,280,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,185,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30748,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,222,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30749,0,0,Mazda,Tribute FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2499,0.0,39.3,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26513,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,82,3075,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,39.7436,0.0,Subcompact Cars,1987,1500,,,,,,,,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,602,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30750,0,0,Mazda,Tribute Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2011,3500,,,,,Hybrid,,,330V Ni-MH, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,3,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30751,0,29,Mercedes-Benz,GLK350,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.0,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2011,-4750,,,,,,,,, +15.689436,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,184,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,19,0.0,0.0,0.0,0.0,0,0,30752,0,0,Mercury,Mariner FWD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2011,-1000,,,,,FFV,E85,280,, +10.283832,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,516,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30753,0,0,Mercury,Mariner Hybrid FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2011,3500,,,,,Hybrid,,,330V Ni-MH, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,822,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30754,0,0,Mercury,Mariner FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0377,0.0,38.7171,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,211,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30755,0,0,Mitsubishi,Outlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.7306,0.0,39.5312,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,213,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30756,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5661,0.0,36.4421,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,221,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30757,0,0,Mitsubishi,Outlander Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2,0.0,43.2,0.0,Sport Utility Vehicle - 2WD,2011,1500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,222,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30758,0,0,Mitsubishi,Outlander Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.5175,0.0,42.9733,0.0,Sport Utility Vehicle - 2WD,2011,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30759,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.5443,0.0,39.2213,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26513,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,82,3076,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,282,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30760,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4498,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2011,-6250,,,,,,,,, +21.974,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,291,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,13,0.0,0.0,0.0,0.0,0,0,30761,0,0,Nissan,Armada 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,11.3,25.7,18.6,Sport Utility Vehicle - 2WD,2011,-6250,,,,,FFV,E85,310,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,91,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30762,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1181,0.0,35.8103,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,93,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30763,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0663,0.0,34.2831,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,42,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30764,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,19.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6762,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,44,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,24.9,0,0.0,0.0,0.0,0.0,0,0,30765,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30766,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,33.6,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,47,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30767,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2743,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,54,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,21.1,0,0.0,0.0,0.0,0.0,0,0,30768,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.7,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,55,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30769,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,3077,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1987,-4750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,59,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30770,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7,0.0,27.5,0.0,Sport Utility Vehicle - 2WD,2011,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,65,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30771,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9164,0.0,25.5346,0.0,Sport Utility Vehicle - 2WD,2011,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,45,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30772,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,6.2,All-Wheel Drive,536,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30773,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2011,-7750,,,,,FFV,E85,320,, +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5784,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,51,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,22.4445,0,0.0,0.0,0.0,0.0,0,0,30774,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,11.8717,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.5784,14,13.6837,0.0,0.0,0.0,6,3.0,All-Wheel Drive,55,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,22,22.4445,17,16.8219,0.0,0.0,0.0,0,0,30775,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,14.8,32.3,23.4,Sport Utility Vehicle - 4WD,2011,-2500,,,,,FFV,E85,290,, +21.974,6.806822,0.0,0.0,13,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,0.0,11,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,110,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30776,0,0,Ford,Expedition 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.6838,11.6145,24.1556,17.6533,Sport Utility Vehicle - 4WD,2011,-6250,,,,,FFV,E85,310,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,166,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30777,0,0,Ford,Escape Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8484,0.0,38.099,0.0,Sport Utility Vehicle - 4WD,2011,2500,,,,,Hybrid,,,330V Ni-MH, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,175,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,30778,0,0,Ford,Escape 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7501,16.1336,31.6053,23.3296,Sport Utility Vehicle - 4WD,2011,-1750,,,,,FFV,E85,250,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,183,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30779,0,0,Ford,Escape 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2006,0.0,36.286,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49060,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,3078,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1987,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5784,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,52,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,22.4445,0,0.0,0.0,0.0,0.0,0,0,30780,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,11.8717,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.5784,14,13.6837,0.0,0.0,0.0,6,3.0,All-Wheel Drive,56,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,22,22.4445,17,16.8219,0.0,0.0,0.0,0,0,30781,0,0,GMC,Terrain AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,14.8,32.3,23.4,Sport Utility Vehicle - 4WD,2011,-2500,,,,,FFV,E85,290,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,35,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30782,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.3044,0.0,37.6237,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,19.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,20.498,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,19,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.421,0,0.0,0.0,0.0,0.0,0,0,30783,0,0,Hyundai,Veracruz 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,31.1,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,14.5869,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4862,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,75,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,19.6064,0,0.0,0.0,0.0,0.0,0,0,30784,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0619,0.0,27.6006,0.0,Sport Utility Vehicle - 4WD,2011,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,18.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.5269,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,76,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,18.8,0,0.0,0.0,0.0,0.0,0,0,30785,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,27.7,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,1,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30786,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6318,0.0,30.347,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,2,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30787,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.2035,0.0,24.5596,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,S,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,3,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30788,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1336,0.0,25.5096,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,4,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30789,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4115,0.0,23.6028,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,S,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3079,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,5,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30790,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4827,0.0,24.7928,0.0,Sport Utility Vehicle - 4WD,2011,-8000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,6,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30791,0,0,Land Rover,LR4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3164,0.0,23.8342,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,58,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30792,0,0,Lexus,GX 460,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2011,-5750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,64,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30793,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,24.1491,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,13,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30794,0,0,Mazda,CX-9 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4509,0.0,30.5026,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,170,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30795,0,0,Mazda,Tribute Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8484,0.0,38.099,0.0,Sport Utility Vehicle - 4WD,2011,2500,,,,,Hybrid,,,330V Ni-MH, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,179,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,30796,0,0,Mazda,Tribute 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7,16.1,31.8,23.5,Sport Utility Vehicle - 4WD,2011,-1750,,,,,FFV,E85,250,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,187,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30797,0,0,Mazda,Tribute 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.4,0.0,37.0,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,4,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30798,0,29,Mercedes-Benz,GLK350 4matic,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.8,0.0,28.9,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,403,,-1,2800,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30799,0,0,Mercedes-Benz,ML350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.049,0.0,34.4,0.0,Sport Utility Vehicle - 4WD,2011,-2000,,,T,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3321,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,308,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1985,-4250,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3080,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,33.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,20.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8787,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,404,,-1,2750,0,Premium,Premium Gasoline,-1,-1,24,24.1,0,0.0,0.0,0.0,0.0,0,0,30800,0,0,Mercedes-Benz,ML450 Hybrid 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.9,0.0,33.7,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,Hybrid,,,288V Ni-MH, +27.4675,0.0,0.0,0.0,11,10.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.3446,0,0.0,0.0,0.0,0.0,8,6.3,4-Wheel Drive,406,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.2,0,0.0,0.0,0.0,0.0,0,0,30801,0,41,Mercedes-Benz,ML63 AMG,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 7-spd,12.8,0.0,19.7,0.0,Sport Utility Vehicle - 4WD,2011,-13250,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,413,,-1,2950,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30802,0,0,Mercedes-Benz,R350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5,0.0,33.3,0.0,Sport Utility Vehicle - 4WD,2011,-2750,,,T,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,18.6422,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,422,,-1,3100,0,Diesel,Diesel,-1,-1,21,21.3493,0,0.0,0.0,0.0,0.0,0,0,30803,0,0,Mercedes-Benz,GL350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.1,0.0,31.5,0.0,Sport Utility Vehicle - 4WD,2011,-3500,,,T,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,423,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30804,0,16,Mercedes-Benz,GL550 4matic,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.3,0.0,23.2,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,435,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,30805,0,49,Mercedes-Benz,G550,N,false,0,124,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.0,0.0,20.1,0.0,Sport Utility Vehicle - 4WD,2011,-11250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,10.8763,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,11.7837,0,0.0,0.0,0.0,0.0,8,5.4,4-Wheel Drive,439,,-1,5050,0,Premium,Premium Gasoline,-1,-1,13,13.1217,0,0.0,0.0,0.0,0.0,0,0,30806,0,0,Mercedes-Benz,G55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,13.2,0.0,18.7,0.0,Sport Utility Vehicle - 4WD,2011,-13250,,,,S,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,168,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30807,0,0,Mercury,Mariner Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8484,0.0,38.099,0.0,Sport Utility Vehicle - 4WD,2011,2500,,,,,Hybrid,,,330V Ni-MH, +16.4805,5.348574,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,177,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,30808,0,0,Mercury,Mariner 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7501,16.1336,31.6053,23.3296,Sport Utility Vehicle - 4WD,2011,-1750,,,,,FFV,E85,250,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,186,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30809,0,0,Mercury,Mariner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2006,0.0,36.286,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3081,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,212,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30810,0,0,Mitsubishi,Outlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),27.7,0.0,37.7,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,214,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30811,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3017,0.0,34.2029,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,224,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30812,0,0,Mitsubishi,Outlander Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.4,0.0,41.2,0.0,Sport Utility Vehicle - 4WD,2011,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,82,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30813,0,0,Nissan,Rogue AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.1394,0.0,36.7669,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,283,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30814,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0924,0.0,24.1925,0.0,Sport Utility Vehicle - 4WD,2011,-7750,,,,,,,,, +23.534154,6.806822,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,0.0,11,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,292,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,0.0,13,0.0,0.0,0.0,0.0,0,0,30815,0,0,Nissan,Armada 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1498,11.4,24.1491,18.0,Sport Utility Vehicle - 4WD,2011,-7750,,,,,FFV,E85,310,, +17.337486000000002,0.0,0.0,0.0,16,16.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,1,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.5,0,0.0,0.0,0.0,0.0,0,0,30816,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.3033,0.0,32.3,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,2,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,21.5,0,0.0,0.0,0.0,0.0,0,0,30817,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5077,0.0,29.8656,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,14,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30818,0,34,Subaru,Forester AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,37.6,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30819,0,34,Subaru,Forester AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S4),26.4,0.0,37.0378,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,11,81,3082,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.2222,0.0,42.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,17,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30820,0,34,Subaru,Forester AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8,0.0,32.8,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,19,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30821,0,43,Subaru,Tribeca AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,94,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,30822,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4214,0.0,32.2765,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,43,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30823,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.7876,0.0,38.4247,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,46,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30824,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,31.0,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,48,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30825,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.7,0.0,35.7494,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +11.75609,0.0,0.0,0.0,28,27.749,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.7244,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,51,,-1,1950,0,Regular,Regular Gasoline,-1,-1,28,27.6943,0,0.0,0.0,0.0,0.0,0,0,30826,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.3879,0.0,37.8625,0.0,Sport Utility Vehicle - 4WD,2011,2250,,,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,56,Full time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30827,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,57,Part time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30828,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,60,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30829,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.7,0.0,25.7,0.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3083,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,48.7179,0.0,Subcompact Cars,1987,3000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,63,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30830,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.7491,0.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,66,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30831,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.9,0.0,24.5,0.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,0.0,9,0.0,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,0.0,10,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,69,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,0.0,12,0.0,0.0,0.0,0.0,0,0,30832,0,0,Toyota,Sequoia 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3536,11.0429,24.1057,17.2178,Sport Utility Vehicle - 4WD,2011,-7750,,,,,FFV,E85,260,, +17.337486000000002,0.0,0.0,0.0,16,16.4121,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7889,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,69,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.8299,0,0.0,0.0,0.0,0.0,0,0,30833,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.3,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,19,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30834,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,42.4,0.0,Midsize Cars,2011,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.656,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9173,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,20,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,30.5382,0,0.0,0.0,0.0,0.0,0,0,30835,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),27.5062,0.0,42.9266,0.0,Midsize Cars,2011,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,20.6647,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,25.2683,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,52,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,34.7228,0,0.0,0.0,0.0,0.0,0,0,30836,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6647,0.0,34.7228,0.0,Subcompact Cars,2011,-3750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,23.7052,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,28.2985,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,51,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,37.08,0,0.0,0.0,0.0,0.0,0,0,30837,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.7052,0.0,37.08,0.0,Subcompact Cars,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,22.2002,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,26.6154,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,53,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,35.1628,0,0.0,0.0,0.0,0.0,0,0,30838,7,0,Infiniti,G37x Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.2002,0.0,35.1628,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,26,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30839,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.0,0.0,43.8,0.0,Subcompact Cars,2011,1500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,3084,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1987,2750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30840,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.4222,0.0,44.7387,0.0,Subcompact Cars,2011,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,44,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30841,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9267,0.0,37.973,0.0,Subcompact Cars,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,43,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30842,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.7,0.0,38.0301,0.0,Subcompact Cars,2011,0,,,,,,,,, +8.02051,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3,,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,30843,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),54.6039,0.0,60.9338,0.0,Compact Cars,2011,5250,,,,,Hybrid,,,101V Ni-MH, +8.02051,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,4,,-1,1350,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,0,0,30844,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AV-S7),54.3153,0.0,60.8956,0.0,Compact Cars,2011,5250,,,,,Hybrid,,,101V Ni-MH, +9.404872000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,-1,1550,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30845,0,12,Lexus,HS 250h,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),47.163,0.0,47.4081,0.0,Compact Cars,2011,4250,,,,,Hybrid,,,245V Ni-MH, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,74,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30846,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,48.6,0.0,Compact Cars,2011,2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,75,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30847,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.8,0.0,49.7,0.0,Compact Cars,2011,3000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,78,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30848,0,12,Toyota,Corolla,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.3,0.0,42.2,0.0,Compact Cars,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,79,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30849,0,12,Toyota,Corolla,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S5),27.6,0.0,42.6,0.0,Compact Cars,2011,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,3085,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,30,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30850,0,14,Acura,RL,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,33.6,0.0,Midsize Cars,2011,-3000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,131,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30851,0,14,Infiniti,G25,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),25.5405,0.0,40.8075,0.0,Midsize Cars,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,132,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30852,0,14,Infiniti,G25x,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),24.5397,0.0,37.98,0.0,Midsize Cars,2011,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,24,SIDI,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30853,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.1246,0.0,48.2663,0.0,Midsize Cars,2011,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,30854,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.8,0.0,Midsize Cars,2011,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,25,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30855,0,15,Lexus,ES 350,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),23.8,0.0,38.3,0.0,Midsize Cars,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,36,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30856,0,14,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2011,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,38,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30857,0,14,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2011,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,37,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30858,0,14,Lexus,LS 460 L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2011,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,39,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30859,0,14,Lexus,LS 460 L AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2011,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,3086,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1987,0,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,18.5231,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4141,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,41,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,23.3243,0,0.0,0.0,0.0,0.0,0,0,30860,0,10,Lexus,LS 600h L,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S8),24.7,0.0,30.3,0.0,Midsize Cars,2011,-3000,,,,,Hybrid,,,288V Ni-MH, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30861,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.7042,0.0,45.6773,0.0,Midsize Cars,2011,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30862,0,15,Nissan,Altima,N,false,0,101,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.1153,0.0,37.4806,0.0,Midsize Cars,2011,0,,,,,,,,, +9.976196,0.0,0.0,0.0,33,33.0977,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,33.1881,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,31,,-1,1650,0,Regular,Regular Gasoline,-1,-1,33,33.2992,0,0.0,0.0,0.0,0.0,0,0,30863,0,10,Nissan,Altima Hybrid,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.8,0.0,46.6,0.0,Midsize Cars,2011,3750,,,,,Hybrid,,,245V Ni-MH, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,501,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,96,30864,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8799,0.0,38.0,0.0,Small Station Wagons,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,503,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,96,30865,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5,0.0,38.4,0.0,Small Station Wagons,2011,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,500,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,96,30866,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.622,0.0,44.9707,0.0,Small Station Wagons,2011,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,122,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,30867,0,10,Nissan,Juke,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.3987,0.0,43.2979,0.0,Small Station Wagons,2011,750,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,121,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30868,0,10,Nissan,Juke,Y,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AV-S6),35.4869,0.0,45.5991,0.0,Small Station Wagons,2011,1500,,,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,123,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30869,0,10,Nissan,Juke AWD,Y,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.2,0.0,41.7,0.0,Small Station Wagons,2011,750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,77,3087,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,76,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30870,0,20,Toyota,Matrix,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,44.4,0.0,Small Station Wagons,2011,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,77,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,30871,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.2,0.0,45.8,0.0,Small Station Wagons,2011,2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,82,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30872,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.4599,0.0,36.0389,0.0,Small Station Wagons,2011,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,80,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30873,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2813,0.0,39.145,0.0,Small Station Wagons,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,81,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30874,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1543,0.0,40.2453,0.0,Small Station Wagons,2011,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,83,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30875,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0413,0.0,30.2637,0.0,Small Pickup Trucks 2WD,2011,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,181,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30876,0,0,Nissan,Frontier 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3105,0.0,27.7875,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,182,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30877,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.3983,0.0,27.6203,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,481,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30878,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.5,0.0,Small Pickup Trucks 2WD,2011,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,183,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30879,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.862,0.0,26.7152,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,19,77,3088,0,0,Plymouth,Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1987,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,184,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30880,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1986,0.0,27.0639,0.0,Small Pickup Trucks 4WD,2011,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,482,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30881,0,0,Suzuki,Equator 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.9458,0.0,26.2344,0.0,Small Pickup Trucks 4WD,2011,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,90,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30882,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9584,0.0,28.0152,0.0,Standard Pickup Trucks 2WD,2011,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,42,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30883,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,0.0,38.8,0.0,Minivan - 2WD,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30884,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,38.3,0.0,Minivan - 2WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,26,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30885,0,0,Honda,Accord Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,38.3,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,37,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30886,0,0,Honda,Element 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8,0.0,34.3,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,93,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30887,0,0,Infiniti,FX35 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.1726,0.0,31.4961,0.0,Sport Utility Vehicle - 2WD,2011,-3750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,510,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30888,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8799,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,507,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30889,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,3089,0,0,Pontiac,Firebird/Trans Am/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1987,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,511,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30890,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8799,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,508,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30891,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2011,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,49,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30892,0,0,Lexus,RX 350 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8097,0.0,34.2291,0.0,Sport Utility Vehicle - 2WD,2011,-2250,,,,,,,,, +10.987,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,52,,-1,2000,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30893,0,0,Lexus,RX 450h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),41.4485,0.0,39.0959,0.0,Sport Utility Vehicle - 2WD,2011,2000,,,,,Hybrid,,,288V Ni-MH, +16.4805,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.0827,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,17,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,23.6,0,0.0,0.0,0.0,0.0,0,0,30894,0,0,Mazda,CX-7 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2011,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,16.3594,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,18.4148,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,21.7555,0,0.0,0.0,0.0,0.0,0,0,30895,0,0,Mazda,CX-7 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.1,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,187,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30896,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5111,0.0,30.1998,0.0,Sport Utility Vehicle - 2WD,2011,-5750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,87,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,30897,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2011,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,26.4,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,26.5785,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,83,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,30898,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4,0.0,40.6,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,85,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30899,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.6,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3322,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,309,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1985,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4132,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,3090,0,0,Pontiac,Firebird/Trans Am/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.3333,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,31,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30900,0,0,Acura,ZDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,27,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30901,0,0,Honda,Accord Crosstour 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9796,0.0,36.3794,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,39,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30902,0,0,Honda,Element 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8,0.0,33.5,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,38,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30903,0,0,Honda,Element 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.2,0.0,31.3,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,94,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30904,0,0,Infiniti,FX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),19.5985,0.0,29.7734,0.0,Sport Utility Vehicle - 4WD,2011,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,391,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30905,0,0,Infiniti,FX50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.8637,0.0,27.4375,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,50,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30906,0,0,Lexus,RX 350 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,34.1,0.0,Sport Utility Vehicle - 4WD,2011,-3000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,53,,-1,2100,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30907,0,0,Lexus,RX 450h AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.5411,0.0,38.601,0.0,Sport Utility Vehicle - 4WD,2011,1500,,,,,Hybrid,,,288V Ni-MH, +17.337486000000002,0.0,0.0,0.0,17,17.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7604,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel Drive,18,,-1,3150,0,Premium,Premium Gasoline,-1,-1,21,21.1,0,0.0,0.0,0.0,0.0,0,0,30908,0,0,Mazda,CX-7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,188,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30909,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.6977,0.0,27.298,0.0,Sport Utility Vehicle - 4WD,2011,-6750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(FFS) 4 barrel carb,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,3091,0,0,Pontiac,Firebird/Trans Am/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1987,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,281,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30910,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.5498,0.0,24.2996,0.0,Sport Utility Vehicle - 4WD,2011,-9500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,185,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30911,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.198,0.0,27.6273,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,186,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30912,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2998,0.0,27.1832,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,88,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,30913,0,0,Toyota,FJ Cruiser 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,29.1,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,89,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30914,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2,0.0,27.0,0.0,Sport Utility Vehicle - 4WD,2011,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,25.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,25.4641,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,84,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,25.3,0,0.0,0.0,0.0,0.0,0,0,30915,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,86,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30916,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,35.0,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,84,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,30917,0,0,smart,fortwo cabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),44.3,0.0,57.8,0.0,Two Seaters,2011,3500,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,74,,-1,1700,0,Premium,Premium Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,30918,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),44.3,0.0,57.8,0.0,Two Seaters,2011,3500,,,,,,,,, +6.5922,0.0,0.0,0.0,51,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,177.74,50,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,72,,-1,1100,0,Regular,Regular Gasoline,-1,-1,48,0.0,0,0.0,0.0,0.0,0.0,22,94,30919,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.8162,0.0,69.5514,0.0,Midsize Cars,2011,6500,,,,,Hybrid,,,202V Ni-MH, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(FFS) 4 barrel carb,-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,3092,0,0,Pontiac,Firebird/Trans Am/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1987,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,401,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30920,0,0,GMC,Yukon Denali 1500 Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,Hybrid,,,288V Ni-MH, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,9,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30921,0,0,Aston Martin,V12 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7271,0.0,22.9258,0.0,Two Seaters,2011,-11250,G,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,1,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30922,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2011,-8000,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,2,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30923,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),17.081,0.0,27.3512,0.0,Two Seaters,2011,-6750,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4441,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1658,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,75,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.9708,0,0.0,0.0,0.0,0.0,0,0,30924,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6465,0.0,24.301,0.0,Two Seaters,2011,-9500,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.2519,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.889,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,73,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.9953,0,0.0,0.0,0.0,0.0,0,0,30925,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.9506,0.0,26.7678,0.0,Two Seaters,2011,-6750,G,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4441,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1658,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,74,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.9708,0,0.0,0.0,0.0,0.0,0,0,30926,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6465,0.0,24.301,0.0,Two Seaters,2011,-9500,G,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.2519,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.889,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,72,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.9953,0,0.0,0.0,0.0,0.0,0,0,30927,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.9506,0.0,26.7678,0.0,Two Seaters,2011,-6750,G,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,65,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30928,0,0,Porsche,911 Speedster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Two Seaters,2011,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,7,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,30929,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1311,0.0,27.2408,0.0,Minicompact Cars,2011,-8000,G,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4111,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,3093,0,0,Pontiac,Firebird/Trans Am/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1987,-3250,,fuel injection,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,4,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,30930,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7271,0.0,22.9258,0.0,Minicompact Cars,2011,-11250,G,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,5,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,30931,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4084,0.0,24.6983,0.0,Minicompact Cars,2011,-9500,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,61,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30932,5,0,Porsche,911 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4737,0.0,34.8617,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,62,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30933,5,0,Porsche,911 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6061,0.0,36.7669,0.0,Minicompact Cars,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,63,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30934,5,0,Porsche,911 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8253,0.0,36.0277,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,64,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30935,5,0,Porsche,911 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Minicompact Cars,2011,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,8,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,30936,0,14,Aston Martin,Rapide,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6348,0.0,26.6208,0.0,Subcompact Cars,2011,-8000,G,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,29,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,20,97,30937,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,48.7,0.0,Midsize Cars,2011,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,28,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,20,97,30938,0,15,Kia,Forte,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.8325,0.0,50.3086,0.0,Midsize Cars,2011,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,30,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,30939,0,15,Kia,Forte Eco,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.6372,0.0,51.7876,0.0,Midsize Cars,2011,2750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4137,(FFS) fuel injection,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,3094,0,0,Pontiac,Firebird/Trans Am/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1987,-3250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30940,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,47.5,0.0,Midsize Cars,2011,1500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,188,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,30941,0,0,Saab,9-5 Sedan AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,37.6,0.0,Midsize Cars,2011,-1750,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,25,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30942,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.2,0.0,46.2,0.0,Large Cars,2011,1500,,,T,,,,,, +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3998,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,5,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.7231,0,0.0,0.0,0.0,0.0,0,0,30943,0,14,Rolls-Royce,Ghost,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S8),16.1,0.0,27.3,0.0,Large Cars,2011,-8000,G,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,504,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,96,30944,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,40.0,0.0,Small Station Wagons,2011,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,46,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30945,0,19,Infiniti,EX35,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6,0.0,34.0,0.0,Small Station Wagons,2011,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,47,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30946,0,19,Infiniti,EX35 AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.2337,0.0,32.732,0.0,Small Station Wagons,2011,-3750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,161,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30947,0,0,Ford,Transit Connect,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.9789,0.0,35.8839,0.0,Special Purpose Vehicle 2WD,2011,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,29,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30948,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6629,0.0,35.9582,0.0,Sport Utility Vehicle - 2WD,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,31,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30949,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.5849,0.0,36.3939,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,3095,0,0,Pontiac,Firebird/Trans Am/Formula,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1987,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,28,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30950,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2001,0.0,38.6007,0.0,Sport Utility Vehicle - 2WD,2011,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,516,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30951,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,505,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30952,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,40.7,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,515,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30953,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,506,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30954,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,40.7,0.0,Sport Utility Vehicle - 2WD,2011,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30955,0,0,Nissan,Murano FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.1186,0.0,32.7006,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,27,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30956,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.7103,0.0,34.5488,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,30,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30957,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.6696,0.0,35.8093,0.0,Sport Utility Vehicle - 4WD,2011,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,518,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30958,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.5,0.0,36.7,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,513,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30959,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54013,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,3096,0,8,Pontiac,Firefly,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1987,4000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,520,Off-road Package,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30960,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,517,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30961,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.5,0.0,36.7,0.0,Sport Utility Vehicle - 4WD,2011,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,514,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,30962,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2011,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,92,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30963,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.4725,0.0,32.6575,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,9,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30964,0,0,Porsche,Cayenne S Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(A8),25.0608,0.0,33.1281,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,,S,Hybrid,,,288V Ni-MH, +0.34800000000000003,0.0,0.0,0.0,62,0.0,0,0.0,0.0,54.0,0.0,0,-1,0.0,0.0,58,0.0,0,0.0,58.0,0.0,0.0,,,2-Wheel Drive,0,,-1,1050,0,Electricity,Electricity,-1,-1,54,0.0,0,0.0,0.0,63.0,0.0,0,0,30965,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,50,0.0,0.0,0.0,0.0,Automatic (A1),88.6842,0.0,76.5909,0.0,Standard Pickup Trucks 2WD,2001,6750,,,,,EV,,,67 KW AC Induction, +0.34800000000000003,0.0,0.0,0.0,62,0.0,0,0.0,0.0,54.0,0.0,0,-1,0.0,0.0,58,0.0,0,0.0,58.0,0.0,0.0,,,2-Wheel Drive,0,Lead Acid,-1,1050,0,Electricity,Electricity,-1,-1,54,0.0,0,0.0,0.0,63.0,0.0,0,0,30966,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,50,0.0,0.0,0.0,0.0,Automatic (A1),88.6842,0.0,76.5909,0.0,Standard Pickup Trucks 2WD,2000,6750,,,,,EV,,,67 KW AC, +0.36000000000000004,0.0,0.0,0.0,59,0.0,0,0.0,0.0,57.0,0.0,0,-1,0.0,0.0,56,0.0,0,0.0,60.0,0.0,0.0,,,2-Wheel Drive,0,NiMH,-1,1100,0,Electricity,Electricity,-1,-1,52,0.0,0,0.0,0.0,64.0,0.0,0,0,30967,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,65,0.0,0.0,0.0,0.0,Automatic (A1),84.25,0.0,74.8889,0.0,Standard Pickup Trucks 2WD,2000,6500,,,,,EV,,,67 KW AC, +0.24000000000000002,0.0,0.0,0.0,79,0.0,0,0.0,0.0,43.0,0.0,0,-1,0.0,0.0,85,0.0,0,0.0,40.0,0.0,0.0,,,,0,Lead Acid,-1,700,0,Electricity,Electricity,-1,-1,94,0.0,0,0.0,0.0,36.0,0.0,0,0,30968,0,0,GMC,EV1,N,false,0,0,55,0.0,0.0,0.0,0.0,Automatic (A1),112.3333,0.0,134.8,0.0,Two Seaters,1999,8500,,,,,EV,,,102kW AC Induction, +0.546,0.0,0.0,0.0,35,0.0,0,0.0,0.0,96.0,0.0,0,-1,0.0,0.0,37,0.0,0,0.0,91.0,0.0,0.0,,,,0,NiMH,-1,1650,0,Electricity,Electricity,-1,-1,39,0.0,0,0.0,0.0,85.0,0.0,0,0,30969,0,0,GMC,EV1,N,false,0,0,105,0.0,0.0,0.0,0.0,Automatic (A1),46.8056,0.0,56.1667,0.0,Two Seaters,1999,3750,,,,,EV,,,102kW AC Induction, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54013,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,8,74,3097,0,8,Pontiac,Firefly,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.6176,0.0,62.3369,0.0,Subcompact Cars,1987,5000,,,,,,,,, +0.42600000000000005,0.0,0.0,0.0,49,0.0,0,0.0,0.0,69.0,0.0,0,-1,0.0,0.0,48,0.0,0,0.0,71.0,0.0,0.0,,,,0,,-1,1300,0,Electricity,Electricity,-1,-1,46,0.0,0,0.0,0.0,73.0,0.0,0,0,30970,0,0,Honda,EV Plus,N,false,0,0,81,0.0,0.0,0.0,0.0,Automatic (A1),68.7755,0.0,66.0784,0.0,Compact Cars,1999,5500,,,,,EV,,,49kW DC Brushless, +0.34800000000000003,0.0,0.0,0.0,62,0.0,0,0.0,0.0,54.0,0.0,0,-1,0.0,0.0,58,0.0,0,0.0,58.0,0.0,0.0,,,2-Wheel Drive,0,Lead Acid,-1,1050,0,Electricity,Electricity,-1,-1,54,0.0,0,0.0,0.0,63.0,0.0,0,0,30971,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,50,0.0,0.0,0.0,0.0,Automatic (A1),88.6842,0.0,76.5909,0.0,Standard Pickup Trucks 2WD,1999,6750,,,,,EV,,,67 KW AC Induction, +0.43200000000000005,0.0,0.0,0.0,50,0.0,0,0.0,0.0,67.0,0.0,0,-1,0.0,0.0,47,0.0,0,0.0,72.0,0.0,0.0,,,2-Wheel Drive,0,NiMH,-1,1300,0,Electricity,Electricity,-1,-1,44,0.0,0,0.0,0.0,77.0,0.0,0,0,30972,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,55,0.0,0.0,0.0,0.0,Automatic (A1),71.7021,0.0,62.4074,0.0,Standard Pickup Trucks 2WD,1999,5500,,,,,EV,,,67 KW AC, +0.5760000000000001,0.0,0.0,0.0,37,0.0,0,0.0,0.0,90.0,0.0,0,-1,0.0,0.0,35,0.0,0,0.0,96.0,0.0,0.0,,,2-Wheel Drive,0,,-1,1750,0,Electricity,Electricity,-1,-1,33,0.0,0,0.0,0.0,103.0,0.0,0,0,30973,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,70,0.0,0.0,0.0,0.0,Automatic (A1),50.2985,0.0,46.1644,0.0,Minivan - 2WD,1999,3250,,,,,EV,,,56kW AC Induction, +0.5760000000000001,0.0,0.0,0.0,37,0.0,0,0.0,0.0,90.0,0.0,0,-1,0.0,0.0,35,0.0,0,0.0,96.0,0.0,0.0,,,Front-Wheel Drive,0,,-1,1750,0,Electricity,Electricity,-1,-1,33,0.0,0,0.0,0.0,103.0,0.0,0,0,30974,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,70,0.0,0.0,0.0,0.0,Automatic (A1),50.2985,0.0,46.1644,0.0,Minivan - 2WD,1999,3250,,,,,EV,,,56kW AC Induction, +0.42600000000000005,0.0,0.0,0.0,49,0.0,0,0.0,0.0,69.0,0.0,0,-1,0.0,0.0,48,0.0,0,0.0,71.0,0.0,0.0,,,,0,,-1,1300,0,Electricity,Electricity,-1,-1,46,0.0,0,0.0,0.0,73.0,0.0,0,0,30975,0,0,Honda,EV Plus,N,false,0,0,81,0.0,0.0,0.0,0.0,Automatic (A1),68.7755,0.0,66.0784,0.0,Compact Cars,1998,5500,,,,,EV,,,49 kW DC Brushless, +0.37200000000000005,0.0,0.0,0.0,52,0.0,0,0.0,0.0,64.0,0.0,0,-1,0.0,0.0,55,0.0,0,0.0,62.0,0.0,0.0,,,2-Wheel Drive,0,Lead Acid,-1,1100,0,Electricity,Electricity,-1,-1,58,0.0,0,0.0,0.0,59.0,0.0,0,0,30976,0,0,Chevrolet,S10 Electric,N,false,0,0,33,0.0,0.0,0.0,0.0,Automatic (A1),74.8889,0.0,82.1951,0.0,Small Pickup Trucks 2WD,1998,6500,,,,,EV,,,85 kW AC Induction, +0.7260000000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,122.0,0.0,0,-1,0.0,0.0,28,0.0,0,0.0,121.0,0.0,0.0,,,2-Wheel Drive,0,NiMH,-1,2200,0,Electricity,Electricity,-1,-1,28,0.0,0,0.0,0.0,120.0,0.0,0,0,30977,0,0,Chevrolet,S10 Electric,N,false,0,0,72,0.0,0.0,0.0,0.0,Automatic (A1),35.8511,0.0,39.186,0.0,Small Pickup Trucks 2WD,1998,1000,,,,,EV,,,85 kW AC Induction, +0.20400000000000001,0.0,0.0,0.0,102,0.0,0,0.0,0.0,33.0,0.0,0,-1,0.0,0.0,98,0.0,0,0.0,34.0,0.0,0.0,,,,0,,-1,600,0,Electricity,Electricity,-1,-1,94,0.0,0,0.0,0.0,36.0,0.0,0,0,30978,0,0,MINI,MiniE,N,false,0,0,100,0.0,0.0,0.0,0.0,Automatic (A1),146.8499,0.0,133.6898,0.0,Minicompact Cars,2008,9000,,,,,EV,,,150 kW, +0.20400000000000001,0.0,0.0,7.0,106,0.0,0,0.0,0.0,32.0,0.0,0,-1,0.0,0.0,99,0.0,0,0.0,34.0,0.0,0.0,,,Front-Wheel Drive,0,,-1,600,0,Electricity,Electricity,-1,-1,92,0.0,0,0.0,0.0,37.0,0.0,23,90,30979,0,0,Nissan,Leaf,Y,false,0,0,73,0.0,0.0,0.0,0.0,Automatic (A1),151.5,0.0,131.3,0.0,Midsize Cars,2011,9000,,,,,EV,,,80 kW DCPM, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3098,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,34.0,0.0,Subcompact Cars,1987,-3000,,,T,,,,,, +3.3756214821428574,0.21600000000000003,0.0,4.0,35,0.0,95,0.0,0.0,36.0,0.64,84,-1,0.0,84.0,37,0.0,93,0.0,36.0,0.0,0.64,4,1.4,Front-Wheel Drive,0,PHEV,-1,1650,650,Premium Gas or Electricity,Premium Gasoline,-1,-1,40,0.0,90,0.0,0.0,37.0,0.63,18,90,30980,0,0,Chevrolet,Volt,Y,false,0,0,0,0.0,36.0,0.0,35.0,Auto (AV),45.4121,135.1,52.7496,132.7,Compact Cars,2011,7000,,,,,Plug-in Hybrid,Electricity,35,111 kW, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,56,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30981,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6322,0.0,36.9,0.0,Two Seaters,2011,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,57,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,30982,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,35.9889,0.0,Two Seaters,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,58,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30983,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.5515,0.0,34.5884,0.0,Two Seaters,2011,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,59,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30984,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,34.9,0.0,Two Seaters,2011,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,54,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30985,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.7073,0.0,35.2192,0.0,Subcompact Cars,2011,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30986,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,32.9,0.0,Subcompact Cars,2011,-3750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,4,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,30987,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),33.4,0.0,54.05,0.0,Midsize Cars,2011,2750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,193,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,30988,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,41.9,0.0,Compact Cars,2011,-500,,,,,,,,, +9.976196,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,195,,-1,1650,0,Regular,Regular Gasoline,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,0,0,30989,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.5,0.0,59.7,0.0,Midsize Cars,2011,3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3099,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,202,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30990,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.3,0.0,40.0,0.0,Compact Cars,2011,0,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,205,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,30991,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,40.9,0.0,Compact Cars,2011,-500,,,,,,,,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,211,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,30992,13,0,Chrysler,200 Convertible,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Compact Cars,2011,-500,,,,,FFV,E85,260,, +15.689436,4.994,0.0,0.0,18,17.7948,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,21.0456,15,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,100,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,27.0956,19,0.0,0.0,0.0,0.0,0,0,30993,16,0,Dodge,Challenger,Y,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,15.8,37.9,25.9,Compact Cars,2011,-1000,,,,,FFV,E85,290,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,103,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,30994,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.6,0.0,Compact Cars,2011,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,105,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,30995,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Compact Cars,2011,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,109,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,30996,16,0,Dodge,Challenger SRT8,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,31.4,0.0,Compact Cars,2011,-5750,G,,,,,,,, +20.589638,0.0,0.0,0.0,14,13.8231,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2532,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,110,,-1,3750,0,Premium,Premium Gasoline,-1,-1,22,21.5772,0,0.0,0.0,0.0,0.0,0,0,30997,16,0,Dodge,Challenger SRT8,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.7,0.0,29.9449,0.0,Compact Cars,2011,-6750,G,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,33,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,30998,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.6,0.0,48.7,0.0,Compact Cars,2011,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,34,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,30999,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.4,0.0,46.2,0.0,Compact Cars,2011,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,41.0,0.0,Two Seaters,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,310,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3100,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,35,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31000,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.166,0.0,43.4319,0.0,Compact Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,36,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,31001,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Compact Cars,2011,1500,,,,,,,,, +7.844718,0.0,0.0,0.0,43,42.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,41.5896,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,73,,-1,1300,0,Regular,Regular Gasoline,-1,-1,40,40.2,0,0.0,0.0,0.0,0.0,14,86,31002,0,0,Lexus,CT 200h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),57.9193,0.0,56.9915,0.0,Compact Cars,2011,5500,,,,,Hybrid,,,202V Ni-MH, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,152,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31003,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,43.1,0.0,Compact Cars,2011,500,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,159,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31004,0,15,Saab,9-3 Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,41.0,0.0,Compact Cars,2011,0,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,17.1467,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4709,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,160,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,26.8276,0,0.0,0.0,0.0,0.0,0,0,31005,0,15,Saab,9-3 Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4398,0.0,37.5108,0.0,Compact Cars,2011,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,165,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,31006,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S5),23.3,0.0,39.0,0.0,Compact Cars,2011,-500,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,10.8404,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.1152,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,76,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,17.6392,0,0.0,0.0,0.0,0.0,0,0,31007,0,11,Bentley,Mulsanne,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S8),12.7,0.0,23.4,0.0,Midsize Cars,2011,-11250,G,,T,,,,,, +14.964294,4.679378,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,152,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,0.0,21,0.0,0.0,0.0,0.0,0,0,31008,0,13,Buick,Regal,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,16.7,39.4,29.4,Midsize Cars,2011,-500,,,T,,FFV,E85,310,, +13.73375,4.404708,0.0,0.0,20,0.0,15,0.0,0.0,0.0,0.0,-1,-1,370.29411764705884,370.2916666666667,24,0.0,17,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,163,SIDI; FFV,-1,2300,2700,Gasoline or E85,Regular Gasoline,-1,-1,32,0.0,22,0.0,0.0,0.0,0.0,0,0,31009,0,13,Buick,Regal,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.0,18.5,44.7,31.2,Midsize Cars,2011,500,,,T,,FFV,E85,330,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3101,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Subcompact Cars,1987,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,200,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,31010,0,14,Chrysler,200,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,203,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31011,0,14,Chrysler,200,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2011,500,,,,,,,,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,209,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,31012,0,14,Chrysler,200,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2011,-500,,,,,FFV,E85,260,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,201,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,31013,0,13,Dodge,Avenger,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2011,500,,,,,,,,, +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,204,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31014,0,13,Dodge,Avenger,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2011,500,,,,,,,,, +14.964294,4.679378,0.0,0.0,19,0.0,14,0.0,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,0.0,16,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,210,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,0.0,21,0.0,0.0,0.0,0.0,0,0,31015,0,13,Dodge,Avenger,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2011,-500,,,,,FFV,E85,260,, +10.283832,0.0,0.0,0.0,28,28.9577,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.9624,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,32,,-1,1700,0,Regular,Regular Gasoline,-1,-1,38,39.6674,0,0.0,0.0,0.0,0.0,0,0,31016,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,37.7468,0.0,56.5,0.0,Midsize Cars,2011,3500,,,,,,,,, +10.283832,0.0,0.0,0.0,28,29.2722,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,33.1856,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33,,-1,1700,0,Regular,Regular Gasoline,-1,-1,38,39.6674,0,0.0,0.0,0.0,0.0,0,0,31017,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,56.5,0.0,Midsize Cars,2011,3500,,,,,,,,, +15.689436,4.994,0.0,0.0,18,17.7948,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,21.0456,15,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,102,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,27.0956,19,0.0,0.0,0.0,0.0,0,0,31018,0,16,Chrysler,300,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,15.8,37.9,25.9,Large Cars,2011,-1000,,,,,FFV,E85,290,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,106,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31019,0,16,Chrysler,300,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2011,-3250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,3102,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1987,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,108,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31020,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2011,-3250,,,,,,,,, +15.689436,4.994,0.0,0.0,18,17.7948,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,21.0456,15,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,101,FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,27.0956,19,0.0,0.0,0.0,0.0,0,0,31021,0,15,Dodge,Charger,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,15.8,37.9,25.9,Large Cars,2011,-1000,,,,,FFV,E85,290,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,104,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31022,0,15,Dodge,Charger,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2011,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,107,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31023,0,15,Dodge,Charger AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2011,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,55,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31024,0,16,Mercedes-Benz,S400 Hybrid,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4,0.0,35.0,0.0,Large Cars,2011,-2250,,,,,Hybrid,,,126V Li-Ion, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,8,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31025,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.3,0.0,Small Station Wagons,2011,-6750,G,,,S,,,,, +23.534154,0.0,0.0,0.0,12,11.7089,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.9559,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,14,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,18.2324,0,0.0,0.0,0.0,0.0,0,0,31026,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3707,0.0,25.1835,0.0,Small Station Wagons,2011,-9500,G,,,S,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31027,0,11,Nissan,Cube,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.4261,0.0,43.5856,0.0,Small Station Wagons,2011,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,31028,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,41.6,0.0,Small Station Wagons,2011,1750,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,20.6891,12,15.1539,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,24.4309,14,17.9391,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,135,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,31.3639,17,23.1365,0.0,0.0,0.0,0,0,31029,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6891,15.1539,31.3639,23.1365,Standard Pickup Trucks 2WD,2011,-2500,,,,,FFV,E85,360,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,3103,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1987,3750,,SIL,,,,,,, +19.381068,5.758082,0.0,0.0,15,18.7042,11,13.9035,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,22.1808,13,16.4241,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,139,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,28.7009,15,21.0993,0.0,0.0,0.0,0,0,31030,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7042,13.9035,28.7009,21.0993,Standard Pickup Trucks 2WD,2011,-4250,,,,,FFV,E85,340,, +23.534154,0.0,0.0,0.0,13,15.4752,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,18.4714,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,140,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,24.1975,0,0.0,0.0,0.0,0.0,0,0,31031,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4752,0.0,24.1975,0.0,Standard Pickup Trucks 2WD,2011,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,20.1296,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,23.8704,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,144,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,30.8857,0,0.0,0.0,0.0,0.0,0,0,31032,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1296,0.0,30.8857,0.0,Standard Pickup Trucks 2WD,2011,-3250,,,T,,,,,, +17.337486000000002,5.348574,0.0,0.0,17,20.6893,12,15.154,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,24.4311,14,17.9392,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,152,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,31.3641,17,23.1366,0.0,0.0,0.0,0,0,31033,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6893,15.154,31.3641,23.1366,Standard Pickup Trucks 2WD,2011,-2500,,,,,FFV,E85,360,, +19.381068,5.758082,0.0,0.0,15,0.0,11,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,0.0,13,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,154,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,15,0.0,0.0,0.0,0.0,0,0,31034,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7127,13.9096,28.716,21.1096,Standard Pickup Trucks 2WD,2011,-4250,,,,,FFV,E85,340,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,157,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31035,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1448,0.0,30.9044,0.0,Standard Pickup Trucks 2WD,2011,-3250,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,14.3032,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,16.9251,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,133,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,21.8118,0,0.0,0.0,0.0,0.0,0,0,31036,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3032,0.0,21.8118,0.0,Standard Pickup Trucks 4WD,2011,-9250,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,17.2993,10,12.8993,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,20.3378,12,15.1338,0.0,0.0,0.0,8,5.0,4-Wheel Drive,134,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,25.8972,14,19.1985,0.0,0.0,0.0,0,0,31037,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2993,12.8993,25.8972,19.1985,Standard Pickup Trucks 4WD,2011,-5250,,,,,FFV,E85,310,, +19.381068,0.0,0.0,0.0,15,18.7193,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,22.2614,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,147,SIDI,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,28.9589,0,0.0,0.0,0.0,0.0,0,0,31038,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7193,0.0,28.9589,0.0,Standard Pickup Trucks 4WD,2011,-4250,,,T,,,,,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,153,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,15,0.0,0.0,0.0,0.0,0,0,31039,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5751,14.3319,28.5668,21.1279,Standard Pickup Trucks 4WD,2011,-3250,,,,,FFV,E85,340,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,3104,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1987,500,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,0.0,10,0.0,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,0.0,12,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,155,,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,0.0,14,0.0,0.0,0.0,0.0,0,0,31040,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2993,12.8993,25.8975,19.1985,Standard Pickup Trucks 4WD,2011,-5250,,,,,FFV,E85,310,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,224,SIDI,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,31041,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.8526,0.0,29.4665,0.0,Standard Pickup Trucks 4WD,2011,-4250,,,T,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,228,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,31042,0,0,Ford,F150 Raptor Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7,0.0,19.5139,0.0,Standard Pickup Trucks 4WD,2011,-11000,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,0.0,13,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,533,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,0.0,15,0.0,0.0,0.0,0.0,0,0,31043,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5762,14.3327,28.5674,21.1285,Standard Pickup Trucks 4WD,2011,-3250,,,,,FFV,E85,340,, +19.109250000000003,0.0,0.0,0.0,19,18.8002,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,19.6776,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel Drive,1,,-1,2950,0,Diesel,Diesel,-1,-1,21,20.9206,0,0.0,0.0,0.0,0.0,0,0,31044,0,0,Mahindra,TR40,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.46,0.0,30.45,0.0,Standard Pickup Trucks 4WD,2011,-2750,,,T,,Diesel,,,, +16.4805,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,540,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,31045,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2011,-1750,,,,,FFV,E85,280,, +16.4805,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,541,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,31046,0,0,Dodge,Grand Caravan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2011,-1750,,,,,FFV,E85,280,, +16.4805,5.348574,0.0,0.0,17,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,0.0,14,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,542,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,31047,0,0,Volkswagen,Routan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2011,-1750,,,,,FFV,E85,280,, +17.337486000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,0.0,14,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,35,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,0.0,17,0.0,0.0,0.0,0.0,0,0,31048,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.4,15.3,32.3,23.6,Sport Utility Vehicle - 2WD,2011,-2500,,,,,FFV,E85,350,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,37,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31049,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.0,0.0,27.2,0.0,Sport Utility Vehicle - 2WD,2011,-5250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,3105,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,530,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,31050,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2011,-500,,,,,,,,, +16.4805,4.994,0.0,0.0,17,0.0,13,0.0,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,0.0,15,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,531,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,0.0,18,0.0,0.0,0.0,0.0,0,0,31051,0,0,Dodge,Journey FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8,15.4,35.5,25.5,Sport Utility Vehicle - 2WD,2011,-1750,,,,,FFV,E85,300,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,226,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31052,0,0,Ford,Explorer FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.8706,0.0,34.763,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,335,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31053,0,0,Ford,Explorer FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8728,0.0,34.7675,0.0,Sport Utility Vehicle - 2WD,2011,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,483,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31054,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8729,0.0,30.3729,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,370,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31055,0,0,BMW,X3 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.7566,0.0,35.5052,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,372,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,31056,0,0,BMW,X3 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5983,0.0,35.9931,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,T,,,,,, +18.304342000000002,5.348574,0.0,0.0,16,0.0,12,0.0,0.0,0.0,0.0,-1,-1,449.64285714285717,493.72222222222223,18,0.0,14,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,36,FFV,-1,3050,3250,Gasoline or E85,Regular Gasoline,-1,-1,22,0.0,16,0.0,0.0,0.0,0.0,0,0,31057,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.0,31.2,22.7,Sport Utility Vehicle - 4WD,2011,-3250,,,,,FFV,E85,350,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,38,,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31058,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7,0.0,27.2941,0.0,Sport Utility Vehicle - 4WD,2011,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,532,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,31059,0,0,Dodge,Journey AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,3106,0,0,Pontiac,1000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.8718,0.0,Subcompact Cars,1987,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,159,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31060,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,259,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31061,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,521,Off Road Package,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31062,0,0,Jeep,Compass 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2011,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,77,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,31063,0,0,Volkswagen,Touareg Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,33.2,0.0,Sport Utility Vehicle - 4WD,2011,-2250,,,,S,Hybrid,,,288V Ni-MH, +0.234,0.0,0.0,8.0,94,0.0,0,0.0,0.0,36.0,0.0,0,-1,0.0,0.0,87,0.0,0,0.0,39.0,0.0,0.0,,,Rear-Wheel Drive,705,,-1,700,0,Electricity,Electricity,-1,-1,79,0.0,0,0.0,0.0,43.0,0.0,0,0,31064,0,0,smart,fortwo electric drive cabriolet,N,false,0,0,63,0.0,0.0,0.0,0.0,Automatic (A1),134.627,0.0,112.906,0.0,Two Seaters,2011,8500,,,,,EV,,,30 kW DCPM, +0.234,0.0,0.0,8.0,94,0.0,0,0.0,0.0,36.0,0.0,0,-1,0.0,0.0,87,0.0,0,0.0,39.0,0.0,0.0,,,Rear-Wheel Drive,704,,-1,700,0,Electricity,Electricity,-1,-1,79,0.0,0,0.0,0.0,43.0,0.0,0,0,31065,0,0,smart,fortwo electric drive coupe,N,false,0,0,63,0.0,0.0,0.0,0.0,Automatic (A1),134.627,0.0,112.906,0.0,Two Seaters,2011,8500,,,,,EV,,,30 kW DCPM, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,213,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31066,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.1,0.0,31.8,0.0,Compact Cars,2011,-4750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,214,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,31067,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4007,0.0,24.8436,0.0,Compact Cars,2011,-9500,G,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,215,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,31068,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.3,0.0,29.0,0.0,Compact Cars,2011,-5750,G,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,218,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,31069,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.8591,0.0,25.344,0.0,Compact Cars,2011,-9500,G,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1017,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3107,8,0,Renault,Alliance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +12.19557,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,194,,-1,2050,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,31070,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.5,0.0,49.1,0.0,Midsize Cars,2011,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,204,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31071,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6319,0.0,25.5737,0.0,Large Cars,2011,-9500,G,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,205,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31072,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,30.2,0.0,Large Cars,2011,-5750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,208,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31073,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.7829,0.0,26.3285,0.0,Large Cars,2011,-9500,G,,T,,,,,, +0.14297200000000002,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,2,,-1,2400,0,CNG,Natural Gas,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,31074,0,0,VPG,MV-1 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,21.9,0.0,Special Purpose Vehicle 2WD,2011,0,,,,,CNG,,,, +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.5555,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,1,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.6091,0,0.0,0.0,0.0,0.0,0,0,31075,0,0,VPG,MV-1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,24.3,0.0,Special Purpose Vehicle 2WD,2011,-6250,,,,,,,,, +9.141184,0.0,0.0,0.0,34,35.1495,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,37.0345,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,39.6321,0,0.0,0.0,0.0,0.0,0,0,31076,0,11,Hyundai,Sonata Hybrid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,47.2,0.0,59.9,0.0,Midsize Cars,2011,4250,,,,,Hybrid,,,270V Li-Ion, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,31,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,97,31077,0,15,Kia,Forte,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.1552,0.0,44.882,0.0,Midsize Cars,2011,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,32,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,97,31078,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Midsize Cars,2011,1500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,6,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,21,91,31079,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,37.2,0.0,51.6,0.0,Small Station Wagons,2011,3000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1017,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,3108,8,0,Renault,Alliance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,45.0,0.0,Subcompact Cars,1987,1750,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,5,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,21,91,31080,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.3814,0.0,47.3076,0.0,Small Station Wagons,2011,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,7,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,21,91,31081,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),35.7,0.0,47.7,0.0,Small Station Wagons,2011,2750,,,,,,,,, +21.974,0.0,0.0,0.0,13,12.9268,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.1896,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,41,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.3239,0,0.0,0.0,0.0,0.0,0,0,31082,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.4101,0.0,24.4121,0.0,Two Seaters,2012,-8000,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,12,11.6306,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1229,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,43,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,19.1342,0,0.0,0.0,0.0,0.0,0,0,31083,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.1852,0.0,Two Seaters,2012,-9500,G,,,,,,,,ADX +21.974,0.0,0.0,0.0,13,12.9268,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.1896,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,40,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.3239,0,0.0,0.0,0.0,0.0,0,0,31084,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.4101,0.0,24.4121,0.0,Two Seaters,2012,-8000,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,12,11.6306,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1229,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,42,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,19.1342,0,0.0,0.0,0.0,0.0,0,0,31085,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.1852,0.0,Two Seaters,2012,-9500,G,,,,,,,,ADX +23.534154,7.4910000000000005,0.0,0.0,12,11.7036,8,8.1576,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1289,10,10.0502,0.0,0.0,0.0,12,6.0,All-Wheel Drive,15,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.9212,14,14.028,0.0,0.0,0.0,0,0,31086,0,0,Bentley,Continental Supersports,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3,10.3,25.2,17.7,Two Seaters,2012,-9500,G,,T,,FFV,E85,240,,BEX +25.336022,0.0,0.0,0.0,11,10.579,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,12.7126,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,7,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,16.8714,0,0.0,0.0,0.0,0.0,0,0,31087,0,0,Lamborghini,Aventador Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),12.4236,0.0,22.6242,0.0,Two Seaters,2012,-11250,G,,,,,,,,NLX +27.4675,0.0,0.0,0.0,11,10.5916,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.4786,0,0.0,0.0,0.0,0.0,10,4.8,Rear-Wheel Drive,3,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.9521,0,0.0,0.0,0.0,0.0,0,0,31089,0,0,Lexus,LFA,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.9504,0.0,21.9632,0.0,Two Seaters,2012,-13250,G,,,,,,,,TYX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1020,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3109,8,0,Renault,GTA Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4542,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,65,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31090,0,0,Porsche,911 Speedster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Two Seaters,2012,-2250,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.5237,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,31,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.4963,0,0.0,0.0,0.0,0.0,0,0,31091,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2012,-500,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5497,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,30,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,31092,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4337,0.0,37.3472,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.5134,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.9438,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,36,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.2228,0,0.0,0.0,0.0,0.0,0,0,31093,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.634,0.0,40.9778,0.0,Two Seaters,2012,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5356,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,35,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.2687,0,0.0,0.0,0.0,0.0,0,0,31094,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6471,0.0,36.7278,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.282,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,40,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.4279,0,0.0,0.0,0.0,0.0,0,0,31095,0,0,Porsche,Boxster Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.0772,0.0,41.347,0.0,Two Seaters,2012,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.1415,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8886,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,39,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31096,0,0,Porsche,Boxster Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0596,0.0,37.055,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.5237,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,33,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.4963,0,0.0,0.0,0.0,0.0,0,0,31097,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.4809,0.0,41.3608,0.0,Two Seaters,2012,-500,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5497,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,32,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,31098,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4337,0.0,37.3472,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.282,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,42,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.4279,0,0.0,0.0,0.0,0.0,0,0,31099,0,0,Porsche,Cayman R,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.0772,0.0,41.347,0.0,Two Seaters,2012,-1000,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3331,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,311,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3110,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1987,-22500,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.1415,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8886,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,41,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31100,0,0,Porsche,Cayman R,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.0596,0.0,37.055,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.5134,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.9438,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,38,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.2228,0,0.0,0.0,0.0,0.0,0,0,31101,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.634,0.0,40.9778,0.0,Two Seaters,2012,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5356,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,37,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.2687,0,0.0,0.0,0.0,0.0,0,0,31102,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6471,0.0,36.7278,0.0,Two Seaters,2012,-1750,,,,,,,,,PRX +21.974,0.0,0.0,0.0,13,13.082,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4048,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,6,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.6815,0,0.0,0.0,0.0,0.0,0,0,31103,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1311,0.0,27.2408,0.0,Minicompact Cars,2012,-8000,G,,,,,,,,ASX +25.336022,0.0,0.0,0.0,11,11.2385,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.3029,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,10,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,17.1499,0,0.0,0.0,0.0,0.0,0,0,31104,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7715,0.0,23.6523,0.0,Minicompact Cars,2012,-11250,G,,,,,,,,ASX +23.534154,0.0,0.0,0.0,12,11.7384,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.8885,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,5,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.8897,0,0.0,0.0,0.0,0.0,0,0,31105,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4084,0.0,24.6983,0.0,Minicompact Cars,2012,-9500,G,,,,,,,,ASX +25.336022,0.0,0.0,0.0,11,11.2036,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.1319,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,4,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,16.6352,0,0.0,0.0,0.0,0.0,0,0,31106,5,0,Aston Martin,DBS,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7271,0.0,22.9258,0.0,Minicompact Cars,2012,-11250,G,,,,,,,,ASX +21.974,0.0,0.0,0.0,13,12.6088,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.6758,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,9,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,18.3458,0,0.0,0.0,0.0,0.0,0,0,31107,5,0,Aston Martin,Virage,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.5225,0.0,25.3442,0.0,Minicompact Cars,2012,-8000,G,,,,,,,,ASX +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,601,,-1,2000,0,Premium,Premium Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,7,76,31108,0,0,Fiat,500,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.1,0.0,48.3,0.0,Minicompact Cars,2012,2000,,,,,,,,,CRX +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,600,,-1,1850,0,Premium,Premium Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,7,76,31109,0,0,Fiat,500,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0813,0.0,53.676,0.0,Minicompact Cars,2012,2750,,,,,,,,,CRX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3111,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,27.0361,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.11,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,602,Cabrio model,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,32.1216,0,0.0,0.0,0.0,0.0,7,76,31110,0,0,Fiat,500 Cabrio,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.0,0.0,46.0,0.0,Minicompact Cars,2012,1500,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,20,19.8882,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7101,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,322,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.4748,0,0.0,0.0,0.0,0.0,0,0,31111,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S4),25.1052,0.0,38.4512,0.0,Minicompact Cars,2012,0,,,,,,,,,DSX +17.337486000000002,0.0,0.0,0.0,16,16.1606,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9023,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,324,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.8471,0,0.0,0.0,0.0,0.0,0,0,31112,5,0,Mitsubishi,Eclipse Spyder,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.1382,0.0,33.202,0.0,Minicompact Cars,2012,-3750,,,,,,,,,DSX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7254,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,11,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,31113,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4818,0.0,37.8668,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9377,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,10,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,31114,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1717,0.0,34.9402,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.228,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,19,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31115,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.0006,0.0,36.7563,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6038,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,18,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,24.4704,0,0.0,0.0,0.0,0.0,0,0,31116,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9382,0.0,34.1119,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0366,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,21,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,31117,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8233,0.0,36.4375,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8635,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,20,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.3015,0,0.0,0.0,0.0,0.0,0,0,31118,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8749,0.0,35.3192,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0366,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,27,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,31119,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8233,0.0,36.4375,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3112,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8635,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,26,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.3015,0,0.0,0.0,0.0,0.0,0,0,31120,5,0,Porsche,911 Carrera 4 Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8749,0.0,35.3192,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0644,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,23,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,31121,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.9887,0.0,35.9964,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5958,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,22,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.9555,0,0.0,0.0,0.0,0.0,0,0,31122,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5957,0.0,34.7504,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.399,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,25,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31123,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1103,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,24,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31124,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8676,0.0,34.3243,0.0,Minicompact Cars,2012,-3000,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.399,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,29,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31125,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1103,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,28,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31126,5,0,Porsche,911 Carrera 4S Targa,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8676,0.0,34.3243,0.0,Minicompact Cars,2012,-3000,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.7254,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,13,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,31127,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2433,0.0,37.3842,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0769,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,12,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.509,0,0.0,0.0,0.0,0.0,0,0,31128,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.1818,0.0,35.5915,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5564,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,15,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31129,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6061,0.0,36.7669,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3113,9,0,Rolls-Royce,Corniche II,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1987,-22500,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5629,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,14,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,31130,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4737,0.0,34.8617,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4542,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,17,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31131,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9551,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,16,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,31132,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8253,0.0,36.0277,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5564,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,62,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31133,5,0,Porsche,911 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6061,0.0,36.7669,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5629,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,61,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,31134,5,0,Porsche,911 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4737,0.0,34.8617,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4542,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,64,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31135,5,0,Porsche,911 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2973,0.0,37.0666,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9551,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,63,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,31136,5,0,Porsche,911 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8253,0.0,36.0277,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8003,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,51,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31137,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8031,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,55,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,31138,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0177,0.0,33.1649,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3811,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,50,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31139,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3114,9,0,Rolls-Royce,Corniche II,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1987,-18500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.4354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1074,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,54,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.8457,0,0.0,0.0,0.0,0.0,0,0,31140,5,0,Porsche,911 Turbo Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5187,0.0,33.2357,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8003,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,53,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31141,5,0,Porsche,911 Turbo S Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3811,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,52,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31142,5,0,Porsche,911 Turbo S Coupe,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6416,0.0,34.255,0.0,Minicompact Cars,2012,-3750,,,T,,,,,,PRX +21.974,0.0,0.0,0.0,13,12.6962,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.9962,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,7,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2454,0,0.0,0.0,0.0,0.0,0,0,31143,0,14,Aston Martin,Rapide,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6348,0.0,26.6208,0.0,Subcompact Cars,2012,-8000,G,,,,,,,,ASX +13.1844,0.0,0.0,0.0,22,21.9858,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9563,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,21,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.8925,0,0.0,0.0,0.0,0.0,0,0,31144,10,0,Audi,A5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (AV),29.2656,0.0,42.8309,0.0,Subcompact Cars,2012,0,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,20.7276,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8915,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,32,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.3711,0,0.0,0.0,0.0,0.0,0,0,31145,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.064,0.0,39.7547,0.0,Subcompact Cars,2012,-500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,20.7276,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8915,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,30,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.3711,0,0.0,0.0,0.0,0.0,0,0,31146,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.064,0.0,39.7547,0.0,Subcompact Cars,2012,-500,,,T,,,,,,ADX +13.1844,0.0,0.0,0.0,21,21.1146,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7856,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,34,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.4736,0,0.0,0.0,0.0,0.0,0,0,31147,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6255,0.0,42.4005,0.0,Subcompact Cars,2012,0,,,T,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,16,16.4584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2125,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,57,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.1522,0,0.0,0.0,0.0,0.0,0,0,31148,12,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.0,0.0,Subcompact Cars,2012,-3750,,,,,,,,,ADX +19.381068,0.0,0.0,0.0,14,14.2883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9482,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,56,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.9404,0,0.0,0.0,0.0,0.0,0,0,31149,12,0,Audi,S5,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.3,0.0,Subcompact Cars,2012,-5750,G,,,,,,,,ADX +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3115,9,0,Rolls-Royce,Corniche II,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1987,-22500,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,16.6793,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9228,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,38,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.1345,0,0.0,0.0,0.0,0.0,0,0,31150,10,0,Audi,S5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.3,0.0,34.0,0.0,Subcompact Cars,2012,-3000,,,,S,,,,,ADX +23.534154,7.4910000000000005,0.0,0.0,12,11.5043,8,8.3016,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.9574,10,10.0512,0.0,0.0,0.0,12,6.0,All-Wheel Drive,13,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.877,14,13.5384,0.0,0.0,0.0,0,0,31151,7,0,Bentley,Continental Supersports Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,10.3,24.7,17.2,Subcompact Cars,2012,-9500,G,,T,,FFV,E85,240,,BEX +15.689436,0.0,0.0,0.0,18,17.8503,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9994,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,130,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7721,0,0.0,0.0,0.0,0.0,0,0,31152,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3738,0.0,37.4302,0.0,Subcompact Cars,2012,-2250,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,18,18.3849,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6577,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,131,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6801,0,0.0,0.0,0.0,0.0,0,0,31153,8,0,BMW,128ci Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.0867,0.0,38.7499,0.0,Subcompact Cars,2012,-1750,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.0838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4865,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,128,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.9037,0,0.0,0.0,0.0,0.0,0,0,31154,10,0,BMW,128i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6848,0.0,39.0754,0.0,Subcompact Cars,2012,-2250,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,18,18.3849,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6577,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,129,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6801,0,0.0,0.0,0.0,0.0,0,0,31155,10,0,BMW,128i,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.0867,0.0,38.7499,0.0,Subcompact Cars,2012,-1750,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.8369,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5309,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,135,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.179,0,0.0,0.0,0.0,0.0,0,0,31156,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.356,0.0,35.1229,0.0,Subcompact Cars,2012,-2250,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0201,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,136,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,28.3323,0,0.0,0.0,0.0,0.0,0,0,31157,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,39.7,0.0,Subcompact Cars,2012,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,17.7045,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4595,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,137,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2645,0,0.0,0.0,0.0,0.0,0,0,31158,8,0,BMW,135i Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1799,0.0,35.2465,0.0,Subcompact Cars,2012,-3000,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.7785,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.962,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,138,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.7021,0,0.0,0.0,0.0,0.0,0,0,31159,8,0,BMW,135i Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6131,0.0,38.7819,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47036,"B202 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3116,9,0,Saab,900 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1987,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,15.2603,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.867,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,654,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,22.5814,0,0.0,0.0,0.0,0.0,0,0,31160,12,0,BMW,650i Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4485,0.0,33.9016,0.0,Compact Cars,2012,-4750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.7324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4118,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,655,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,22.3885,0,0.0,0.0,0.0,0.0,0,0,31161,12,0,BMW,650i Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1623,0.0,31.1757,0.0,Compact Cars,2012,-5750,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,19,19.3498,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1903,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,27,,-1,2400,0,Regular,Regular Gasoline,-1,-1,31,30.6176,0,0.0,0.0,0.0,0.0,0,0,31162,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.3799,0.0,43.043,0.0,Subcompact Cars,2012,0,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.6883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.1661,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,28,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,28.6921,0,0.0,0.0,0.0,0.0,0,0,31163,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.4923,0.0,40.2249,0.0,Subcompact Cars,2012,-500,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,18,17.6346,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4153,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,25,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,25.2893,0,0.0,0.0,0.0,0.0,0,0,31164,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.087,0.0,35.2824,0.0,Subcompact Cars,2012,-1750,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2634,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,26,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,25.9236,0,0.0,0.0,0.0,0.0,0,0,31165,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,36.2,0.0,Subcompact Cars,2012,-1750,,,,,,,,,FMX +19.381068,0.0,0.0,0.0,15,14.6636,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4868,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,24,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,22.8679,0,0.0,0.0,0.0,0.0,0,0,31166,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1791,0.0,31.7944,0.0,Subcompact Cars,2012,-5750,,,,S,,,,,FMX +14.327048,0.0,0.0,0.0,19,19.2018,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7816,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,29,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,29.5044,0,0.0,0.0,0.0,0.0,0,0,31167,9,0,Ford,Mustang Convertible,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.1809,0.0,41.4119,0.0,Subcompact Cars,2012,0,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,20,20.3505,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.168,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,312,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,27.8868,0,0.0,0.0,0.0,0.0,0,0,31168,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S4),25.7303,0.0,39.0508,0.0,Subcompact Cars,2012,0,,,,,,,,,DSX +14.327048,0.0,0.0,0.0,20,19.9128,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7608,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,311,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,27.5824,0,0.0,0.0,0.0,0.0,0,0,31169,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.1385,0.0,38.6077,0.0,Subcompact Cars,2012,0,,,,,,,,,DSX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47032,"B202 (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3117,9,0,Saab,900 Convertible,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1987,-1750,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,17,16.9281,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9013,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,314,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.3411,0,0.0,0.0,0.0,0.0,0,0,31170,0,16,Mitsubishi,Eclipse,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic (S5),21.1504,0.0,35.3572,0.0,Subcompact Cars,2012,-3000,,,,,,,,,DSX +17.337486000000002,0.0,0.0,0.0,16,16.3785,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6807,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,71,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.5557,0,0.0,0.0,0.0,0.0,0,0,31171,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),20.2173,0.0,30.0182,0.0,Subcompact Cars,2012,-3750,,,T,,,,,,NSX +20.589638,0.0,0.0,0.0,14,13.8971,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4145,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,21.082,0,0.0,0.0,0.0,0.0,0,0,31172,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1,0.0,30.62,0.0,Subcompact Cars,2012,-6750,G,,,S,,,,,RII +13.1844,0.0,0.0,0.0,22,21.9145,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7946,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,45,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.5398,0,0.0,0.0,0.0,0.0,12,85,31173,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.5,0.0,41.8294,0.0,Subcompact Cars,2012,0,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,22,22.2863,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7338,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,25,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,28.5683,0,0.0,0.0,0.0,0.0,12,85,31174,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.3831,0.0,39.0128,0.0,Subcompact Cars,2012,1000,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.7634,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.8658,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,30.1121,0,0.0,0.0,0.0,0.0,0,0,31175,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5,0.0,41.5,0.0,Subcompact Cars,2012,0,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.9858,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9563,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.8925,0,0.0,0.0,0.0,0.0,0,0,31176,0,12,Audi,A4,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (AV),29.2656,0.0,42.8309,0.0,Compact Cars,2012,0,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,20.7276,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8915,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,29,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.3711,0,0.0,0.0,0.0,0.0,0,0,31177,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S8),26.064,0.0,39.7547,0.0,Compact Cars,2012,-500,,,T,,,,,,ADX +13.1844,0.0,0.0,0.0,21,21.1146,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7856,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,33,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.4736,0,0.0,0.0,0.0,0.0,0,0,31178,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6255,0.0,42.4005,0.0,Compact Cars,2012,0,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.7412,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1948,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,37,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.812,0,0.0,0.0,0.0,0.0,0,0,31179,0,13,Audi,S4,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6,0.0,35.0,0.0,Compact Cars,2012,-2250,,,,S,,,,,ADX +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,66020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,11,78,3118,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1987,2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7593,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8985,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,39,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6578,0,0.0,0.0,0.0,0.0,0,0,31180,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.1,0.0,Compact Cars,2012,-2250,,,,S,,,,,ADX +23.534154,7.4910000000000005,0.0,0.0,12,11.5043,8,8.3016,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.9574,10,10.0512,0.0,0.0,0.0,12,6.0,All-Wheel Drive,14,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.877,14,13.5384,0.0,0.0,0.0,0,0,31181,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,10.3,24.7,17.2,Compact Cars,2012,-9500,G,,T,,FFV,E85,240,,BEX +10.613442000000001,0.0,0.0,0.0,28,27.5985,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.4147,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,46,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,38,37.8038,0,0.0,0.0,0.0,0.0,23,90,31182,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),35.8,0.0,53.7,0.0,Compact Cars,2012,3000,,,,,,,,,FMX +10.613442000000001,0.0,0.0,0.0,27,27.0689,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.7269,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,6,SIDI; Select shift transmission,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,36.8062,0,0.0,0.0,0.0,0.0,23,90,31183,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM-S6),35.0466,0.0,52.2073,0.0,Compact Cars,2012,3000,,,,,,,,,FMX +10.987,0.0,0.0,0.0,26,25.9283,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.5518,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,SIDI,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,35.6391,0,0.0,0.0,0.0,0.0,23,90,31184,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.4335,0.0,50.4664,0.0,Compact Cars,2012,2750,,,,,,,,,FMX +9.976196,0.0,0.0,0.0,28,28.0188,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.5,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,10,SIDI,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,40.3967,0,0.0,0.0,0.0,0.0,23,90,31185,0,13,Ford,Focus SFE FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),36.4,0.0,57.6,0.0,Compact Cars,2012,3750,,,,,,,,,FMX +10.283832,0.0,0.0,0.0,28,28.0295,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.0345,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,38.8125,0,0.0,0.0,0.0,0.0,0,0,31186,12,12,Honda,Civic,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,36.4153,0.0,55.2137,0.0,Compact Cars,2012,3500,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,28,27.9488,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.176,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,11,,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,36.2987,0,0.0,0.0,0.0,0.0,0,0,31187,12,12,Honda,Civic,Y,false,83,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.3,0.0,51.4496,0.0,Compact Cars,2012,3000,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,21.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9542,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8,0,0.0,0.0,0.0,0.0,0,0,31188,12,12,Honda,Civic,Y,false,83,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,43.0,0.0,Compact Cars,2012,0,,,,,,,,,HNX +9.976196,0.0,0.0,0.0,29,28.5138,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.9532,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,13,,-1,1650,0,Regular,Regular Gasoline,-1,-1,41,40.6976,0,0.0,0.0,0.0,0.0,0,0,31189,0,12,Honda,Civic HF,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,37.109,0.0,58.0544,0.0,Compact Cars,2012,3750,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,66020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,78,3119,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1987,1500,,,,,,,,, +7.47116,0.0,0.0,0.0,44,43.9471,0,0.0,0.0,0.0,0.0,-1,-1,0.0,201.97727272727272,44,44.1822,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,2,,-1,1250,0,Regular,Regular Gasoline,-1,-1,44,44.473,0,0.0,0.0,0.0,0.0,0,0,31190,0,11,Honda,Civic Hybrid,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),60.552,0.0,66.4542,0.0,Compact Cars,2012,5750,,,,,Hybrid,,,144V Li-Ion,HNX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,37.0,0,0.0,0.0,0.0,0.0,21,90,31191,0,14,Hyundai,Accent,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 6-spd,38.7101,0.0,58.1089,0.0,Compact Cars,2012,3000,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4,SIDI,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,37.0,0,0.0,0.0,0.0,0.0,21,90,31192,0,14,Hyundai,Accent,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.9,0.0,56.6,0.0,Compact Cars,2012,3500,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,68,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31193,0,15,Saab,9-3 Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,40.2,0.0,Compact Cars,2012,-500,,,T,,,,,,SAX +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,69,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,31194,0,15,Saab,9-3 Sedan AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.3,0.0,42.5,0.0,Compact Cars,2012,500,,,T,,,,,,SAX +13.1844,0.0,0.0,0.0,22,21.8704,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.223,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.0384,0,0.0,0.0,0.0,0.0,0,0,31195,0,13,Volkswagen,CC,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),26.9774,0.0,42.4961,0.0,Compact Cars,2012,0,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,20.6834,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2484,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,31,30.7197,0,0.0,0.0,0.0,0.0,0,0,31196,0,13,Volkswagen,CC,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8197,0.0,41.8654,0.0,Compact Cars,2012,-500,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,17,16.9415,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.8774,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,58,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.219,0,0.0,0.0,0.0,0.0,0,0,31197,0,13,Volkswagen,CC 4motion,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2012,-3000,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,24,23.6354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.4762,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,24,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,31.0354,0,0.0,0.0,0.0,0.0,15,94,31198,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0387,0.0,42.4629,0.0,Compact Cars,2012,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7328,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3598,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,28,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7452,0,0.0,0.0,0.0,0.0,15,94,31199,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5068,0.0,Compact Cars,2012,1500,,,,,,,,,VWX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,312,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Compact Cars,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,78,3120,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1987,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,24.2237,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.3623,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,44,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,33,32.5107,0,0.0,0.0,0.0,0.0,15,94,31200,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9331,0.0,43.5092,0.0,Compact Cars,2012,750,,,T,,,,,,ADX +13.1844,0.0,0.0,0.0,21,21.2839,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7303,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,46,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8323,0,0.0,0.0,0.0,0.0,15,94,31201,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0526,0.0,41.2041,0.0,Compact Cars,2012,0,,,T,,,,,,VWX +12.19557,0.0,0.0,0.0,24,23.78,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.761,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,32,31.603,0,0.0,0.0,0.0,0.0,0,0,31202,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),29.5114,0.0,45.0982,0.0,Compact Cars,2012,750,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,22,21.8955,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6941,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,33,32.6085,0,0.0,0.0,0.0,0.0,0,0,31203,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5576,0.0,44.976,0.0,Compact Cars,2012,500,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,24,23.6354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.4762,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,23,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,31.0354,0,0.0,0.0,0.0,0.0,0,0,31204,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0387,0.0,42.4629,0.0,Compact Cars,2012,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7328,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3598,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,27,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7452,0,0.0,0.0,0.0,0.0,0,0,31205,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5068,0.0,Compact Cars,2012,1500,,,,,,,,,VWX +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,73,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.3,0,0.0,0.0,0.0,0.0,15,89,31206,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Compact Cars,2012,500,,,T,,,,,,VVX +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0699,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,31207,0,14,Volvo,S60 AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,35.8,0.0,Compact Cars,2012,-1000,,,T,,,,,,VVX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.4738,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,74,,-1,2400,0,Regular,Regular Gasoline,-1,-1,30,29.8,0,0.0,0.0,0.0,0.0,0,0,31208,0,14,Volvo,S60 FWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),24.9,0.0,41.8,0.0,Compact Cars,2012,0,,,T,,,,,,VVX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1654,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,31209,0,13,Acura,TL 2WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,40.7,0.0,Midsize Cars,2012,-1000,,,,,,,,,HNX +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,9,78,3121,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,53.0,0.0,Subcompact Cars,1987,4000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1672,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,31,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,31210,0,13,Acura,TL 4WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,36.5,0.0,Midsize Cars,2012,-2250,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1311,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,30,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,31211,0,13,Acura,TL 4WD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.4,0.0,Midsize Cars,2012,-3000,,,,,,,,,HNX +11.75609,0.0,0.0,0.0,25,24.5044,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5721,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,9,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.5529,0,0.0,0.0,0.0,0.0,0,0,31212,0,14,Audi,A6,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (AV),29.5,0.0,46.9,0.0,Midsize Cars,2012,1250,,,T,,,,,,ADX +14.964294,0.0,0.0,0.0,19,18.578,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9122,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,11,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0693,0,0.0,0.0,0.0,0.0,0,0,31213,0,14,Audi,A6 quattro,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),23.1,0.0,37.5,0.0,Midsize Cars,2012,-1750,,,,S,,,,,ADX +14.964294,0.0,0.0,0.0,18,18.4376,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.838,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,10,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.193,0,0.0,0.0,0.0,0.0,25,94,31214,0,0,Audi,A7 quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.9,0.0,37.4,0.0,Midsize Cars,2012,-1750,,,,S,,,,,ADX +23.534154,7.4910000000000005,0.0,0.0,11,11.2476,8,7.8665,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.7134,10,9.6274,0.0,0.0,0.0,12,6.0,All-Wheel Drive,12,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.7327,13,13.2535,0.0,0.0,0.0,0,0,31215,13,0,Bentley,Continental Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7,9.5,24.6,17.3,Midsize Cars,2012,-9500,G,,T,,FFV,E85,210,,BEX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,7,,-1,1700,0,Regular,Regular Gasoline,-1,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,31216,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,37.7603,0.0,56.5,0.0,Midsize Cars,2012,3500,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,8,,-1,1700,0,Regular,Regular Gasoline,-1,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,31217,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,56.5,0.0,Midsize Cars,2012,3500,,,,,,,,,HYX +11.360558000000001,0.0,0.0,0.0,27,26.8246,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.9859,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,32.152,0,0.0,0.0,0.0,0.0,0,0,31218,0,11,Infiniti,M35h,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),34.7,0.0,45.3,0.0,Midsize Cars,2012,1500,,,,,Hybrid,,,346V Li-Ion,NSX +15.689436,0.0,0.0,0.0,18,18.3023,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.2053,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,151,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.3049,0,0.0,0.0,0.0,0.0,0,0,31219,0,15,Infiniti,M37,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),22.9764,0.0,36.7525,0.0,Midsize Cars,2012,-2250,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66032,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3122,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9196,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,152,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,23.9846,0,0.0,0.0,0.0,0.0,0,0,31220,0,15,Infiniti,M37x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),21.9,0.0,33.4,0.0,Midsize Cars,2012,-3000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,15.5489,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5661,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,111,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.3382,0,0.0,0.0,0.0,0.0,0,0,31221,0,15,Infiniti,M56,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.3353,0.0,33.9094,0.0,Midsize Cars,2012,-3750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3788,0,0.0,0.0,0.0,0.0,8,5.6,All-Wheel Drive,112,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,31222,0,15,Infiniti,M56x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.5,0.0,32.4,0.0,Midsize Cars,2012,-4750,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,21.653,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9145,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,30.5362,0,0.0,0.0,0.0,0.0,0,0,31223,0,17,Mazda,6,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),27.5021,0.0,42.9236,0.0,Midsize Cars,2012,1000,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4858,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.1792,0,0.0,0.0,0.0,0.0,0,0,31224,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,42.4,0.0,Midsize Cars,2012,500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,17.8967,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1435,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,5,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.1675,0,0.0,0.0,0.0,0.0,0,0,31225,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9748,0.0,35.2607,0.0,Midsize Cars,2012,-1000,,,,,,,,,TKX +10.905012000000001,0.0,0.0,0.0,31,30.8024,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,35.1943,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,48,,-1,1700,0,Diesel,Diesel,-1,-1,43,42.6219,0,0.0,0.0,0.0,0.0,0,0,31226,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,62.8,0.0,Midsize Cars,2012,3500,,,T,,Diesel,,,,VWX +20.589638,0.0,0.0,0.0,14,13.6153,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.1802,0,0.0,0.0,0.0,0.0,12,6.3,All-Wheel Drive,16,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,21.0198,0,0.0,0.0,0.0,0.0,0,0,31227,0,13,Audi,A8 L,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),16.7,0.0,28.3,0.0,Large Cars,2012,-6750,G,,,,,,,,VWX +16.4805,0.0,0.0,0.0,17,17.0857,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9857,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,740,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2171,0,0.0,0.0,0.0,0.0,0,0,31228,0,14,BMW,740i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),21.359,0.0,35.178,0.0,Large Cars,2012,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.0857,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9857,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,741,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2171,0,0.0,0.0,0.0,0.0,0,0,31229,0,14,BMW,740Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),21.359,0.0,35.178,0.0,Large Cars,2012,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66034,"(B-ENGINE) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3123,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31230,0,14,BMW,750i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2,0.0,30.232,0.0,Large Cars,2012,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,752,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31231,0,14,BMW,750i xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9753,0.0,27.7632,0.0,Large Cars,2012,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31232,0,14,BMW,750Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8554,0.0,29.8952,0.0,Large Cars,2012,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,753,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31233,0,14,BMW,750Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9753,0.0,27.7632,0.0,Large Cars,2012,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,755,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31234,0,14,BMW,Alpina B7 LWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8554,0.0,29.8952,0.0,Large Cars,2012,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,757,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31235,0,14,BMW,Alpina B7 LWB xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9753,0.0,27.7632,0.0,Large Cars,2012,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,754,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31236,0,14,BMW,Alpina B7 SWB,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),17.8554,0.0,29.8952,0.0,Large Cars,2012,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,756,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31237,0,14,BMW,Alpina B7 SWB xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S6),16.9753,0.0,27.7632,0.0,Large Cars,2012,-6750,G,,T,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,15,15.3592,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1075,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,6,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.176,0,0.0,0.0,0.0,0.0,0,0,31238,0,17,Hyundai,Equus,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.0869,0.0,32.2369,0.0,Large Cars,2012,-4750,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.1475,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,2,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,31239,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.5,0.0,40.1,0.0,Large Cars,2012,-500,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3124,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.1795,0.0,Subcompact Cars,1987,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,5,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31240,0,16,Hyundai,Genesis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.9,0.0,35.6,0.0,Large Cars,2012,-3750,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31241,0,16,Hyundai,Genesis R-Spec,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.9,0.0,34.0,0.0,Large Cars,2012,-4750,,,,,,,,,HYX +13.73375,0.0,0.0,0.0,21,20.7276,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.8915,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,31,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.3711,0,0.0,0.0,0.0,0.0,0,0,31242,0,28,Audi,A4 Avant quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),26.064,0.0,39.7547,0.0,Small Station Wagons,2012,-500,,,T,,,,,,ADX +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,70,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31243,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,40.2,0.0,Small Station Wagons,2012,-500,,,T,,,,,,SAX +13.73375,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,71,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,31244,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.3,0.0,42.5,0.0,Small Station Wagons,2012,500,,,T,,,,,,SAX +13.73375,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9429,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,31245,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2012,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,22,21.7423,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0537,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,1,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,31246,0,22,Scion,xB,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2012,500,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,24,23.6354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.4762,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,22,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,31.0354,0,0.0,0.0,0.0,0.0,0,0,31247,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0387,0.0,42.4629,0.0,Small Station Wagons,2012,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7328,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3598,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7452,0,0.0,0.0,0.0,0.0,0,0,31248,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5068,0.0,Small Station Wagons,2012,1500,,,,,,,,,VWX +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2067,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,7,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,32,108,31249,0,0,Kia,Rondo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.7,0.0,37.1,0.0,Midsize Station Wagons,2012,-500,,,,,,,,,KMX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66035,(C-ENGINE) (FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3125,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9345,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,8,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,25.7164,0,0.0,0.0,0.0,0.0,32,108,31250,0,0,Kia,Rondo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.8,0.0,35.9,0.0,Midsize Station Wagons,2012,-1000,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,527,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31251,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,529,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31252,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,528,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31253,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2012,-5250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,535,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31254,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,537,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31255,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,536,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31256,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2012,-5250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,578,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31257,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,580,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31258,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,579,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31259,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2012,-5250,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3126,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,587,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31260,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.1,0.0,34.3,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.9,Rear-Wheel Drive,589,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31261,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.5,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,588,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,31262,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.9,0.0,27.3,0.0,Small Pickup Trucks 2WD,2012,-5250,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,531,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31263,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2012,-1750,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,533,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,31264,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.1,0.0,Small Pickup Trucks 4WD,2012,-1750,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,532,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31265,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1899,0.0,26.6754,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,539,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31266,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1899,0.0,26.6754,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,582,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31267,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.7,0.0,32.4,0.0,Small Pickup Trucks 4WD,2012,-1750,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.9,4-Wheel Drive,584,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,31268,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.3,0.0,34.1,0.0,Small Pickup Trucks 4WD,2012,-1750,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,583,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31269,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1899,0.0,26.6754,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66034,"(B-ENGINE) (FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3127,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.8974,0.0,Subcompact Cars,1987,0,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.3,4-Wheel Drive,591,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31270,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1899,0.0,26.6754,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,514,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,31271,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2012,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,515,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,31272,0,0,Chevrolet,Express 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,519,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31273,0,0,Chevrolet,Express 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,310,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,517,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31274,0,0,Chevrolet,Express 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,310,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,562,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,31275,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2012,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,563,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,31276,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,566,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31277,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,310,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,567,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31278,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,310,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,513,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,31279,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2012,-7750,,,,,FFV,E85,340,,GMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66032,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3128,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,518,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31280,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2012,-7750,,,,,FFV,E85,310,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,559,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,31281,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2012,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,565,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,31282,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2012,-7750,,,,,FFV,E85,310,,GMX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5637,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,9,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,31283,0,0,Kia,Sedona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7,0.0,34.4,0.0,Minivan - 2WD,2012,-1000,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.4817,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,27.4428,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,27.6593,0,0.0,0.0,0.0,0.0,0,0,31284,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.2682,0.0,41.0249,0.0,Minivan - 2WD,2012,500,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,27.6125,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,28.4,0,0.0,0.0,0.0,0.0,0,0,31285,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,40.9,0.0,Minivan - 2WD,2012,500,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,22,22.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,13,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,31286,0,0,Hyundai,Tucson 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.8,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,14,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,31287,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.6,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.3758,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,10,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,31288,0,0,Hyundai,Tucson 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.7,0.0,44.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,12,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31289,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.3,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66035,(C-ENGINE) (FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3129,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,16,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,31290,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.4,0.0,44.7,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0473,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,11,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.7436,0,0.0,0.0,0.0,0.0,0,0,31291,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.9,0.0,40.3,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2499,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,12,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,31292,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.3,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2216,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,14,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,25.6473,0,0.0,0.0,0.0,0.0,0,0,31293,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.3,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4288,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,6,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,31294,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.6,0.0,40.4,0.0,Sport Utility Vehicle - 2WD,2012,500,,,T,,,,,,KMX +13.1844,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,31295,0,0,Kia,Sportage 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.7619,0.0,44.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,KMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31296,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.2,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,19.7598,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.4615,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,35,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.9681,0,0.0,0.0,0.0,0.0,0,0,31297,0,0,Audi,Q5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.6,0.0,35.9,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,18,17.8282,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7885,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,36,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,22.8606,0,0.0,0.0,0.0,0.0,0,0,31298,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,30.7,0.0,Sport Utility Vehicle - 4WD,2012,-3000,,,,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,16,15.8944,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5139,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,570,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,23.1838,0,0.0,0.0,0.0,0.0,0,0,31299,0,0,BMW,X5 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7884,0.0,32.248,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27914,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,313,15,0,Mercedes-Benz,500SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Compact Cars,1985,-7750,T,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66034,"(B-ENGINE) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3130,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,13.9126,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2246,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,573,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.3597,0,0.0,0.0,0.0,0.0,0,0,31300,0,0,BMW,X5 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.2039,0.0,28.2066,0.0,Sport Utility Vehicle - 4WD,2012,-6750,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,12,12.3413,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.0156,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,574,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,16.8017,0,0.0,0.0,0.0,0.0,0,0,31301,0,0,BMW,X5 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1794,0.0,23.1606,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8944,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5139,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,671,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,23.1838,0,0.0,0.0,0.0,0.0,0,0,31302,0,0,BMW,X6 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7884,0.0,32.248,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.9126,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2246,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,672,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.3597,0,0.0,0.0,0.0,0.0,0,0,31303,0,0,BMW,X6 xDrive50i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.2039,0.0,28.2066,0.0,Sport Utility Vehicle - 4WD,2012,-6750,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,12,12.3413,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.0156,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,673,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,16.8017,0,0.0,0.0,0.0,0.0,0,0,31304,0,0,BMW,X6 xDriveM,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1794,0.0,23.1606,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.4238,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,9,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31305,0,0,Hyundai,Tucson 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1996,0.0,39.0997,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,11,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31306,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,15,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,31307,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0,0.0,38.9,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,KMX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.144,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,10,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,31308,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.4,0.0,37.4,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4848,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,13,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31309,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,33.8,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3131,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.8974,0.0,Subcompact Cars,1987,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,5,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31310,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1,0.0,35.9,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,T,,,,,,KMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,1,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31311,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.3579,0.0,39.4,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,2,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31312,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.2,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,KMX +17.351199,0.0,0.0,0.0,19,19.0707,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,22.2444,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,47,,-1,2700,0,Diesel,Diesel,-1,-1,28,27.9241,0,0.0,0.0,0.0,0.0,0,0,31313,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.4,0.0,40.7,0.0,Sport Utility Vehicle - 4WD,2012,-1500,,,T,,Diesel,,,,ADX +25.336022,0.0,0.0,0.0,11,11.2036,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.1319,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,8,,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,16.6352,0,0.0,0.0,0.0,0.0,0,0,31314,0,0,Aston Martin,V12 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7271,0.0,22.9258,0.0,Two Seaters,2012,-11250,G,,,,,,,,ASX +10.613442000000001,0.0,0.0,0.0,26,26.1883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.6761,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,94,,-1,1800,0,Regular,Regular Gasoline,-1,-1,39,38.8034,0,0.0,0.0,0.0,0.0,0,0,31315,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.8,0.0,55.2,0.0,Midsize Cars,2012,3000,,,T,,,,,,GMX +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,142,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,31316,0,0,Ferrari,458 Italia,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.4,0.0,24.3499,0.0,Two Seaters,2010,-9500,G,,,,,,,, +19.381068,0.0,0.0,0.0,14,14.2728,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7906,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,1,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4058,0,0.0,0.0,0.0,0.0,0,0,31317,0,0,Spyker,C8 Aileron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.101,0.0,27.471,0.0,Two Seaters,2010,-5750,G,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.9664,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0882,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,6,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7743,0,0.0,0.0,0.0,0.0,0,0,31318,2,0,Lotus,Evora,Y,false,48,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,35.5,0.0,Minicompact Cars,2010,-2250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,109,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31319,16,0,Dodge,Challenger,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Compact Cars,2010,-8000,G,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66035,(C-ENGINE) (FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3132,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,554,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31320,0,10,BMW,550i xDrive GT,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),18.5831,0.0,30.562,0.0,Large Cars,2010,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.1,Rear-Wheel Drive,110,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,31321,0,17,Chrysler,300/SRT-8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.3,0.0,26.0,0.0,Large Cars,2010,-8000,G,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,96,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,31322,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.3677,0.0,34.0288,0.0,Minivan - 2WD,2011,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,12.9916,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.1971,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,1,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.1766,0,0.0,0.0,0.0,0.0,0,0,31323,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2012,-8000,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.0421,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,3,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,31324,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2012,-6750,G,,,,,,,,ASX +18.304342000000002,0.0,0.0,0.0,15,14.7179,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9759,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,42,,-1,3050,0,Regular,Regular Gasoline,-1,-1,25,24.6432,0,0.0,0.0,0.0,0.0,0,0,31325,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2499,0.0,34.3493,0.0,Two Seaters,2012,-3250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4249,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,43,,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,25.6473,0,0.0,0.0,0.0,0.0,0,0,31326,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2012,-2500,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,14,13.9832,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.5664,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,44,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.3977,0,0.0,0.0,0.0,0.0,0,0,31327,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.2953,0.0,29.6882,0.0,Two Seaters,2012,-5750,G,,,S,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.7564,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8636,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,45,,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,24.0541,0,0.0,0.0,0.0,0.0,0,0,31328,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3,0.0,33.5,0.0,Two Seaters,2012,-4750,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,13,13.4655,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.718,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,62,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7573,0,0.0,0.0,0.0,0.0,0,0,31329,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.1,0.0,25.4,0.0,Two Seaters,2012,-6750,G,,,,,,,,ADX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3133,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0513,0.0,Subcompact Cars,1987,-1000,,,T,,,,,, +20.589638,0.0,0.0,0.0,13,13.3954,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.6701,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,63,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7741,0,0.0,0.0,0.0,0.0,0,0,31330,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),16.0,0.0,25.4,0.0,Two Seaters,2012,-6750,G,,,,,,,,ADX +19.381068,0.0,0.0,0.0,14,13.8968,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7391,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,222,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,22.0825,0,0.0,0.0,0.0,0.0,0,0,31331,0,0,Mercedes-Benz,SL550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.8144,0.0,28.6361,0.0,Two Seaters,2012,-5750,G,,,,,,,,MBX +23.534154,0.0,0.0,0.0,12,11.8714,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1842,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,226,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,18.6171,0,0.0,0.0,0.0,0.0,0,0,31332,0,0,Mercedes-Benz,SL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.5782,0.0,25.7289,0.0,Two Seaters,2012,-9500,G,,,,,,,,MBX +20.589638,0.0,0.0,0.0,14,13.6564,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.9743,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,270,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.1554,0,0.0,0.0,0.0,0.0,0,0,31333,0,0,Mercedes-Benz,SLS AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6779,0.0,26.7967,0.0,Two Seaters,2012,-6750,G,,,,,,,,MBX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5958,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,66,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.9555,0,0.0,0.0,0.0,0.0,0,0,31334,5,0,Porsche,911 C4 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.5957,0.0,34.7504,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0644,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,67,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,31335,5,0,Porsche,911 C4 GTS,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.9887,0.0,35.9964,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1103,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,68,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31336,5,0,Porsche,911 C4 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.8676,0.0,34.3243,0.0,Minicompact Cars,2012,-3000,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.399,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,69,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,31337,5,0,Porsche,911 C4 GTS Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.2385,0.0,37.0769,0.0,Minicompact Cars,2012,-2250,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.7334,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2151,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,18,,-1,2600,0,Premium,Premium Gasoline,-1,-1,30,29.5977,0,0.0,0.0,0.0,0.0,0,0,31338,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.8964,0.0,41.5484,0.0,Subcompact Cars,2012,-1000,,,T,,,,,,HYX +13.73375,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.011,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,19,,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.0427,0,0.0,0.0,0.0,0.0,0,0,31339,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,42.2,0.0,Subcompact Cars,2012,-500,,,T,,,,,,HYX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66034,"(B-ENGINE) (FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3134,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Subcompact Cars,1987,-500,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,17.0682,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4649,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,20,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,27.0425,0,0.0,0.0,0.0,0.0,0,0,31340,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.3358,0.0,37.8229,0.0,Subcompact Cars,2012,-1750,,,,,,,,,HYX +16.4805,0.0,0.0,0.0,17,17.3431,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4166,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,21,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,31341,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,36.4,0.0,Subcompact Cars,2012,-1750,,,,,,,,,HYX +12.657024,0.0,0.0,0.0,23,23.0464,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.2966,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.7733,0,0.0,0.0,0.0,0.0,0,0,31342,8,0,Nissan,Altima Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.4156,0.0,44.742,0.0,Subcompact Cars,2012,1500,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,23,22.7449,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.883,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,26,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,31343,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.0,0.0,43.8,0.0,Subcompact Cars,2012,1500,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.9353,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,43,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,27.1986,0,0.0,0.0,0.0,0.0,0,0,31344,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.7,0.0,38.0497,0.0,Subcompact Cars,2012,0,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9105,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,46,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,28.8121,0,0.0,0.0,0.0,0.0,0,0,31345,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,40.4,0.0,Compact Cars,2012,-500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,17.5396,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,20.4984,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,50,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,25.8223,0,0.0,0.0,0.0,0.0,0,0,31346,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4884,0.0,33.1055,0.0,Compact Cars,2012,-2500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,15.4095,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3655,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,78,,-1,3050,0,Regular,Regular Gasoline,-1,-1,24,23.9901,0,0.0,0.0,0.0,0.0,0,0,31347,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1527,0.0,33.4079,0.0,Compact Cars,2012,-3250,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.4111,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,98,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,31348,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,41.9,0.0,Compact Cars,2012,-500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,16.8143,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4636,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,113,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,31349,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.0,0.0,39.0,0.0,Compact Cars,2012,-1750,,,,,,,,,GMX +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54012,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,3135,0,8,Suzuki,Forsa,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1987,4000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.1701,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8797,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,205,,-1,2500,0,Regular,Regular Gasoline,-1,-1,29,29.1543,0,0.0,0.0,0.0,0.0,0,0,31350,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,40.9,0.0,Compact Cars,2012,-500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8337,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,22.3366,16,16.3593,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,211,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,28.8805,21,21.0581,0.0,0.0,0.0,0,0,31351,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Compact Cars,2012,-500,,,,,FFV,E85,270,,CRX +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,3,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31352,11,0,Rolls-Royce,Phantom Drophead Coupe,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2012,-9500,G,,,,,,,,RRG +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,4,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31353,13,0,Rolls-Royce,Phantom Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Compact Cars,2012,-9500,G,,,,,,,,RRG +14.327048,4.404708,0.0,0.0,19,18.9925,14,14.4629,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.5623,17,16.6586,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64,SIDI; FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,29.2912,20,20.454,0.0,0.0,0.0,0,0,31354,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,18.2,41.1,28.7,Compact Cars,2012,0,,,T,,FFV,E85,280,,SAX +13.1844,4.160002,0.0,0.0,20,20.2543,15,15.4281,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,24.5734,18,18.1396,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,65,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,33.2357,23,23.102,0.0,0.0,0.0,0,0,31355,0,15,Saab,9-3 Sport Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,19.5,46.9,32.6,Compact Cars,2012,1000,,,T,,FFV,E85,300,,SAX +12.657024,0.0,0.0,0.0,23,22.6712,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6386,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,8,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.5211,0,0.0,0.0,0.0,0.0,15,90,31356,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.8986,0.0,42.9014,0.0,Compact Cars,2012,1500,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,23,22.5468,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6242,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,9,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.7548,0,0.0,0.0,0.0,0.0,15,90,31357,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.7274,0.0,43.2444,0.0,Compact Cars,2012,1500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2911,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,70,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.3,0,0.0,0.0,0.0,0.0,15,89,31358,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.8,0.0,41.8,0.0,Compact Cars,2012,500,,,T,,,,,,VVX +14.964294,4.679378,0.0,0.0,18,18.4697,13,13.3746,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,22.1172,16,16.1935,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,29.1543,22,21.8123,0.0,0.0,0.0,0,0,31359,0,13,Buick,Regal,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,16.8,40.9,30.6,Midsize Cars,2012,-500,,,T,,FFV,E85,300,,GMX +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54012,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,8,74,3136,0,8,Suzuki,Forsa,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.6176,0.0,62.3369,0.0,Subcompact Cars,1987,5000,,,,,,,,, +13.73375,4.404708,0.0,0.0,20,19.8102,15,14.6595,0.0,0.0,0.0,-1,-1,370.29411764705884,370.2916666666667,24,23.8095,17,17.2549,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,SIDI; FFV,-1,2300,2700,Gasoline or E85,Regular Gasoline,-1,-1,32,31.6089,22,22.0197,0.0,0.0,0.0,0,0,31360,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.0,18.5,44.5,31.0,Midsize Cars,2012,500,,,T,,FFV,E85,320,,GMX +15.689436,4.994,0.0,0.0,17,17.3045,13,12.532,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,20.6566,15,14.7714,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,7,SIDI; FFV,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,27.0644,19,18.8991,0.0,0.0,0.0,0,0,31361,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6488,15.6781,37.8547,26.434,Midsize Cars,2012,-1000,,,,,FFV,E85,280,,GMX +16.4805,5.348574,0.0,0.0,16,16.4184,12,12.0266,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.6397,14,14.1315,0.0,0.0,0.0,6,3.6,All-Wheel Drive,8,SIDI; FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,26,25.8351,18,17.9769,0.0,0.0,0.0,0,0,31362,0,16,Buick,LaCrosse AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4776,15.0,36.0719,25.1,Midsize Cars,2012,-1750,,,,,FFV,E85,270,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5003,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.5818,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,96,SIDI,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,35.8891,0,0.0,0.0,0.0,0.0,0,0,31363,0,13,Buick,Regal eAssist,Y,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.4323,0.0,50.8388,0.0,Midsize Cars,2012,2500,,,,,Hybrid,,,115V Li-Ion,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5003,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.5818,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,97,SIDI,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,35.8891,0,0.0,0.0,0.0,0.0,0,0,31364,0,16,Buick,LaCrosse eAssist,Y,false,0,100,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.4323,0.0,50.8388,0.0,Midsize Cars,2012,2500,,,,,Hybrid,,,115V Li-Ion,GMX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,11,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31365,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,40.4,0.0,Midsize Cars,2012,-1000,,,,,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.9667,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1781,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,12,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,18.3146,0,0.0,0.0,0.0,0.0,0,0,31366,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),14.7,0.0,25.3,0.0,Midsize Cars,2012,-9500,G,,,S,,,,,GMX +20.589638,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.7656,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,13,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,31367,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,25.8,0.0,Midsize Cars,2012,-6750,G,,,S,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.9902,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2764,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,14,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,26,25.7426,0,0.0,0.0,0.0,0.0,0,0,31368,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.9142,0.0,35.938,0.0,Midsize Cars,2012,-2500,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5687,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,83,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,31369,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.3,0.0,Midsize Cars,2012,-1000,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,3137,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1987,-500,,2MODE 2LKUP,,,,,,, +10.987,0.0,0.0,0.0,26,25.8335,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.0687,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,28,,-1,1850,0,Regular,Regular Gasoline,-1,-1,38,37.6036,0,0.0,0.0,0.0,0.0,0,0,31370,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,53.4,0.0,Midsize Cars,2012,2750,,,T,,,,,,GMX +12.19557,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.642,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29,,-1,2050,0,Regular,Regular Gasoline,-1,-1,35,34.7202,0,0.0,0.0,0.0,0.0,0,0,31371,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,49.1,0.0,Midsize Cars,2012,1750,,,,,,,,,GMX +10.987,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.2989,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,30,,-1,1850,0,Regular,Regular Gasoline,-1,-1,38,37.6703,0,0.0,0.0,0.0,0.0,0,0,31372,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,53.5,0.0,Midsize Cars,2012,2750,,,T,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.9932,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,31,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,36.2655,0,0.0,0.0,0.0,0.0,0,0,31373,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,51.4,0.0,Midsize Cars,2012,2500,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,22,21.8708,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8298,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,37,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,33.168,0,0.0,0.0,0.0,0.0,0,0,31374,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8,0.0,46.8,0.0,Midsize Cars,2012,1500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,16.7358,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7988,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,38,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,25.5038,0,0.0,0.0,0.0,0.0,0,0,31375,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8964,0.0,35.5924,0.0,Midsize Cars,2012,-1750,,,,,,,,,GMX +12.657024,4.160002,0.0,0.0,22,21.8713,15,14.633,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,25.8575,18,17.5601,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,39,SIDI; FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,33.2683,23,23.2426,0.0,0.0,0.0,0,0,31376,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),27.8006,18.6,46.9482,32.8,Midsize Cars,2012,1500,,,,,FFV,E85,300,,GMX +9.976196,0.0,0.0,0.0,28,28.0887,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,33.0404,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,54,,-1,1650,0,Regular,Regular Gasoline,-1,-1,42,42.1145,0,0.0,0.0,0.0,0.0,0,0,31377,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.5,0.0,60.2,0.0,Midsize Cars,2012,3750,,,T,,,,,,GMX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0881,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,200,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.5645,0,0.0,0.0,0.0,0.0,0,0,31378,0,14,Chrysler,200,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.517,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,203,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,30.9288,0,0.0,0.0,0.0,0.0,0,0,31379,0,14,Chrysler,200,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2012,500,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,79,3138,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1987,1500,,,,,,,,, +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8337,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,22.3366,16,16.3593,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,209,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,28.8805,21,21.0581,0.0,0.0,0.0,0,0,31380,0,14,Chrysler,200,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2012,-500,,,,,FFV,E85,270,,CRX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.8804,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,109,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,22.5931,0,0.0,0.0,0.0,0.0,0,0,31381,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,31.4,0.0,Midsize Cars,2012,-5750,G,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0881,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,201,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.5645,0,0.0,0.0,0.0,0.0,0,0,31382,0,13,Dodge,Avenger,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.517,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,204,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,30.9288,0,0.0,0.0,0.0,0.0,0,0,31383,0,13,Dodge,Avenger,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2012,500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8337,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,22.3366,16,16.3593,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,210,FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,28.8805,21,21.0581,0.0,0.0,0.0,0,0,31384,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2012,-500,,,,,FFV,E85,270,,CRX +13.73375,0.0,0.0,0.0,22,21.8708,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4854,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,71,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.6751,0,0.0,0.0,0.0,0.0,0,0,31385,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8,0.0,40.2,0.0,Midsize Cars,2012,500,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.5529,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.405,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,72,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,24.5818,0,0.0,0.0,0.0,0.0,0,0,31386,0,16,Ford,Fusion AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.655,0.0,34.2607,0.0,Midsize Cars,2012,-2500,,,,,,,,,FMX +16.4805,4.994,0.0,0.0,18,17.5293,13,12.7382,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,20.4173,15,14.8308,0.0,0.0,0.0,6,3.0,All-Wheel Drive,73,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,26,25.5353,19,18.5568,0.0,0.0,0.0,0,0,31387,0,16,Ford,Fusion AWD FFV,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9472,15.9486,35.6814,25.8996,Midsize Cars,2012,-1750,,,,,FFV,E85,250,,FMX +8.438016000000001,0.0,0.0,0.0,41,41.4031,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,38.9912,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,74,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,36.3995,0,0.0,0.0,0.0,0.0,0,0,31388,0,16,Ford,Fusion Hybrid FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2012,5000,,,,,Hybrid,,,275V Ni-MH,FMX +13.1844,0.0,0.0,0.0,22,21.6515,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2082,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,75,,-1,2200,0,Regular,Regular Gasoline,-1,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,31389,0,16,Ford,Fusion S FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.5,0.0,44.4,0.0,Midsize Cars,2012,1000,,,,,,,,,FMX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,79,3139,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1987,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.7449,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3933,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,78,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.8297,0,0.0,0.0,0.0,0.0,0,0,31390,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.0,0.0,46.3,0.0,Midsize Cars,2012,1500,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.5758,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6666,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,79,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.9021,0,0.0,0.0,0.0,0.0,0,0,31391,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),27.3967,0.0,41.994,0.0,Midsize Cars,2012,1000,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0467,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,80,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,31392,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.6,0.0,Midsize Cars,2012,-1000,,,,,,,,,FMX +14.327048,4.679378,0.0,0.0,20,19.5877,14,13.8779,0.0,0.0,0.0,-1,-1,393.4375,386.39130434782606,23,22.747,16,16.2735,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,81,FFV,-1,2400,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,28.3323,21,20.6248,0.0,0.0,0.0,0,0,31393,0,16,Ford,Fusion FWD FFV,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7,17.5,39.7,28.9,Midsize Cars,2012,0,,,,,FFV,E85,260,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.5529,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.405,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,76,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,24.5818,0,0.0,0.0,0.0,0.0,0,0,31394,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.655,0.0,34.2607,0.0,Midsize Cars,2012,-2500,,,,,,,,,FMX +8.438016000000001,0.0,0.0,0.0,41,41.4031,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,38.9912,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,77,,-1,1400,0,Regular,Regular Gasoline,-1,-1,36,36.3995,0,0.0,0.0,0.0,0.0,0,0,31395,0,11,Lincoln,MKZ Hybrid FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),56.5,0.0,51.6,0.0,Midsize Cars,2012,5000,,,,,Hybrid,,,275V Ni-MH,FMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,27.381,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,82,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,31396,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.6,0.0,Midsize Cars,2012,-1000,,,,,,,,,FMX +10.987,0.0,0.0,0.0,27,26.5167,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.5651,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,34.3983,0,0.0,0.0,0.0,0.0,0,0,31397,0,13,Nissan,Sentra,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.264,0.0,48.6222,0.0,Midsize Cars,2012,2750,,,,,,,,,NSX +12.19557,0.0,0.0,0.0,24,24.046,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.6531,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,31398,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.8,0.0,43.2,0.0,Midsize Cars,2012,1750,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,24,23.5414,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.196,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,21,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.3836,0,0.0,0.0,0.0,0.0,0,0,31399,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.1,0.0,42.6998,0.0,Midsize Cars,2012,1500,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3321,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,314,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1985,-4250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,3140,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1987,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,21.0648,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7917,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,22,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,28.2637,0,0.0,0.0,0.0,0.0,0,0,31400,0,13,Nissan,Sentra,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7,0.0,39.6,0.0,Midsize Cars,2012,-500,,,,,,,,,NSX +12.19557,0.0,0.0,0.0,23,23.2434,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.6338,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,32.4123,0,0.0,0.0,0.0,0.0,0,0,31401,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.6877,0.0,45.6839,0.0,Midsize Cars,2012,1750,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,19.9028,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.5115,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.8057,0,0.0,0.0,0.0,0.0,0,0,31402,0,15,Nissan,Altima,Y,false,0,101,0,0.0,0.0,0.0,0.0,Auto(AV-S6),25.1249,0.0,37.4789,0.0,Midsize Cars,2012,0,,,,,,,,,NSX +14.964294,4.679378,0.0,0.0,18,17.9444,13,12.9999,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.5072,16,15.7551,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,74,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,28.3986,21,21.2632,0.0,0.0,0.0,0,0,31403,0,18,Saab,9-5 Sedan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4991,16.2996,39.7967,29.7974,Midsize Cars,2012,-500,,,T,,FFV,E85,310,,SAX +13.1844,4.160002,0.0,0.0,20,20.2543,15,14.9534,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,24.5734,18,17.7935,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,75,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,33.2357,23,23.1729,0.0,0.0,0.0,0,0,31404,0,18,Saab,9-5 Sedan,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,18.9,46.9,32.7,Midsize Cars,2012,1000,,,T,,FFV,E85,350,,SAX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1412,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,11,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,28.7436,0,0.0,0.0,0.0,0.0,0,0,31405,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,40.3,0.0,Midsize Cars,2012,0,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0699,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,31406,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2,0.0,35.8,0.0,Midsize Cars,2012,-1000,,,T,,,,,,VVX +14.964294,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6949,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,40,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,31407,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,0.0,41.6,0.0,Large Cars,2012,-500,,,,,,,,,GMX +14.964294,4.679378,0.0,0.0,18,17.7948,13,13.4857,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.6949,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,41,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,30,29.633,22,22.296,0.0,0.0,0.0,0,0,31408,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Large Cars,2012,-500,,,,,FFV,E85,280,,GMX +12.657024,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.2945,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,15,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,34,33.6412,0,0.0,0.0,0.0,0.0,0,0,31409,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,47.5,0.0,Large Cars,2012,1500,,,T,,,,,,HYX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57611,(16-VALVE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,86,3141,0,0,Toyota,Corolla FX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Subcompact Cars,1987,500,,2MODE 2LKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,23.6416,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5862,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,16,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,34.6529,0,0.0,0.0,0.0,0.0,0,0,31410,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2388,0.0,49.0,0.0,Large Cars,2012,2250,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.546,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,34.5855,0,0.0,0.0,0.0,0.0,0,0,31411,0,16,Hyundai,Sonata,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.9,0.0,Large Cars,2012,2250,,,,,,,,,HYX +16.4805,0.0,0.0,0.0,17,16.978,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.0911,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,29,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31412,0,16,Hyundai,Genesis,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.3,0.0,36.4,0.0,Large Cars,2012,-3000,,,,,,,,,HYX +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,1,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31413,0,14,Rolls-Royce,Phantom,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2012,-9500,G,,,,,,,,RRG +23.534154,0.0,0.0,0.0,11,11.4133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.5412,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,2,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31414,0,14,Rolls-Royce,Phantom EWB,N,false,0,125,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9939,0.0,24.2,0.0,Large Cars,2012,-9500,G,,,,,,,,RRG +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.7542,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,16,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,25.8545,0,0.0,0.0,0.0,0.0,0,0,31415,0,28,Cadillac,CTS Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,36.1,0.0,Small Station Wagons,2012,-1000,,,,,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.9667,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1781,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,17,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,18.3146,0,0.0,0.0,0.0,0.0,0,0,31416,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),14.7,0.0,25.3,0.0,Small Station Wagons,2012,-9500,G,,,S,,,,,GMX +20.589638,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.7656,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,18,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,31417,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,25.8,0.0,Small Station Wagons,2012,-6750,G,,,S,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5687,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,84,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,31418,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.3,0.0,Small Station Wagons,2012,-1000,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,23,23.397,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.0748,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,27,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.3156,0,0.0,0.0,0.0,0.0,0,0,31419,0,28,Hyundai,Elantra Touring,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.9,0.0,42.6,0.0,Small Station Wagons,2012,1500,,,,,,,,,HYX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57611,(16-VALVE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,86,3142,0,0,Toyota,Corolla FX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1987,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.9804,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,28,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.7926,0,0.0,0.0,0.0,0.0,0,0,31420,0,28,Hyundai,Elantra Touring,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4,0.0,43.3,0.0,Small Station Wagons,2012,1500,,,,,,,,,HYX +14.964294,4.679378,0.0,0.0,18,17.9444,13,12.9999,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.5072,16,15.7551,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,66,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,28.3986,21,21.2632,0.0,0.0,0.0,0,0,31421,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4991,16.2996,39.7967,29.7974,Small Station Wagons,2012,-500,,,T,,FFV,E85,270,,SAX +13.1844,4.160002,0.0,0.0,20,20.2543,15,15.4281,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,24.5734,18,18.1396,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,67,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,33.2357,23,23.102,0.0,0.0,0.0,0,0,31422,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,19.5,46.9,32.6,Small Station Wagons,2012,1000,,,T,,FFV,E85,300,,SAX +17.337486000000002,0.0,0.0,0.0,17,16.9524,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2445,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,526,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.0542,0,0.0,0.0,0.0,0.0,0,0,31423,0,0,Chevrolet,Colorado 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1826,0.0,32.0618,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9383,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,534,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,31424,0,0,Chevrolet,Colorado Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,15,15.2927,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.1056,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,540,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,20.0041,0,0.0,0.0,0.0,0.0,0,0,31425,0,0,Chevrolet,Colorado Cab Chassis inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.7,0.0,Small Pickup Trucks 2WD,2012,-4250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,17.1143,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4153,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,577,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.2332,0,0.0,0.0,0.0,0.0,0,0,31426,0,0,GMC,Canyon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.3969,0.0,32.319,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,15,15.2927,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.1056,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,585,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,20.0041,0,0.0,0.0,0.0,0.0,0,0,31427,0,0,GMC,Canyon Cab Chassis Inc 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.7,0.0,Small Pickup Trucks 2WD,2012,-4250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9383,0,0.0,0.0,0.0,0.0,5,3.7,Rear-Wheel Drive,586,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,31428,0,0,GMC,Canyon Crew Cab 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.8,0.0,31.6,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.6464,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8598,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,530,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.5195,0,0.0,0.0,0.0,0.0,0,0,31429,0,0,Chevrolet,Colorado 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.7783,0.0,31.2945,0.0,Small Pickup Trucks 4WD,2012,-2500,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,77,3143,9,0,Toyota,Corolla Sport,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1987,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.7442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8888,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,538,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.462,0,0.0,0.0,0.0,0.0,0,0,31430,0,0,Chevrolet,Colorado Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5912,0.0,29.7802,0.0,Small Pickup Trucks 4WD,2012,-3250,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,15.7442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8888,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,541,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.462,0,0.0,0.0,0.0,0.0,0,0,31431,0,0,Chevrolet,Colorado Cab Chassis inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5912,0.0,29.7802,0.0,Small Pickup Trucks 4WD,2012,-3250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.7707,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9931,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,581,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.664,0,0.0,0.0,0.0,0.0,0,0,31432,0,0,GMC,Canyon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.9425,0.0,31.5017,0.0,Small Pickup Trucks 4WD,2012,-2500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,15.7442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8888,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,590,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.462,0,0.0,0.0,0.0,0.0,0,0,31433,0,0,GMC,Canyon Crew Cab 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5912,0.0,29.7802,0.0,Small Pickup Trucks 4WD,2012,-3250,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,15.7442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8888,0,0.0,0.0,0.0,0.0,5,3.7,4-Wheel Drive,592,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.462,0,0.0,0.0,0.0,0.0,0,0,31434,0,0,GMC,Canyon Cab Chassis Inc 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.5912,0.0,29.7802,0.0,Small Pickup Trucks 4WD,2012,-3250,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.6196,11,10.8103,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.9193,13,12.6062,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,544,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.9464,16,15.818,0.0,0.0,0.0,0,0,31435,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1218,13.4,29.0435,21.9326,Standard Pickup Trucks 2WD,2012,-4250,,,,,FFV,E85,330/450,,GMX +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.3726,11,10.656,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,545,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.562,13,13.4698,0.0,0.0,0.0,0,0,31436,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.5133,9.1006,17.562,13.4698,Standard Pickup Trucks 2WD,2012,-7750,,,,,FFV,E85,290,,GMX +19.381068,0.0,0.0,0.0,15,15.0239,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9147,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,546,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.9895,0,0.0,0.0,0.0,0.0,0,0,31437,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.6488,0.0,27.6792,0.0,Standard Pickup Trucks 2WD,2012,-4250,,,,,,,,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.8184,10,10.3876,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.7322,12,11.7628,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,547,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,18.938,14,14.0335,0.0,0.0,0.0,0,0,31438,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0819,12.8408,26.1843,19.4032,Standard Pickup Trucks 2WD,2012,-5250,,,,,FFV,E85,310/420,,GMX +18.304342000000002,5.758082,0.0,0.0,15,15.3692,11,11.1849,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,17.7499,13,12.9968,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,549,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,21.8952,16,16.2053,0.0,0.0,0.0,0,0,31439,0,0,Chevrolet,Silverado C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2012,-3250,,,,,FFV,E85,340,,GMX +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57020,(FFS) 2 barrel carb,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,77,3144,9,0,Toyota,Corolla Sport,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.3077,0.0,Subcompact Cars,1987,1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,14.0418,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2036,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,19.9592,0,0.0,0.0,0.0,0.0,0,0,31440,0,0,Dodge,Ram 1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3713,0.0,27.6361,0.0,Standard Pickup Trucks 2WD,2012,-5250,,,,,,,,,CRX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,58,,-1,3600,0,Midgrade,Midgrade Gasoline,-1,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,31441,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2012,-6000,,,,,,,,,CRX +18.304342000000002,5.758082,0.0,0.0,15,15.3692,11,11.1849,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,17.7499,13,12.9968,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,595,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,22,21.8952,16,16.2053,0.0,0.0,0.0,0,0,31442,0,0,GMC,Sierra C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2012,-3250,,,,,FFV,E85,340,,GMX +19.381068,5.758082,0.0,0.0,15,14.6197,11,10.8103,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.9194,13,12.6063,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,596,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.9466,16,15.8182,0.0,0.0,0.0,0,0,31443,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.122,13.4,29.0438,21.9329,Standard Pickup Trucks 2WD,2012,-4250,,,,,FFV,E85,330/450,,GMX +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.3726,11,10.656,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,597,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.562,13,13.4698,0.0,0.0,0.0,0,0,31444,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.2,24.9,18.6,Standard Pickup Trucks 2WD,2012,-7750,,,,,FFV,E85,290,,GMX +19.381068,0.0,0.0,0.0,15,15.0797,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.9734,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,598,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,20.051,0,0.0,0.0,0.0,0.0,0,0,31445,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7217,0.0,27.7668,0.0,Standard Pickup Trucks 2WD,2012,-4250,,,,,,,,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.8589,10,10.4224,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.7726,12,11.7957,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,599,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,18.975,14,14.0599,0.0,0.0,0.0,0,0,31446,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.1343,12.8857,26.2368,19.4407,Standard Pickup Trucks 2WD,2012,-5250,,,,,FFV,E85,310/420,,GMX +19.381068,5.758082,0.0,0.0,15,14.6282,11,10.8268,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.9154,13,12.6107,0.0,0.0,0.0,8,5.3,4-Wheel Drive,550,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.9115,16,15.7907,0.0,0.0,0.0,0,0,31447,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.133,13.4208,28.9937,21.8937,Standard Pickup Trucks 4WD,2012,-4250,,,,,FFV,E85,330/450,,GMX +23.534154,7.4910000000000005,0.0,0.0,12,12.1944,9,8.8614,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1333,10,10.47,0.0,0.0,0.0,8,6.2,4-Wheel Drive,551,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5422,13,13.4552,0.0,0.0,0.0,0,0,31448,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.1949,8.8616,17.5421,13.4555,Standard Pickup Trucks 4WD,2012,-7750,,,,,FFV,E85,260,,GMX +21.974,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4401,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,552,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31449,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2012,-6250,,,,,,,,,GMX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS) fuel injection,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,77,3145,9,0,Toyota,Corolla Sport,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1987,1000,,,,,,,,, +21.974,6.806822,0.0,0.0,13,13.1341,10,9.8812,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.8091,11,11.0861,0.0,0.0,0.0,8,4.8,4-Wheel Drive,553,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5437,13,13.0278,0.0,0.0,0.0,0,0,31450,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1982,12.1864,24.2088,17.9773,Standard Pickup Trucks 4WD,2012,-6250,,,,,FFV,E85,280/380,,GMX +21.974,0.0,0.0,0.0,13,13.3682,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.283,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,59,,-1,3850,0,Midgrade,Midgrade Gasoline,-1,-1,19,18.5262,0,0.0,0.0,0.0,0.0,0,0,31451,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.5,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2012,-7250,,,,,,,,,CRX +19.381068,5.758082,0.0,0.0,15,14.6275,11,10.8263,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.9149,13,12.6104,0.0,0.0,0.0,8,5.3,4-Wheel Drive,601,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.9116,16,15.7908,0.0,0.0,0.0,0,0,31452,0,0,GMC,Sierra K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1322,13.4202,28.9939,21.8939,Standard Pickup Trucks 4WD,2012,-4250,,,,,FFV,E85,330/450,,GMX +23.534154,7.4910000000000005,0.0,0.0,12,12.1864,9,8.8556,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1207,10,10.4608,0.0,0.0,0.0,8,6.2,4-Wheel Drive,602,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5196,13,13.4379,0.0,0.0,0.0,0,0,31453,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.981,10.8865,24.8408,18.5549,Standard Pickup Trucks 4WD,2012,-7750,,,,,FFV,E85,260,,GMX +21.974,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4401,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,603,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31454,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.4,0.0,24.2,0.0,Standard Pickup Trucks 4WD,2012,-6250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.1154,10,9.867,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.7836,11,11.0674,0.0,0.0,0.0,8,4.8,4-Wheel Drive,604,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5049,13,13.0004,0.0,0.0,0.0,0,0,31455,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.174,12.168,24.1539,17.9383,Standard Pickup Trucks 4WD,2012,-6250,,,,,FFV,E85,280/380,,GMX +23.534154,7.4910000000000005,0.0,0.0,12,12.2012,9,8.8662,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.1438,10,10.4776,0.0,0.0,0.0,8,6.2,4-Wheel Drive,606,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5611,13,13.4698,0.0,0.0,0.0,0,0,31456,0,0,GMC,Sierra K15 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,10.9,24.9,18.6,Standard Pickup Trucks 4WD,2012,-7750,,,,,FFV,E85,260,,GMX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7946,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,621,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,31457,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2012,-4250,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1671,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,90,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31458,0,0,Ford,Transit Connect Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4,0.0,37.5,0.0,Special Purpose Vehicle 2WD,2012,0,,,,,,,,,FMX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7946,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,622,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,31459,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2012,-4250,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,3146,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1987,-4750,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,21.5332,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.5775,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,70,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,26.6351,0,0.0,0.0,0.0,0.0,0,0,31460,0,0,Ford,Transit Connect Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3658,0.0,37.2314,0.0,Special Purpose Vehicle 2WD,2012,500,,,,,,,,,FMX +16.4805,5.348574,0.0,0.0,17,17.1167,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.974,14,14.3176,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,540,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,25.0939,18,17.9616,0.0,0.0,0.0,0,0,31461,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2012,-1750,,,,,FFV,E85,280,,CRX +16.4805,5.348574,0.0,0.0,17,17.1167,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.974,14,14.3176,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,541,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,25.0939,18,17.9616,0.0,0.0,0.0,0,0,31462,0,0,Dodge,Grand Caravan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2012,-1750,,,,,FFV,E85,280,,CRX +16.4805,5.348574,0.0,0.0,17,17.1167,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.974,14,14.3176,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,542,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,25.0939,18,17.9616,0.0,0.0,0.0,0,0,31463,0,0,Volkswagen,Routan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2012,-1750,,,,,FFV,E85,280,,CRX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,500,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,31464,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,505,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,31465,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,310,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,506,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,31466,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,380,,GMX +16.4805,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5652,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,21,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31467,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,0.0,33.8,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,GMX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,23,SIDI; FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,31468,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Sport Utility Vehicle - 2WD,2012,1500,,,,,FFV,E85,340,,GMX +16.4805,5.348574,0.0,0.0,17,16.8899,12,12.3272,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.5652,14,14.2441,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,24,SIDI; FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,24.2623,18,17.5866,0.0,0.0,0.0,0,0,31469,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,15.4,33.8,24.5,Sport Utility Vehicle - 2WD,2012,-1750,,,,,FFV,E85,290,,GMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57062,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,3147,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1987,-4750,,2MODE 2LKUP,T,,,,,, +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,509,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,31470,0,0,Chevrolet,Tahoe 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2012,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,511,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,31471,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2012,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,520,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,31472,0,0,Chevrolet,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2012,-4250,,,,,FFV,E85,410,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,542,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,31473,0,0,Chevrolet,Traverse FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,12.3574,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.7918,14,14.1018,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,35,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,23.1504,17,17.0421,0.0,0.0,0.0,0,0,31474,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,15.2,32.2,23.5,Sport Utility Vehicle - 2WD,2012,-2500,,,,,FFV,E85,350,,CRX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,37,,-1,3600,0,Midgrade,Midgrade Gasoline,-1,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,31475,0,0,Dodge,Durango 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2012,-6000,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9311,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,530,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31476,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,CRX +16.4805,4.994,0.0,0.0,17,16.6628,13,12.5133,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,19.7253,15,14.6336,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,531,FFV,-1,2750,3050,Gasoline or E85,Regular Gasoline,-1,-1,25,25.4399,18,18.4557,0.0,0.0,0.0,0,0,31477,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8,15.4,35.5,25.5,Sport Utility Vehicle - 2WD,2012,-1750,,,,,FFV,E85,290,,CRX +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4365,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,86,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,31478,0,0,Ford,Flex FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8,0.0,34.0,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,FMX +10.283832,0.0,0.0,0.0,34,34.0411,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.3611,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,88,,-1,1700,0,Regular,Regular Gasoline,-1,-1,31,30.5201,0,0.0,0.0,0.0,0.0,0,0,31479,0,0,Ford,Escape Hybrid FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),45.2,0.0,42.9,0.0,Sport Utility Vehicle - 2WD,2012,3500,,,,,Hybrid,,,330V Ni-MH,FMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57062,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,3148,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1987,-4750,,,T,,,,,, +15.689436,4.679378,0.0,0.0,19,19.067,14,13.8236,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,21.3321,16,15.5983,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,99,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,25,24.9555,19,18.5015,0.0,0.0,0.0,0,0,31480,0,0,Ford,Escape FWD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,17.4,34.8,25.8,Sport Utility Vehicle - 2WD,2012,-1000,,,,,FFV,E85,290,,FMX +14.327048,0.0,0.0,0.0,21,20.615,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.3129,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,100,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,27.7519,0,0.0,0.0,0.0,0.0,0,0,31481,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0888,0.0,38.8544,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,23,22.5996,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7437,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,101,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,27.9892,0,0.0,0.0,0.0,0.0,0,0,31482,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,39.2,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5652,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31483,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,0.0,33.8,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,GMX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,-1,-1,349.72222222222223,341.8076923076923,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,59,SIDI; FFV,-1,2100,2550,Gasoline or E85,Regular Gasoline,-1,-1,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,31484,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Sport Utility Vehicle - 2WD,2012,1500,,,,,FFV,E85,340,,GMX +16.4805,5.348574,0.0,0.0,17,16.8899,12,12.3272,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.5652,14,14.2441,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,60,SIDI; FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,24.2623,18,17.5866,0.0,0.0,0.0,0,0,31485,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.1,15.4,33.8,24.5,Sport Utility Vehicle - 2WD,2012,-1750,,,,,FFV,E85,290,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,560,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,31486,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2012,-4250,,,,,FFV,E85,330,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,561,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,31487,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,310,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,568,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,31488,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Sport Utility Vehicle - 2WD,2012,-4250,,,,,FFV,E85,410,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,569,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,31489,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,380,,GMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,3149,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1987,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,593,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,31490,0,0,GMC,Acadia FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,17,16.6628,13,12.747,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,19.1516,14,14.4895,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,31,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,23.4287,17,17.396,0.0,0.0,0.0,0,0,31491,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,15.7,32.6,24.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,FFV,E85,350,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1368,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,40,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,21.8952,0,0.0,0.0,0.0,0.0,0,0,31492,0,0,Jeep,Liberty 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.8,0.0,30.4,0.0,Sport Utility Vehicle - 2WD,2012,-3250,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5967,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,87,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,31493,0,0,Lincoln,MKT FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,32.9,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0991,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,13,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,31494,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.4,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0991,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,18,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,31495,0,37,Volvo,XC70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.4,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,VVX +21.974,6.242500000000001,0.0,0.0,13,13.0,10,9.9496,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,503,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,31496,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Sport Utility Vehicle - 4WD,2012,-6250,,,,,FFV,E85,310,,GMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,26,SIDI; FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,31497,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Sport Utility Vehicle - 4WD,2012,0,,,,,FFV,E85,320,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,11.8717,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.8124,14,13.6837,0.0,0.0,0.0,6,3.0,All-Wheel Drive,27,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,23.22,17,16.8219,0.0,0.0,0.0,0,0,31498,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,14.8,32.3,23.4,Sport Utility Vehicle - 4WD,2012,-2500,,,,,FFV,E85,290,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,90,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,31499,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.3,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3322,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,315,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1985,-2500,,,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,80,3150,10,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1987,1750,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,14.6028,11,10.8109,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.8774,13,12.5799,0.0,0.0,0.0,8,5.3,4-Wheel Drive,510,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.8459,16,15.7246,0.0,0.0,0.0,0,0,31500,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,28.9,21.8,Sport Utility Vehicle - 4WD,2012,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.6028,11,10.8109,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.8774,13,12.5799,0.0,0.0,0.0,8,5.3,4-Wheel Drive,522,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.8459,16,15.7246,0.0,0.0,0.0,0,0,31501,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,28.9,21.8,Sport Utility Vehicle - 4WD,2012,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.6028,11,10.8109,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.8774,13,12.5799,0.0,0.0,0.0,8,5.3,4-Wheel Drive,524,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.8459,16,15.7246,0.0,0.0,0.0,0,0,31502,0,0,Chevrolet,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,28.9,21.8,Sport Utility Vehicle - 4WD,2012,-4250,,,,,FFV,E85,410,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5008,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,543,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,31503,0,0,Chevrolet,Traverse AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.1315,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.5353,14,13.936,0.0,0.0,0.0,6,3.6,All-Wheel Drive,36,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.6628,17,16.6879,0.0,0.0,0.0,0,0,31504,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.1,31.5,23.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,FFV,E85,350,,CRX +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.2156,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,38,,-1,3850,0,Midgrade,Midgrade Gasoline,-1,-1,20,19.9339,0,0.0,0.0,0.0,0.0,0,0,31505,0,0,Dodge,Durango 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7,0.0,27.6,0.0,Sport Utility Vehicle - 4WD,2012,-7250,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8209,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,532,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,31506,0,0,Dodge,Journey AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.9,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.5572,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9961,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,67,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2616,0,0.0,0.0,0.0,0.0,0,0,31507,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3462,0.0,30.9248,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.4707,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,85,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,31508,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,32.0,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,FMX +11.360558000000001,0.0,0.0,0.0,30,30.4101,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.893,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,89,,-1,1900,0,Regular,Regular Gasoline,-1,-1,27,27.2326,0,0.0,0.0,0.0,0.0,0,0,31509,0,0,Ford,Escape Hybrid AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8484,0.0,38.099,0.0,Sport Utility Vehicle - 4WD,2012,2500,,,,,Hybrid,,,330V Ni-MH,FMX +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,13,80,3151,10,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,40.0,0.0,53.0,0.0,Subcompact Cars,1987,3750,,,,,,,,, +16.4805,5.348574,0.0,0.0,18,18.1651,13,13.1063,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.9909,14,14.5999,0.0,0.0,0.0,6,3.0,All-Wheel Drive,98,FFV,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.7907,17,16.9624,0.0,0.0,0.0,0,0,31510,0,0,Ford,Escape AWD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7933,16.1624,31.6835,23.3875,Sport Utility Vehicle - 4WD,2012,-1750,,,,,FFV,E85,250,,FMX +14.327048,0.0,0.0,0.0,20,20.347,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7751,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,131,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.6641,0,0.0,0.0,0.0,0.0,0,0,31511,0,0,Ford,Escape AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.7255,0.0,37.2735,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,FMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,62,SIDI; FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,31512,0,0,GMC,Terrain AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Sport Utility Vehicle - 4WD,2012,0,,,,,FFV,E85,320,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,11.8717,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.8124,14,13.6837,0.0,0.0,0.0,6,3.0,All-Wheel Drive,63,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,23.22,17,16.8219,0.0,0.0,0.0,0,0,31513,0,0,GMC,Terrain AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.3,14.8,32.3,23.4,Sport Utility Vehicle - 4WD,2012,-2500,,,,,FFV,E85,290,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,92,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,31514,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.3,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.6028,11,10.8109,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.8774,13,12.5799,0.0,0.0,0.0,8,5.3,4-Wheel Drive,572,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.8459,16,15.7246,0.0,0.0,0.0,0,0,31515,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,28.9,21.8,Sport Utility Vehicle - 4WD,2012,-4250,,,,,FFV,E85,410,,GMX +21.974,6.242500000000001,0.0,0.0,13,13.0,10,9.9496,0.0,0.0,0.0,-1,-1,524.5833333333334,592.4666666666667,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,573,FFV,-1,3650,3800,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,31516,0,0,GMC,Yukon Denali 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Sport Utility Vehicle - 4WD,2012,-6250,,,,,FFV,E85,310,,GMX +19.381068,5.758082,0.0,0.0,15,14.6028,11,10.8109,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,16.8774,13,12.5799,0.0,0.0,0.0,8,5.3,4-Wheel Drive,574,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.8459,16,15.7246,0.0,0.0,0.0,0,0,31517,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,13.4,28.9,21.8,Sport Utility Vehicle - 4WD,2012,-4250,,,,,FFV,E85,330,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5008,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,594,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,31518,0,0,GMC,Acadia AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.918,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,25,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,25.6473,0,0.0,0.0,0.0,0.0,0,0,31519,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.7,0.0,35.8,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,HYX +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,80,3152,10,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Subcompact Cars,1987,2750,,,,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,16.1315,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.5353,14,13.936,0.0,0.0,0.0,6,3.6,All-Wheel Drive,32,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.6628,17,16.6879,0.0,0.0,0.0,0,0,31520,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.1,31.5,23.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,FFV,E85,350,,CRX +21.974,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.0013,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,34,,-1,3850,0,Midgrade,Midgrade Gasoline,-1,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,31521,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.5,0.0,27.1,0.0,Sport Utility Vehicle - 4WD,2012,-7250,,,,,,,,,CRX +23.534154,0.0,0.0,0.0,12,12.3962,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.2801,0,0.0,0.0,0.0,0.0,8,6.4,4-Wheel Drive,39,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,31522,0,0,Jeep,Grand Cherokee SRT8 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2498,0.0,24.2,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.1249,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,41,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,20.5655,0,0.0,0.0,0.0,0.0,0,0,31523,0,0,Jeep,Liberty 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.7,0.0,28.5,0.0,Sport Utility Vehicle - 4WD,2012,-4250,,,,,,,,,CRX +23.534154,0.0,0.0,0.0,12,11.575,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.7423,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,2,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.8203,0,0.0,0.0,0.0,0.0,0,0,31528,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.2035,0.0,24.5596,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,S,,,,,LRX +23.534154,0.0,0.0,0.0,12,12.2793,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.4564,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,3,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,18.4557,0,0.0,0.0,0.0,0.0,0,0,31529,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.1336,0.0,25.5096,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,,,,,,LRX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59016,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3153,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Subcompact Cars,1987,1000,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.6655,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,4,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,17.1129,0,0.0,0.0,0.0,0.0,0,0,31530,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4115,0.0,23.6028,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,S,,,,,LRX +21.974,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.5487,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,5,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,17.9616,0,0.0,0.0,0.0,0.0,0,0,31531,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4827,0.0,24.7928,0.0,Sport Utility Vehicle - 4WD,2012,-8000,,,,,,,,,LRX +23.534154,0.0,0.0,0.0,12,12.4354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.223,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,6,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,17.2545,0,0.0,0.0,0.0,0.0,0,0,31532,0,0,Land Rover,LR4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3164,0.0,23.8342,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,,,,,,LRX +18.304342000000002,0.0,0.0,0.0,16,15.5572,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9961,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,68,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2616,0,0.0,0.0,0.0,0.0,0,0,31533,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.3462,0.0,30.9248,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.7552,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7534,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,4,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,21.0101,0,0.0,0.0,0.0,0.0,0,0,31534,0,0,Mercedes-Benz,GLK350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.6057,0.0,29.1345,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.7269,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.5216,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,421,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,17.5458,0,0.0,0.0,0.0,0.0,0,0,31535,0,0,Mercedes-Benz,GL450 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.6742,0.0,24.2117,0.0,Sport Utility Vehicle - 4WD,2012,-8000,,,,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.409,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.0821,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,423,,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,16.8605,0,0.0,0.0,0.0,0.0,0,0,31536,0,0,Mercedes-Benz,GL550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,15.2662,0.0,23.2436,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,,,,,,MBX +25.336022,0.0,0.0,0.0,12,11.5114,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,12.7824,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,435,,-1,4650,0,Premium,Premium Gasoline,-1,-1,15,14.7764,0,0.0,0.0,0.0,0.0,0,0,31537,0,0,Mercedes-Benz,G550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.1189,0.0,20.3109,0.0,Sport Utility Vehicle - 4WD,2012,-11250,,,,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,16.7,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,1,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.8,0,0.0,0.0,0.0,0.0,0,0,31538,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.9316,0.0,32.5972,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.3,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,2,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.5,0,0.0,0.0,0.0,0.0,0,0,31539,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5066,0.0,29.8209,0.0,Sport Utility Vehicle - 4WD,2012,-5750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,73,3154,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Subcompact Cars,1987,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0573,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,3,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.1776,0,0.0,0.0,0.0,0.0,0,0,31540,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.4629,0.0,31.6418,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.7564,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.1918,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,7,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.5458,0,0.0,0.0,0.0,0.0,0,0,31541,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.2815,0.0,29.939,0.0,Sport Utility Vehicle - 4WD,2012,-5750,,,T,,,,,,PRX +15.689436,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4655,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,9,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,31542,0,0,Porsche,Cayenne S Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,25.0603,0.0,33.1281,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,,S,Hybrid,,,288V Ni-MH,PRX +16.4805,0.0,0.0,0.0,17,17.3279,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5953,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,23.3257,0,0.0,0.0,0.0,0.0,0,0,31543,0,37,Volvo,XC70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6799,0.0,32.452,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,T,,,,,,VVX +16.4805,0.0,0.0,0.0,17,17.3279,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5953,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,23.3257,0,0.0,0.0,0.0,0.0,0,0,31544,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6799,0.0,32.452,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,T,,,,,,VVX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,164,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,31545,15,0,Saab,9-3 Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.4095,0.0,37.1784,0.0,Compact Cars,2011,-500,,,T,,,,,,SAX +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,156,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31546,15,0,Saab,9-3 Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,40.5,0.0,Compact Cars,2011,0,,,T,,,,,,SAX +15.689436,4.679378,0.0,0.0,18,0.0,13,0.0,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,0.0,16,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,191,SIDI; FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,0.0,21,0.0,0.0,0.0,0.0,0,0,31547,0,18,Saab,9-5 Sedan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,16.3149,39.4447,29.5298,Midsize Cars,2011,-1000,,,T,,FFV,E85,310,,SAX +13.1844,4.160002,0.0,0.0,20,0.0,15,0.0,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,0.0,18,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,154,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,0.0,23,0.0,0.0,0.0,0.0,0,0,31548,0,18,Saab,9-5 Sedan,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,18.9,46.9,32.7,Midsize Cars,2011,1000,,,T,,FFV,E85,350,,SAX +14.964294,0.0,0.0,0.0,19,18.6264,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5303,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,163,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.5986,0,0.0,0.0,0.0,0.0,0,0,31549,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S5),23.4095,0.0,37.1784,0.0,Small Station Wagons,2011,-500,,,T,,,,,,SAX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,3155,0,0,Volkswagen,Scirocco,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1987,0,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,161,,-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,31550,0,30,Saab,9-3 SportCombi,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,43.1,0.0,Small Station Wagons,2011,500,,,T,,,,,,SAX +16.4805,0.0,0.0,0.0,17,17.1467,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4709,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,157,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,26.8276,0,0.0,0.0,0.0,0.0,0,0,31551,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4398,0.0,37.5108,0.0,Small Station Wagons,2011,-1750,,,T,,,,,,SAX +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,158,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,31552,0,30,Saab,9-3X SportCombi AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,41.0,0.0,Small Station Wagons,2011,0,,,T,,,,,,SAX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,7,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,31553,0,0,Saab,9-4X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2436,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,T,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,11,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,31554,0,0,Saab,9-4X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5003,0.0,31.3025,0.0,Sport Utility Vehicle - 4WD,2011,-2500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,5,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,31555,0,0,Saab,9-4X FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,34.4,0.0,Sport Utility Vehicle - 4WD,2011,-1750,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,13.8177,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.9819,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,2,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7591,0,0.0,0.0,0.0,0.0,0,0,31556,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),17.081,0.0,27.3512,0.0,Two Seaters,2012,-6750,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,13,13.2639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.912,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,66,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,21.0478,0,0.0,0.0,0.0,0.0,0,0,31557,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.9588,0.0,26.8281,0.0,Two Seaters,2012,-6750,G,,,,,,,,ADX +12.657024,0.0,0.0,0.0,23,22.5448,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7819,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,71,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,31.2694,0,0.0,0.0,0.0,0.0,0,0,31558,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5396,0.0,42.5266,0.0,Two Seaters,2012,500,,,T,,,,,,ADX +20.589638,0.0,0.0,0.0,13,13.2639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.912,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,73,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,21.0478,0,0.0,0.0,0.0,0.0,0,0,31559,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),15.9588,0.0,26.8281,0.0,Two Seaters,2012,-6750,G,,,,,,,,ADX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59018,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,3156,0,0,Volkswagen,Scirocco 16v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1987,0,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4441,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1658,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,74,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.9708,0,0.0,0.0,0.0,0.0,0,0,31560,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6465,0.0,24.301,0.0,Two Seaters,2012,-9500,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,11,11.4441,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1658,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,75,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.9708,0,0.0,0.0,0.0,0.0,0,0,31561,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6465,0.0,24.301,0.0,Two Seaters,2012,-9500,G,,,,,,,,ADX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.5032,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,6,,-1,2400,0,Premium,Premium Gasoline,-1,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,31562,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Two Seaters,2012,0,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7609,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,7,,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,31563,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2012,-500,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,21,20.6056,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2591,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,8,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,27.6037,0,0.0,0.0,0.0,0.0,0,0,31564,0,0,Mazda,MX-5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.076,0.0,38.6388,0.0,Two Seaters,2012,-1000,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,20,19.7576,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2465,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,236,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,28.9678,0,0.0,0.0,0.0,0.0,0,0,31565,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,0.0,40.6,0.0,Two Seaters,2012,-1000,,,,,,,,,MBX +12.657024,0.0,0.0,0.0,23,22.5448,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7819,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,70,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,31.2694,0,0.0,0.0,0.0,0.0,13,74,31566,0,0,Audi,TT Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5396,0.0,42.5266,0.0,Subcompact Cars,2012,500,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,18,17.751,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4751,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,80,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2021,0,0.0,0.0,0.0,0.0,13,74,31567,0,0,Audi,TT RS Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2,0.0,34.3,0.0,Subcompact Cars,2012,-3000,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,18.2699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4247,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,44,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.1558,0,0.0,0.0,0.0,0.0,0,0,31568,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.9331,0.0,37.9875,0.0,Subcompact Cars,2012,-1000,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,18.1,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3902,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,69,,-1,2600,0,Regular,Regular Gasoline,-1,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,31569,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1,0.0,39.6,0.0,Subcompact Cars,2012,-1000,,,T,,,,,,VVX +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.1,Front-Wheel Drive,61412,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,6,80,3157,0,0,Yugo,GV/GVX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1987,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,20.2179,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1781,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,12,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.23,0,0.0,0.0,0.0,0.0,17,95,31570,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5508,0.0,39.5508,0.0,Compact Cars,2012,0,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,22,22.1999,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7898,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,13,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,28.9123,0,0.0,0.0,0.0,0.0,17,95,31571,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),28.2509,0.0,40.5464,0.0,Compact Cars,2012,1000,,,,,,,,,TKX +16.4805,0.0,0.0,0.0,17,16.6714,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5471,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,319,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.7692,0,0.0,0.0,0.0,0.0,0,0,31572,0,11,Mercedes-Benz,CLS550,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.0313,0.0,36.0373,0.0,Compact Cars,2012,-3000,,,T,,,,,,MBX +14.964294,4.679378,0.0,0.0,18,17.9444,13,12.9999,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.5072,16,15.7551,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,72,SIDI; FFV,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,28,28.3986,21,21.2632,0.0,0.0,0.0,0,0,31573,15,0,Saab,9-3 Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4991,16.2996,39.7967,29.7974,Compact Cars,2012,-500,,,T,,FFV,E85,270,,SAX +13.1844,4.160002,0.0,0.0,20,20.2543,15,14.9534,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,24.5734,18,17.7935,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,73,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,33,33.2357,23,23.1729,0.0,0.0,0.0,0,0,31574,15,0,Saab,9-3 Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,18.9,46.9,32.7,Compact Cars,2012,1000,,,T,,FFV,E85,300,,SAX +11.236239000000001,0.0,0.0,0.0,30,29.8256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1548,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,50,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.5209,0,0.0,0.0,0.0,0.0,0,0,31575,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),39.021,0.0,59.2993,0.0,Compact Cars,2012,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.8256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1548,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,51,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.5209,0,0.0,0.0,0.0,0.0,15,94,31576,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),39.021,0.0,59.2993,0.0,Compact Cars,2012,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6875,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1741,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.9168,0,0.0,0.0,0.0,0.0,0,0,31577,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7527,0.0,59.9215,0.0,Compact Cars,2012,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6875,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1741,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.9168,0,0.0,0.0,0.0,0.0,15,94,31578,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7527,0.0,59.9215,0.0,Compact Cars,2012,3250,,,T,,Diesel,,,,VWX +13.1844,0.0,0.0,0.0,23,23.1009,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.4822,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,78,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.1554,0,0.0,0.0,0.0,0.0,0,0,31579,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1,0.0,41.499,0.0,Compact Cars,2012,1000,,,,,,,,,VWX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48103,"(FFS,TRBO) (MPFI)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,3158,0,0,Dodge,Charger GLH-S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1987,-1000,,,T,,,,,, +11.75609,0.0,0.0,0.0,24,24.3944,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.8344,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,79,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,33.6309,0,0.0,0.0,0.0,0.0,0,0,31580,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,46.2,0.0,Compact Cars,2012,2250,,,,,,,,,VWX +15.689436,0.0,0.0,0.0,18,17.6043,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1042,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,61,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.8782,0,0.0,0.0,0.0,0.0,0,0,31582,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),21.7,0.0,35.2,0.0,Midsize Cars,2012,-2250,,,,,,,,,ADX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5794,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,10,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,31583,0,15,Cadillac,CTS,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,38.3,0.0,Midsize Cars,2012,-500,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6818,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,9,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.8862,0,0.0,0.0,0.0,0.0,17,95,31584,0,0,Mazda,Speed 3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.7,0.0,Midsize Cars,2012,-2250,,,T,,,,,,TKX +11.236239000000001,0.0,0.0,0.0,30,30.4633,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1916,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,76,,-1,1750,0,Diesel,Diesel,-1,-1,40,40.2057,0,0.0,0.0,0.0,0.0,0,0,31585,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),37.9,0.0,56.8,0.0,Midsize Cars,2012,3250,,,T,,Diesel,,,,VWX +15.689436,0.0,0.0,0.0,18,17.6043,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1042,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,60,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.8782,0,0.0,0.0,0.0,0.0,0,0,31586,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),21.7,0.0,35.2,0.0,Large Cars,2012,-2250,,,,,,,,,ADX +11.236239000000001,0.0,0.0,0.0,30,29.8256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1548,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,52,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.5209,0,0.0,0.0,0.0,0.0,0,0,31587,0,20,Audi,A3,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),39.021,0.0,59.2993,0.0,Small Station Wagons,2012,3250,,,T,,Diesel,,,,VWX +13.73375,0.0,0.0,0.0,21,20.7067,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.0698,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,67,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.031,0,0.0,0.0,0.0,0.0,0,0,31588,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.223,0.0,41.1408,0.0,Small Station Wagons,2012,-500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,22,21.9198,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1592,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,68,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,27.6064,0,0.0,0.0,0.0,0.0,0,0,31589,0,20,Audi,A3,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.6097,0.0,39.7141,0.0,Small Station Wagons,2012,-500,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48104,"(FFS,TRBO) (MPFI)",-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,77,3159,0,0,Dodge,Charger GLH-S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1987,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.891,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.6187,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,69,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,28,28.1035,0,0.0,0.0,0.0,0.0,0,0,31590,0,20,Audi,A3 quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S6),27.2,0.0,37.1,0.0,Small Station Wagons,2012,-500,,,T,,,,,,ADX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5794,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,15,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,31591,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,38.3,0.0,Small Station Wagons,2012,-500,,,,,,,,,GMX +11.567466000000001,0.0,0.0,0.0,29,28.8556,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,32.8278,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49,,-1,1800,0,Diesel,Diesel,-1,-1,39,39.4682,0,0.0,0.0,0.0,0.0,0,0,31592,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),37.6,0.0,56.2,0.0,Small Station Wagons,2012,3000,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6875,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,34.1741,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,-1,1750,0,Diesel,Diesel,-1,-1,42,41.9168,0,0.0,0.0,0.0,0.0,0,0,31593,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7527,0.0,59.9215,0.0,Small Station Wagons,2012,3250,,,T,,Diesel,,,,VWX +17.337486000000002,5.348574,0.0,0.0,17,16.5226,12,12.2162,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,19.198,14,14.2357,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,20,SIDI; FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,24,23.9348,18,17.8403,0.0,0.0,0.0,0,0,31594,0,0,Cadillac,SRX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.615,15.242,33.3283,24.8419,Sport Utility Vehicle - 2WD,2012,-2500,,,,,FFV,E85,300,,GMX +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,119,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,31595,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Sport Utility Vehicle - 2WD,2012,1500,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,121,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,31596,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Sport Utility Vehicle - 2WD,2012,1500,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7919,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,23,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,27.5771,0,0.0,0.0,0.0,0.0,0,0,31597,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.441,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,24,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,31598,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.7,0.0,36.0,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.5116,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,26,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,31599,0,0,Hyundai,Santa Fe 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.6,0.0,36.4,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,316,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,26060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3160,15,14,Acura,Legend,N,false,86,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1987,-2500,,3LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,16.1041,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3757,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,802,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.2038,0,0.0,0.0,0.0,0.0,0,0,31600,0,0,Mercedes-Benz,GLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.8269,0.0,30.5994,0.0,Sport Utility Vehicle - 2WD,2012,-4750,,,,,,,,,MBX +13.73375,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.6349,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,83,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,31601,0,0,Volkswagen,Tiguan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4146,0.0,37.3979,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,18.2402,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1031,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,84,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1122,0,0.0,0.0,0.0,0.0,0,0,31602,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.8,0.0,Sport Utility Vehicle - 2WD,2012,-2250,,,T,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7296,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,40,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,31603,0,0,Volvo,XC90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3,0.0,31.9,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,VVX +19.109250000000003,0.0,0.0,0.0,17,17.4775,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,20.1873,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,72,,-1,2950,0,Diesel,Diesel,-1,-1,25,24.9072,0,0.0,0.0,0.0,0.0,0,0,31604,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.2,0.0,36.0,0.0,Sport Utility Vehicle - 4WD,2012,-2750,,,T,,Diesel,,,,ADX +18.304342000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7559,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,77,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,21.5458,0,0.0,0.0,0.0,0.0,0,0,31605,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.2985,0.0,29.8735,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,S,,,,,ADX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,501,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,31606,0,0,Buick,Enclave AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8937,12,11.7604,0.0,0.0,0.0,-1,-1,449.64285714285717,493.72222222222223,18,18.3611,14,13.5632,0.0,0.0,0.0,6,3.6,All-Wheel Drive,19,SIDI; FFV,-1,3050,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.6608,17,16.6902,0.0,0.0,0.0,0,0,31607,0,0,Cadillac,SRX AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7874,14.6416,31.4971,23.1983,Sport Utility Vehicle - 4WD,2012,-3250,,,,,FFV,E85,300,,GMX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,122,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,31608,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,123,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,31609,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,26060,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3161,15,14,Acura,Legend,Y,false,86,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6158,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,22,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,31610,0,0,Hyundai,Santa Fe 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.7,0.0,34.5,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,76,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,31611,0,0,Saab,9-4X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.3,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,20,19.2353,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0324,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,59,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,23.7438,0,0.0,0.0,0.0,0.0,0,0,31612,0,0,Volkswagen,Touareg Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,33.1,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,,S,Hybrid,,,288V Ni-MH,VWX +17.337486000000002,0.0,0.0,0.0,16,16.4121,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7889,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,81,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.8299,0,0.0,0.0,0.0,0.0,0,0,31613,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.3,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,,,,,,,VWX +14.327048,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.3914,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,82,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,31614,0,0,Volkswagen,Tiguan 4motion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.8555,0.0,37.4338,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,T,,,,,,ADX +18.304342000000002,0.0,0.0,0.0,16,15.8863,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3154,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,41,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,22.525,0,0.0,0.0,0.0,0.0,0,0,31615,0,0,Volvo,XC90 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7777,0.0,31.3024,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,VVX +16.4805,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3796,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31616,0,37,Volvo,XC70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,33.8,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,VVX +16.4805,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3796,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,31617,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,33.8,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,VVX +3.3756214821428574,0.21600000000000003,0.0,4.0,35,34.8879,95,94.51,0.0,36.0,0.64,87,-1,0.0,87.0,37,36.8746,94,93.8,36.0,0.0,0.64,4,1.4,Front-Wheel Drive,32,PHEV,-1,1650,650,Premium Gas or Electricity,Premium Gasoline,-1,-1,40,39.6331,93,92.9,0.0,37.0,0.63,18,90,31618,0,0,Chevrolet,Volt,Y,false,0,0,0,0.0,36.0,0.0,35.0,Auto (AV),47.5,135.0,53.6,132.7,Compact Cars,2012,7000,,,,,Plug-in Hybrid,Electricity,35,111 kW,GMX +32.961,0.0,0.0,0.0,8,8.4232,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,10.4424,0,0.0,0.0,0.0,0.0,16,8.0,All-Wheel Drive,85,,-1,6050,0,Premium,Premium Gasoline,-1,-1,15,14.7698,0,0.0,0.0,0.0,0.0,0,0,31619,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),10.0,0.0,17.9,0.0,Two Seaters,2012,-18250,G,,T,,,,,,BGT +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26070,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3162,15,14,Acura,Legend,N,false,86,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1987,-3250,,3LKUP,,,,,,, +21.974,0.0,0.0,0.0,12,12.0883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.7021,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,64,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.9831,0,0.0,0.0,0.0,0.0,0,0,31620,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2012,-8000,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,12,11.5388,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1465,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,65,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,20,19.5451,0,0.0,0.0,0.0,0.0,0,0,31621,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2012,-9500,G,,,,,,,,NLX +20.589638,0.0,0.0,0.0,14,13.6564,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.9743,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,271,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.1554,0,0.0,0.0,0.0,0.0,0,0,31622,0,0,Mercedes-Benz,SLS AMG Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6779,0.0,26.7967,0.0,Two Seaters,2012,-6750,G,,,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,28,27.697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.8944,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,40,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,35.9696,0,0.0,0.0,0.0,0.0,0,0,31623,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9405,0.0,50.9588,0.0,Two Seaters,2012,2250,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3588,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.3779,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,41,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,37.0325,0,0.0,0.0,0.0,0.0,0,0,31624,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.325,0.0,52.5455,0.0,Two Seaters,2012,2500,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,42,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.0845,0,0.0,0.0,0.0,0.0,0,0,31625,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Two Seaters,2012,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,43,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,34.7611,0,0.0,0.0,0.0,0.0,0,0,31626,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Two Seaters,2012,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,25.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7593,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,44,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,33.9025,0,0.0,0.0,0.0,0.0,0,0,31627,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9489,0.0,47.8871,0.0,Two Seaters,2012,1500,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.6104,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9529,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,45,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.3854,0,0.0,0.0,0.0,0.0,0,0,31628,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3966,0.0,50.0888,0.0,Two Seaters,2012,2000,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,25.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7593,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,46,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,33.9025,0,0.0,0.0,0.0,0.0,0,0,31629,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9489,0.0,47.8871,0.0,Two Seaters,2012,1500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26070,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3163,15,14,Acura,Legend,N,false,86,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,26.6104,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9529,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,47,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.3854,0,0.0,0.0,0.0,0.0,0,0,31630,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3966,0.0,50.0888,0.0,Two Seaters,2012,2000,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.9055,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9701,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,48,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.9213,0,0.0,0.0,0.0,0.0,0,0,31631,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9982,0.0,46.4353,0.0,Two Seaters,2012,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.9055,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9701,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.9213,0,0.0,0.0,0.0,0.0,0,0,31632,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9982,0.0,46.4353,0.0,Two Seaters,2012,1250,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4092,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.8952,0,0.0,0.0,0.0,0.0,0,0,31633,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4744,0.0,30.37,0.0,Minicompact Cars,2012,-5750,,,,S,,,,,JCX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0212,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.2443,0,0.0,0.0,0.0,0.0,0,0,31634,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4283,0.0,30.8503,0.0,Minicompact Cars,2012,-4750,,,,,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5914,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,31635,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7312,0.0,32.921,0.0,Minicompact Cars,2012,-3750,,,,,,,,,JCX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4092,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,10,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.8952,0,0.0,0.0,0.0,0.0,0,0,31636,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4744,0.0,30.37,0.0,Minicompact Cars,2012,-5750,,,,S,,,,,JCX +10.613442000000001,0.0,0.0,0.0,28,27.697,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.8944,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,10,,-1,1950,0,Premium,Premium Gasoline,-1,-1,36,35.9696,0,0.0,0.0,0.0,0.0,0,0,31637,6,0,MINI,Cooper,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9405,0.0,50.9588,0.0,Minicompact Cars,2012,2250,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3588,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.3779,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,11,,-1,1900,0,Premium,Premium Gasoline,-1,-1,37,37.0325,0,0.0,0.0,0.0,0.0,0,0,31638,6,0,MINI,Cooper,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.325,0.0,52.5455,0.0,Minicompact Cars,2012,2500,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,14,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.0845,0,0.0,0.0,0.0,0.0,0,0,31639,6,0,MINI,Cooper Convertible,Y,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Minicompact Cars,2012,2000,,,,,,,,,BMX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,10801,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3164,0,12,Sterling,825,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Compact Cars,1987,-4250,,,,,,,,, +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,15,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,34.7611,0,0.0,0.0,0.0,0.0,0,0,31640,6,0,MINI,Cooper Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Minicompact Cars,2012,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,25.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7593,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,16,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,33.9025,0,0.0,0.0,0.0,0.0,0,0,31641,6,0,MINI,Cooper S,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9489,0.0,47.8871,0.0,Minicompact Cars,2012,1500,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.6104,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9529,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,17,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.3854,0,0.0,0.0,0.0,0.0,0,0,31642,6,0,MINI,Cooper S,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3966,0.0,50.0888,0.0,Minicompact Cars,2012,2000,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,25.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7593,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,20,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,33.9025,0,0.0,0.0,0.0,0.0,0,0,31643,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9489,0.0,47.8871,0.0,Minicompact Cars,2012,1500,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.6104,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9529,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.3854,0,0.0,0.0,0.0,0.0,0,0,31644,6,0,MINI,Cooper S Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3966,0.0,50.0888,0.0,Minicompact Cars,2012,2000,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.9055,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9701,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,23,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.9213,0,0.0,0.0,0.0,0.0,0,0,31645,6,0,MINI,John Cooper Works,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9982,0.0,46.4353,0.0,Minicompact Cars,2012,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.9055,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9701,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.9213,0,0.0,0.0,0.0,0.0,0,0,31646,6,0,MINI,John Cooper Works Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9982,0.0,46.4353,0.0,Minicompact Cars,2012,1250,,,T,,,,,,BMX +8.89947,0.0,0.0,0.0,36,36.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,36.6168,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,11,,-1,1500,0,Regular,Regular Gasoline,-1,-1,37,37.4,0,0.0,0.0,0.0,0.0,4,74,31647,0,0,Scion,iQ,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),48.0,0.0,58.7,0.0,Minicompact Cars,2012,4500,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,14,13.8324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2027,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,362,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.4954,0,0.0,0.0,0.0,0.0,0,0,31648,11,0,BMW,M3 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2012,-6750,G,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.7438,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.051,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,363,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.1945,0,0.0,0.0,0.0,0.0,0,0,31649,11,0,BMW,M3 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.9853,0.0,27.9711,0.0,Subcompact Cars,2012,-6750,G,,,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3165,0,12,Sterling,825,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.4457,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.6933,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,364,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7231,0,0.0,0.0,0.0,0.0,0,0,31650,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,27.3,0.0,Subcompact Cars,2012,-6750,G,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5006,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.7486,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,365,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7726,0,0.0,0.0,0.0,0.0,0,0,31651,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2012,-6750,G,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.4552,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,35,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,31652,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,50.0,0.0,Midsize Cars,2012,2250,,,,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,26,26.1883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.4224,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,36,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,34.6529,0,0.0,0.0,0.0,0.0,0,0,31653,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.8,0.0,49.0,0.0,Midsize Cars,2012,2500,,,,,,,,,GMX +9.976196,0.0,0.0,0.0,29,29.2028,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.7969,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,1,,-1,1650,0,Regular,Regular Gasoline,-1,-1,39,38.6037,0,0.0,0.0,0.0,0.0,15,85,31654,0,12,Ford,Fiesta FWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.1,0.0,54.9,0.0,Subcompact Cars,2012,3750,,,,,,,,,FMX +9.976196,0.0,0.0,0.0,29,29.0175,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.6006,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,38.3953,0,0.0,0.0,0.0,0.0,15,85,31655,0,12,Ford,Fiesta FWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.833,0.0,54.587,0.0,Subcompact Cars,2012,3750,,,,,,,,,FMX +9.976196,0.0,0.0,0.0,29,29.2282,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,33.1028,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,189,,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,39.5032,0,0.0,0.0,0.0,0.0,15,85,31656,0,12,Ford,Fiesta SFE FWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.1366,0.0,56.2527,0.0,Subcompact Cars,2012,3750,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.3936,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0653,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,23,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.6123,0,0.0,0.0,0.0,0.0,0,0,31657,0,11,Lexus,IS 350 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0983,0.0,35.7494,0.0,Subcompact Cars,2012,-2250,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,19.4827,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2571,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,24,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.9472,0,0.0,0.0,0.0,0.0,0,0,31658,11,11,Lexus,IS 350/IS 350C,N,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5586,0.0,37.6844,0.0,Subcompact Cars,2012,-1750,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,19.6544,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2734,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,25,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.6068,0,0.0,0.0,0.0,0.0,0,0,31659,0,11,Lexus,IS 250 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.7899,0.0,37.1903,0.0,Subcompact Cars,2012,-1750,,,,,,,,,TYX +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,12202,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3166,13,0,Bitter Gmbh and Co. Kg,Bitter SC,N,false,194,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Compact Cars,1987,-6250,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.7337,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9517,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,26,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.7852,0,0.0,0.0,0.0,0.0,0,0,31660,11,11,Lexus,IS 250/IS 250C,N,false,77,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.5531,0.0,38.9029,0.0,Subcompact Cars,2012,-1750,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,21,21.3186,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.5023,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.9732,0,0.0,0.0,0.0,0.0,0,0,31661,11,11,Lexus,IS 250/IS 250C,Y,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0457,0.0,42.0981,0.0,Subcompact Cars,2012,0,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,12.8243,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4661,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,21,,-1,4000,0,Premium,Premium Gasoline,-1,-1,21,20.6706,0,0.0,0.0,0.0,0.0,0,0,31662,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7994,0.0,28.6499,0.0,Subcompact Cars,2012,-8000,G,,,,,,,,MAX +21.974,0.0,0.0,0.0,13,12.7848,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3631,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,25,,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,20.3886,0,0.0,0.0,0.0,0.0,0,0,31663,5,0,Maserati,GranTurismo Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7486,0.0,28.2478,0.0,Subcompact Cars,2012,-8000,G,,,,,,,,MAX +21.974,0.0,0.0,0.0,13,13.186,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3706,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,69,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2733,0,0.0,0.0,0.0,0.0,0,0,31664,0,12,Mercedes-Benz,C63 AMG Coupe,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.265,0.0,26.6604,0.0,Subcompact Cars,2012,-8000,G,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.0118,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2711,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,112,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.1745,0,0.0,0.0,0.0,0.0,0,0,31665,12,0,Mercedes-Benz,C350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.9259,0.0,39.4699,0.0,Subcompact Cars,2012,-1750,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.0633,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.4058,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,131,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,29,28.517,0,0.0,0.0,0.0,0.0,0,0,31666,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.995,0.0,39.9694,0.0,Subcompact Cars,2012,-1750,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.11,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2708,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.9138,0,0.0,0.0,0.0,0.0,0,0,31667,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0576,0.0,39.0902,0.0,Subcompact Cars,2012,-1750,,,,,,,,,MBX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,12,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.0845,0,0.0,0.0,0.0,0.0,17,80,31668,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Subcompact Cars,2012,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,13,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,34.7611,0,0.0,0.0,0.0,0.0,17,80,31669,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Subcompact Cars,2012,2000,,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,12201,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3167,13,0,Bitter Gmbh and Co. Kg,Bitter SC,N,false,194,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Compact Cars,1987,-6750,T,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,25.5838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7593,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,18,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,34,33.9025,0,0.0,0.0,0.0,0.0,17,80,31670,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.9489,0.0,47.8871,0.0,Subcompact Cars,2012,1500,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.6104,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.9529,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19,SIDI,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,35.3854,0,0.0,0.0,0.0,0.0,17,80,31671,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3966,0.0,50.0888,0.0,Subcompact Cars,2012,2000,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.9055,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9701,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,22,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,33,32.9213,0,0.0,0.0,0.0,0.0,17,80,31672,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.9982,0.0,46.4353,0.0,Subcompact Cars,2012,1250,,,T,,,,,,BMX +0.18000000000000002,0.0,0.0,7.0,126,126.4,0,0.0,0.0,27.0,0.0,0,-1,0.0,0.0,112,112.2,0,0.0,30.0,0.0,0.0,,,Rear-Wheel Drive,141,,-1,550,0,Electricity,Electricity,-1,-1,99,98.7,0,0.0,0.0,34.0,0.0,13,85,31673,0,0,Mitsubishi,i-MiEV,Y,false,0,0,62,68.5545,0.0,54.8184,0.0,Automatic (A1),180.5,0.0,141.0,0.0,Subcompact Cars,2012,9250,,,,,EV,,,49 kW DCPM,MTX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9644,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,29.1543,0,0.0,0.0,0.0,0.0,0,0,31674,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,40.9,0.0,Compact Cars,2012,-500,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.5126,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,20,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,31675,0,14,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),28.1,0.0,44.3,0.0,Compact Cars,2012,500,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.597,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,24,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,28.1951,0,0.0,0.0,0.0,0.0,0,0,31676,0,14,Acura,TSX,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,39.5,0.0,Compact Cars,2012,-1000,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,15,15.2603,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.867,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,650,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,22.5814,0,0.0,0.0,0.0,0.0,0,0,31677,16,0,BMW,650i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4485,0.0,33.9016,0.0,Compact Cars,2012,-4750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.7324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4118,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,651,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,22.3885,0,0.0,0.0,0.0,0.0,0,0,31678,16,0,BMW,650i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1623,0.0,31.1757,0.0,Compact Cars,2012,-5750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.4552,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,31679,0,14,Chevrolet,Sonic,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,50.0,0.0,Compact Cars,2012,2250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3168,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,26.1883,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.4224,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,34,,-1,1900,0,Regular,Regular Gasoline,-1,-1,35,34.6529,0,0.0,0.0,0.0,0.0,0,0,31680,0,14,Chevrolet,Sonic,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.8,0.0,49.0,0.0,Compact Cars,2012,2500,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,23,22.8304,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.1642,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.8484,0,0.0,0.0,0.0,0.0,0,0,31681,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1178,0.0,44.8526,0.0,Compact Cars,2012,1500,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,22,22.3522,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.0811,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,18,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.7611,0,0.0,0.0,0.0,0.0,0,0,31682,12,0,Honda,Accord Coupe,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.4599,0.0,46.1987,0.0,Compact Cars,2012,1500,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5696,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,23,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,31683,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,36.6,0.0,Compact Cars,2012,-1000,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.9249,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,26,,-1,2400,0,Regular,Regular Gasoline,-1,-1,29,29.3596,0,0.0,0.0,0.0,0.0,0,0,31684,12,0,Honda,Accord Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,41.2,0.0,Compact Cars,2012,0,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,32,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,37.0,0,0.0,0.0,0.0,0.0,0,0,31685,0,16,Hyundai,Veloster,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.1,0.0,56.5,0.0,Compact Cars,2012,3000,,,,,,,,,HYX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33,SIDI,-1,1850,0,Regular,Regular Gasoline,-1,-1,35,35.0,0,0.0,0.0,0.0,0.0,0,0,31686,0,16,Hyundai,Veloster,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),37.2,0.0,55.9478,0.0,Compact Cars,2012,2750,,,,,,,,,HYX +11.360558000000001,0.0,0.0,0.0,25,25.3353,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7596,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,22,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,34.4508,0,0.0,0.0,0.0,0.0,0,0,31687,12,0,Kia,Forte Koup,Y,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.6,0.0,48.7,0.0,Compact Cars,2012,2500,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,24,24.4771,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.6202,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,23,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,32.762,0,0.0,0.0,0.0,0.0,0,0,31688,12,0,Kia,Forte Koup,Y,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.4,0.0,46.2,0.0,Compact Cars,2012,2250,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,23,22.8679,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8931,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,24,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.8872,0,0.0,0.0,0.0,0.0,0,0,31689,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.1695,0.0,43.4389,0.0,Compact Cars,2012,1500,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3169,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,31.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.8127,0,0.0,0.0,0.0,0.0,0,0,31690,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Compact Cars,2012,1500,,,,,,,,,KMX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,32,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,36,36.0,0,0.0,0.0,0.0,0.0,15,90,31691,0,0,Kia,Rio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,38.7,0.0,56.5,0.0,Compact Cars,2012,3000,,,,,,,,,KMX +10.283832,0.0,0.0,0.0,29,29.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,32.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33,SIDI,-1,1700,0,Regular,Regular Gasoline,-1,-1,37,39.0,0,0.0,0.0,0.0,0.0,15,90,31692,0,0,Kia,Rio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,39.5,0.0,56.8,0.0,Compact Cars,2012,3500,,,,,,,,,KMX +7.844718,0.0,0.0,0.0,43,42.8,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,41.5896,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,-1,1300,0,Regular,Regular Gasoline,-1,-1,40,40.2,0,0.0,0.0,0.0,0.0,14,86,31693,0,0,Lexus,CT 200h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),57.9193,0.0,56.9915,0.0,Compact Cars,2012,5500,,,,,Hybrid,,,202V Ni-MH,TYX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.2714,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,10,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,33.2357,0,0.0,0.0,0.0,0.0,17,95,31694,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.4,0.0,46.9,0.0,Compact Cars,2012,2250,,,,,,,,,TKX +12.19557,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.1101,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,33.1004,0,0.0,0.0,0.0,0.0,17,95,31695,0,12,Mazda,3,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),30.2,0.0,46.7,0.0,Compact Cars,2012,1750,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,29,29.2722,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,31.62,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,16,,-1,1700,0,Regular,Regular Gasoline,-1,-1,35,35.0567,0,0.0,0.0,0.0,0.0,13,87,31696,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.2,0.0,49.6,0.0,Compact Cars,2012,3500,,,,,,,,,TKX +10.987,0.0,0.0,0.0,28,28.1586,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.4858,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,17,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,33.9113,0,0.0,0.0,0.0,0.0,13,87,31697,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.6,0.0,47.9,0.0,Compact Cars,2012,2750,,,,,,,,,TKX +16.4805,0.0,0.0,0.0,17,17.368,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9352,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,25,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.3308,0,0.0,0.0,0.0,0.0,0,0,31698,0,12,Mercedes-Benz,C300 4matic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.7331,0.0,33.8987,0.0,Compact Cars,2012,-3000,,,,,,,,,MBX +16.4805,4.994,0.0,0.0,18,17.6782,13,13.0115,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,20.3643,15,15.0183,0.0,0.0,0.0,6,3.0,4-Wheel Drive,26,FFV,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,25,25.0088,18,18.507,0.0,0.0,0.0,0,0,31699,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.145,16.0402,34.8771,25.5728,Compact Cars,2012,-3000,,,,,FFV,E85,330,,MBX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,317,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Compact Cars,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3170,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Compact Cars,1987,-5250,T,2MODE,,,,,,, +13.1844,0.0,0.0,0.0,21,21.2216,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7738,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,101,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,31.1458,0,0.0,0.0,0.0,0.0,0,0,31700,0,12,Mercedes-Benz,C250,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,26.9134,0.0,43.8189,0.0,Compact Cars,2012,0,,,T,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.8256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.174,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,103,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.2021,0,0.0,0.0,0.0,0.0,0,0,31701,0,12,Mercedes-Benz,C350,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.0208,0.0,40.9698,0.0,Compact Cars,2012,-1000,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.186,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3706,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,108,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2733,0,0.0,0.0,0.0,0.0,0,0,31702,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.265,0.0,26.6604,0.0,Compact Cars,2012,-8000,G,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.7626,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7839,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,213,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,23.7161,0,0.0,0.0,0.0,0.0,0,0,31703,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.8932,0.0,31.612,0.0,Compact Cars,2012,-4750,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,11.7324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.9103,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,214,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.9924,0,0.0,0.0,0.0,0.0,0,0,31704,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4007,0.0,24.8436,0.0,Compact Cars,2012,-9500,G,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.885,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5149,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,215,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.339,0,0.0,0.0,0.0,0.0,0,0,31705,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9592,0.0,29.6373,0.0,Compact Cars,2012,-4750,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.2257,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.3749,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,218,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,18.3086,0,0.0,0.0,0.0,0.0,0,0,31706,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0498,0.0,25.2915,0.0,Compact Cars,2012,-9500,G,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,16.4997,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3572,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,320,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.5547,0,0.0,0.0,0.0,0.0,0,0,31707,0,11,Mercedes-Benz,CLS550 4matic,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.5145,0.0,33.6744,0.0,Compact Cars,2012,-3750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9575,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9764,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,321,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.6841,0,0.0,0.0,0.0,0.0,0,0,31708,0,11,Mercedes-Benz,CLS63 AMG,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.183,0.0,32.0357,0.0,Compact Cars,2012,-3750,,,T,,,,,,MBX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,-1,2250,0,Premium,Premium Gasoline,-1,-1,30,29.9062,0,0.0,0.0,0.0,0.0,16,87,31709,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2012,750,,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3171,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Compact Cars,1987,-5250,T,,,,,,,, +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,,-1,2000,0,Premium,Premium Gasoline,-1,-1,35,34.7611,0,0.0,0.0,0.0,0.0,16,87,31710,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Compact Cars,2012,2000,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,34,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,32,32.152,0,0.0,0.0,0.0,0.0,0,0,31711,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2012,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35,SIDI,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,32.2876,0,0.0,0.0,0.0,0.0,0,0,31712,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2012,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.4692,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.1696,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,36,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,30.452,0,0.0,0.0,0.0,0.0,0,0,31713,0,16,MINI,Cooper S Countryman All4,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),30.0,0.0,42.8,0.0,Compact Cars,2012,500,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.4066,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.675,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,37,SIDI,-1,2150,0,Premium,Premium Gasoline,-1,-1,31,31.0649,0,0.0,0.0,0.0,0.0,0,0,31714,0,16,MINI,Cooper S Countryman All4,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.7,0.0,43.7,0.0,Compact Cars,2012,1250,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,28,27.9488,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3986,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,1,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,34.0461,0,0.0,0.0,0.0,0.0,18,95,31715,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),36.3,0.0,48.0998,0.0,Compact Cars,2012,2750,,,,,,,,,NSX +12.19557,0.0,0.0,0.0,24,24.046,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.0358,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,2,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,31.8805,0,0.0,0.0,0.0,0.0,18,95,31716,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.8,0.0,44.9,0.0,Compact Cars,2012,1750,,,,,,,,,NSX +11.75609,0.0,0.0,0.0,26,25.6913,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9822,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,31.405,0,0.0,0.0,0.0,0.0,18,95,31717,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,44.2,0.0,Compact Cars,2012,2250,,,,,,,,,NSX +9.976196,0.0,0.0,0.0,30,30.3769,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,33.3694,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,37.9373,0,0.0,0.0,0.0,0.0,18,95,31718,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8,0.0,53.9,0.0,Compact Cars,2012,3750,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.3053,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,35.863,0,0.0,0.0,0.0,0.0,18,95,31719,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.8,0.0,50.8,0.0,Compact Cars,2012,2750,,,,,,,,,NSX +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3172,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Compact Cars,1987,-6250,T,2MODE,,,,,,, +11.75609,0.0,0.0,0.0,25,24.552,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.907,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,1,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,33.5023,0,0.0,0.0,0.0,0.0,0,0,31720,0,12,Subaru,Impreza AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5045,0.0,47.2945,0.0,Compact Cars,2012,2250,,,,,,,,,FJX +10.987,0.0,0.0,0.0,27,26.8705,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.172,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,3,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,35.5037,0,0.0,0.0,0.0,0.0,0,0,31721,0,12,Subaru,Impreza AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.765,0.0,50.2649,0.0,Compact Cars,2012,2750,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,19,18.6591,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.973,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,12,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.7197,0,0.0,0.0,0.0,0.0,0,0,31722,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4533,0.0,34.4596,0.0,Compact Cars,2012,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.67,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9018,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,14,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.5998,0,0.0,0.0,0.0,0.0,0,0,31723,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8095,0.0,31.4096,0.0,Compact Cars,2012,-3750,,,T,,,,,,FJX +12.657024,0.0,0.0,0.0,23,22.8359,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.4731,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,-1,2100,0,Regular,Regular Gasoline,-1,-1,33,32.8723,0,0.0,0.0,0.0,0.0,0,0,31724,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.1254,0.0,46.3629,0.0,Compact Cars,2012,1500,,,,,,,,,SKX +11.75609,0.0,0.0,0.0,25,25.2754,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.9417,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,32.0774,0,0.0,0.0,0.0,0.0,0,0,31725,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.516,0.0,45.1901,0.0,Compact Cars,2012,2250,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,22.6294,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.989,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.7502,0,0.0,0.0,0.0,0.0,0,0,31726,0,16,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.841,0.0,44.708,0.0,Compact Cars,2012,1500,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,23.0606,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6096,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,29.6098,0,0.0,0.0,0.0,0.0,0,0,31727,0,16,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.4352,0.0,41.5661,0.0,Compact Cars,2012,1500,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,23.375,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3886,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,61,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,31.3246,0,0.0,0.0,0.0,0.0,0,0,31728,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.8696,0.0,44.0818,0.0,Compact Cars,2012,1500,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,22.9476,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7199,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,62,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.1756,0,0.0,0.0,0.0,0.0,0,0,31729,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2794,0.0,42.3947,0.0,Compact Cars,2012,1500,,,,,,,,,SKX +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3173,0,13,BMW,7 Series,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Compact Cars,1987,-6250,T,,,,,,,, +13.1844,0.0,0.0,0.0,21,21.0716,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.5027,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,63,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,30.5906,0,0.0,0.0,0.0,0.0,0,0,31730,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7092,0.0,43.0035,0.0,Compact Cars,2012,1000,,,,,,,,,SKX +13.73375,0.0,0.0,0.0,20,20.4407,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.7156,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,64,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.4935,0,0.0,0.0,0.0,0.0,0,0,31731,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8524,0.0,41.3959,0.0,Compact Cars,2012,500,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,23,22.5314,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2518,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,65,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.6233,0,0.0,0.0,0.0,0.0,0,0,31732,0,13,Suzuki,Kizashi S AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7062,0.0,41.5858,0.0,Compact Cars,2012,1000,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,22,22.0712,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7653,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,66,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.1079,0,0.0,0.0,0.0,0.0,0,0,31733,0,13,Suzuki,Kizashi AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.0744,0.0,40.8321,0.0,Compact Cars,2012,1000,,,,,,,,,SKX +10.283832,0.0,0.0,0.0,30,29.5913,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,31.9428,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,4,,-1,1700,0,Regular,Regular Gasoline,-1,-1,35,35.3789,0,0.0,0.0,0.0,0.0,15,85,31734,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,38.6609,0.0,50.0792,0.0,Compact Cars,2012,3500,,,,,,,,,TYX +9.976196,0.0,0.0,0.0,30,30.2981,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,33.1987,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,5,,-1,1650,0,Regular,Regular Gasoline,-1,-1,38,37.5981,0,0.0,0.0,0.0,0.0,15,85,31735,0,13,Toyota,Yaris,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.6855,0.0,53.3919,0.0,Compact Cars,2012,3750,,,,,,,,,TYX +25.336022,0.0,0.0,0.0,11,10.8404,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.1152,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,8,,-1,4650,0,Premium,Premium Gasoline,-1,-1,18,17.6392,0,0.0,0.0,0.0,0.0,0,0,31736,0,11,Bentley,Mulsanne,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S8),12.7,0.0,23.4,0.0,Midsize Cars,2012,-11250,G,,T,,,,,,BEX +18.304342000000002,0.0,0.0,0.0,15,15.2603,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.867,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,550,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,22.5814,0,0.0,0.0,0.0,0.0,0,0,31737,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4485,0.0,33.9016,0.0,Midsize Cars,2012,-4750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.7324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4118,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,551,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,22.3885,0,0.0,0.0,0.0,0.0,0,0,31738,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1623,0.0,31.1757,0.0,Midsize Cars,2012,-5750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.625,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,6,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,31739,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.5,0.0,37.4,0.0,Midsize Cars,2012,-500,,,T,,,,,,GMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,3174,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1987,500,,,,,,,,, +14.327048,4.404708,0.0,0.0,19,19.4391,15,14.5992,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,23.3584,17,17.2531,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,116,SIDI; FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,31,30.9969,22,22.1813,0.0,0.0,0.0,0,0,31740,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,18.4,43.6,31.2,Midsize Cars,2012,0,,,,,FFV,E85,320,,GMX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.3584,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,117,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,31,30.9969,0,0.0,0.0,0.0,0.0,0,0,31741,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,43.6,0.0,Midsize Cars,2012,0,,,,,,,,,GMX +14.964294,4.679378,0.0,0.0,18,18.3949,13,13.3781,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.9872,16,16.145,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,138,SIDI; FFV; Sport Transmission,-1,2500,2850,Gasoline or E85,Regular Gasoline,-1,-1,29,28.8805,22,21.6069,0.0,0.0,0.0,0,0,31742,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,16.8,40.5,30.3,Midsize Cars,2012,-500,,,T,,FFV,E85,300,,GMX +15.689436,0.0,0.0,0.0,18,17.7256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8365,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,124,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.5266,0,0.0,0.0,0.0,0.0,0,0,31743,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.208,0.0,37.0739,0.0,Midsize Cars,2012,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9129,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,100,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31744,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,37.5,0.0,Midsize Cars,2012,-1000,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9468,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,103,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.4287,0,0.0,0.0,0.0,0.0,0,0,31745,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,32.6,0.0,Midsize Cars,2012,-4750,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,105,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,31746,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Midsize Cars,2012,-3250,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,122,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,31747,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Midsize Cars,2012,-5750,G,,,,,,,,CRX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2884,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,31748,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Midsize Cars,2012,-5750,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6673,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,5,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,23.4982,0,0.0,0.0,0.0,0.0,0,0,31749,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),19.9163,0.0,32.6906,0.0,Midsize Cars,2012,-3750,,,,,,,,,JCX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,83,3175,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Compact Cars,1987,-2250,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,25.5004,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.2116,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,,-1,1900,0,Regular,Regular Gasoline,-1,-1,36,35.5321,0,0.0,0.0,0.0,0.0,20,97,31750,0,15,Kia,Forte,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.8317,0.0,50.3071,0.0,Midsize Cars,2012,2500,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,25,25.0498,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.5564,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,34.4508,0,0.0,0.0,0.0,0.0,20,97,31751,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,48.7,0.0,Midsize Cars,2012,2500,,,,,,,,,KMX +10.987,0.0,0.0,0.0,27,26.7817,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.4356,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,,-1,1850,0,Regular,Regular Gasoline,-1,-1,37,36.5264,0,0.0,0.0,0.0,0.0,0,0,31752,0,15,Kia,Forte Eco,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.6391,0.0,51.7894,0.0,Midsize Cars,2012,2750,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,23,22.8203,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.1505,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,20,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.8275,0,0.0,0.0,0.0,0.0,20,97,31753,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.1038,0.0,44.8218,0.0,Midsize Cars,2012,1500,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,31.8127,0,0.0,0.0,0.0,0.0,20,97,31754,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Midsize Cars,2012,1500,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.2945,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,34,SIDI,-1,2100,0,Regular,Regular Gasoline,-1,-1,34,33.6412,0,0.0,0.0,0.0,0.0,0,0,31755,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,47.5,0.0,Midsize Cars,2012,1500,,,T,,,,,,KMX +11.75609,0.0,0.0,0.0,24,23.6711,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.6731,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,35,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,34.8809,0,0.0,0.0,0.0,0.0,0,0,31756,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2796,0.0,49.3387,0.0,Midsize Cars,2012,2250,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5268,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,36,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,34.5182,0,0.0,0.0,0.0,0.0,0,0,31757,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.8,0.0,Midsize Cars,2012,2250,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.0427,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.3052,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,331,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.9878,0,0.0,0.0,0.0,0.0,0,0,31758,0,13,Mitsubishi,Galant,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),26.6699,0.0,42.1195,0.0,Midsize Cars,2012,500,,,,,,,,,DSX +14.964294,0.0,0.0,0.0,19,19.2728,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8249,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.0393,0,0.0,0.0,0.0,0.0,0,0,31759,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Auto(AV-S6),24.2763,0.0,36.3676,0.0,Midsize Cars,2012,-1750,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,83,3176,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,16.7353,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1389,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,131,,-1,2750,0,Regular,Regular Gasoline,-1,-1,27,26.801,0,0.0,0.0,0.0,0.0,0,0,31760,0,18,Saab,9-5 Sedan AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),20.8957,0.0,37.4722,0.0,Midsize Cars,2012,-1750,,,T,,,,,,SAX +14.964294,0.0,0.0,0.0,19,19.3998,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0704,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,5,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.5349,0,0.0,0.0,0.0,0.0,0,0,31761,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4471,0.0,37.086,0.0,Midsize Cars,2012,-500,,,,,,,,,FJX +12.657024,0.0,0.0,0.0,23,22.5337,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.5505,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,7,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.5494,0,0.0,0.0,0.0,0.0,0,0,31762,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7094,0.0,42.943,0.0,Midsize Cars,2012,1500,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6602,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,11,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.8169,0,0.0,0.0,0.0,0.0,0,0,31763,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.6,0.0,Midsize Cars,2012,-2250,,,T,,,,,,FJX +16.4805,0.0,0.0,0.0,18,17.527,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1528,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,17,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.6701,0,0.0,0.0,0.0,0.0,0,0,31764,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9441,0.0,34.3881,0.0,Midsize Cars,2012,-1750,,,,,,,,,FJX +11.75609,0.0,0.0,0.0,25,24.6061,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.3912,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,7,,-1,1950,0,Regular,Regular Gasoline,-1,-1,35,34.9649,0,0.0,0.0,0.0,0.0,0,0,31765,0,15,Toyota,Camry,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),31.58,0.0,49.4635,0.0,Midsize Cars,2012,2250,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,21,21.2188,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.5594,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,10,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.4113,0,0.0,0.0,0.0,0.0,0,0,31766,0,15,Toyota,Camry,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),26.9096,0.0,42.7404,0.0,Midsize Cars,2012,1000,,,,,,,,,TYX +6.5922,0.0,0.0,0.0,51,50.7358,0,0.0,0.0,0.0,0.0,-1,-1,0.0,177.74,50,49.5617,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,65,,-1,1100,0,Regular,Regular Gasoline,-1,-1,48,48.1984,0,0.0,0.0,0.0,0.0,22,94,31767,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.7588,0.0,69.5142,0.0,Midsize Cars,2012,6500,,,,,Hybrid,,,202V Ni-MH,TYX +13.1844,0.0,0.0,0.0,22,22.0934,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2708,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,1,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,30.6602,0,0.0,0.0,0.0,0.0,0,0,31768,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0213,0.0,40.7869,0.0,Midsize Cars,2012,1000,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,22,21.8967,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.5624,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,2,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,32.1382,0,0.0,0.0,0.0,0.0,0,0,31769,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.137,0.0,42.9319,0.0,Midsize Cars,2012,1500,,,,,,,,,VWX +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,3177,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,40.0,0.0,Compact Cars,1987,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,19.7174,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.6868,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,19,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,27.8048,0,0.0,0.0,0.0,0.0,0,0,31770,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,37.3,0.0,Midsize Cars,2012,-1000,,,,,,,,,VWX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9129,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,102,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31771,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,37.5,0.0,Large Cars,2012,-1000,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,106,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,31772,0,16,Chrysler,300,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2012,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6424,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.6157,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,107,,-1,3200,0,Midgrade,Midgrade Gasoline,-1,-1,23,23.4308,0,0.0,0.0,0.0,0.0,0,0,31773,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2012,-4000,,,,,,,,,CRX +14.327048,4.404708,0.0,0.0,19,19.067,14,13.9868,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.9756,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,114,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,31774,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,17.3,43.1,31.7,Large Cars,2012,0,,,,,FFV,E85,320,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,116,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,31775,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2012,-1000,,,,,FFV,E85,310,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,120,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,31776,0,16,Chrysler,300 SRT8,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2012,-5750,G,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9129,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,101,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31777,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,37.5,0.0,Large Cars,2012,-1000,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,104,,-1,3050,0,Midgrade,Midgrade Gasoline,-1,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,31778,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2012,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6424,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.6157,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,108,,-1,3200,0,Midgrade,Midgrade Gasoline,-1,-1,23,23.4308,0,0.0,0.0,0.0,0.0,0,0,31779,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2012,-4000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,3178,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +14.327048,4.404708,0.0,0.0,19,19.067,14,13.9868,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.9756,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,113,FFV,-1,2400,2700,Gasoline or E85,Regular Gasoline,-1,-1,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,31780,0,16,Dodge,Charger,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,17.3,43.1,31.7,Large Cars,2012,0,,,,,FFV,E85,320,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,-1,-1,393.4375,423.1904761904762,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,115,FFV,-1,2600,2850,Gasoline or E85,Regular Gasoline,-1,-1,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,31781,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2012,-1000,,,,,FFV,E85,310,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,121,,-1,3550,0,Premium,Premium Gasoline,-1,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,31782,0,16,Dodge,Charger SRT8,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2012,-5750,G,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1104,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,93,,-1,2750,0,Regular,Regular Gasoline,-1,-1,26,25.5781,0,0.0,0.0,0.0,0.0,0,0,31783,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.7,0.0,Large Cars,2012,-1750,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0467,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,95,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,31784,0,20,Ford,Taurus FWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.6,0.0,Large Cars,2012,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,18,18.2237,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6114,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,96,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.9651,0,0.0,0.0,0.0,0.0,0,0,31785,0,20,Ford,Taurus FWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.7,0.0,38.8,0.0,Large Cars,2012,-500,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,16.864,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.6457,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,126,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.6063,0,0.0,0.0,0.0,0.0,0,0,31786,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0657,0.0,34.296,0.0,Large Cars,2012,-1750,,,T,,,,,,FMX +12.19557,0.0,0.0,0.0,23,23.1577,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.91,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,33.5553,0,0.0,0.0,0.0,0.0,0,0,31787,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.5693,0.0,47.3728,0.0,Large Cars,2012,1750,,,,,,,,,HNX +12.19557,0.0,0.0,0.0,23,22.5005,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.5069,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,16,,-1,2050,0,Regular,Regular Gasoline,-1,-1,34,33.8801,0,0.0,0.0,0.0,0.0,0,0,31788,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.6637,0.0,47.8539,0.0,Large Cars,2012,1750,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.641,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,25,,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,30.3156,0,0.0,0.0,0.0,0.0,0,0,31789,0,15,Honda,Accord,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,25.3,0.0,42.6,0.0,Large Cars,2012,500,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,83,3179,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1987,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6475,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,7,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,23.4287,0,0.0,0.0,0.0,0.0,0,0,31790,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),19.887,0.0,32.6266,0.0,Large Cars,2012,-3750,,,,,,,,,JCX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2884,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,8,SIDI; Long Wheelbase,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,31791,0,18,Jaguar,XJ LWB,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Large Cars,2012,-5750,,,,S,,,,,JCX +18.304342000000002,0.0,0.0,0.0,15,15.2927,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8353,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,9,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.3839,0,0.0,0.0,0.0,0.0,0,0,31792,0,18,Jaguar,XJ LWB,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S6),18.9574,0.0,31.0733,0.0,Large Cars,2012,-4750,,,,,,,,,JCX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2884,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,11,SIDI; Short Wheelbase,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,31793,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Large Cars,2012,-5750,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,16.3595,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7425,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,92,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.8022,0,0.0,0.0,0.0,0.0,0,0,31794,0,18,Lincoln,MKS AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4,0.0,31.7,0.0,Large Cars,2012,-2500,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.834,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,94,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,31795,0,18,Lincoln,MKS FWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,34.3,0.0,Large Cars,2012,-1750,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,16.864,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.6457,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,125,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.6063,0,0.0,0.0,0.0,0.0,0,0,31796,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0657,0.0,34.296,0.0,Large Cars,2012,-1750,,,T,,,,,,FMX +21.974,0.0,0.0,0.0,12,12.3932,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.6498,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,16,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,18.8434,0,0.0,0.0,0.0,0.0,0,0,31797,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.2459,0.0,26.0499,0.0,Large Cars,2012,-8000,G,,,,,,,,MAX +17.337486000000002,0.0,0.0,0.0,15,15.3704,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.524,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,202,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.7239,0,0.0,0.0,0.0,0.0,0,0,31798,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.5549,0.0,33.2649,0.0,Large Cars,2012,-3750,,,T,,,,,,MBX +15.689436,0.0,0.0,0.0,19,18.6481,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0901,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,203,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.1089,0,0.0,0.0,0.0,0.0,0,0,31799,0,16,Mercedes-Benz,S400 Hybrid,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4385,0.0,35.0216,0.0,Large Cars,2012,-2250,,,,,Hybrid,,,126V Li-Ion,MBX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,85,318,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Compact Cars,1985,500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3180,13,13,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Compact Cars,1987,0,,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.9134,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1883,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,204,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,18.5077,0,0.0,0.0,0.0,0.0,0,0,31800,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6319,0.0,25.5737,0.0,Large Cars,2012,-9500,G,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.912,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7089,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,205,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,22.976,0,0.0,0.0,0.0,0.0,0,0,31801,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.0072,0.0,30.5142,0.0,Large Cars,2012,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.6982,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7132,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,207,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,24,23.6402,0,0.0,0.0,0.0,0.0,0,0,31802,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7941,0.0,32.1822,0.0,Large Cars,2012,-4750,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.1943,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.4639,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,208,,-1,4300,0,Premium,Premium Gasoline,-1,-1,19,18.7231,0,0.0,0.0,0.0,0.0,0,0,31803,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9911,0.0,25.8793,0.0,Large Cars,2012,-9500,G,,T,,,,,,MBX +15.287400000000002,0.0,0.0,0.0,21,20.906,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,24.6158,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,209,,-1,2350,0,Diesel,Diesel,-1,-1,31,31.4332,0,0.0,0.0,0.0,0.0,0,0,31804,0,16,Mercedes-Benz,S350 Bluetec 4matic,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,26.4839,0.0,44.2415,0.0,Large Cars,2012,250,,,T,,Diesel,,,,MBX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1031,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,90,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,31805,0,25,Porsche,Panamera,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5956,0.0,37.2998,0.0,Large Cars,2012,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.721,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,91,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,31806,0,25,Porsche,Panamera 4,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2135,0.0,36.544,0.0,Large Cars,2012,-2250,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9372,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,92,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.8457,0,0.0,0.0,0.0,0.0,0,0,31807,0,25,Porsche,Panamera S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2302,0.0,Large Cars,2012,-3750,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9372,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,93,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.8457,0,0.0,0.0,0.0,0.0,0,0,31808,0,25,Porsche,Panamera 4S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2489,0.0,33.2302,0.0,Large Cars,2012,-3750,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7393,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,95,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,31809,0,25,Porsche,Panamera Turbo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5447,0.0,31.9791,0.0,Large Cars,2012,-4750,,,T,,,,,,PRX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4150,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3181,13,13,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Compact Cars,1987,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7393,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,96,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,31810,0,25,Porsche,Panamera Turbo S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5447,0.0,31.9791,0.0,Large Cars,2012,-4750,,,T,,,,,,PRX +13.1844,0.0,0.0,0.0,22,22.3278,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.3292,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,97,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,30.3089,0,0.0,0.0,0.0,0.0,0,0,31811,0,25,Porsche,Panamera S Hybrid,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 8-spd,30.3887,0.0,40.9035,0.0,Large Cars,2012,0,,,,S,Hybrid,,,288V Ni-MH,PRX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.6697,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,29.9062,0,0.0,0.0,0.0,0.0,26,94,31812,0,0,Acura,TSX Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4,0.0,42.0,0.0,Small Station Wagons,2012,0,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,17.7256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8365,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,125,SIDI,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,31813,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.208,0.0,37.0739,0.0,Small Station Wagons,2012,-1000,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,23,22.6682,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,500,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,27.1644,0,0.0,0.0,0.0,0.0,16,96,31814,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Small Station Wagons,2012,500,,,,,,,,,CRX +12.19557,0.0,0.0,0.0,24,23.902,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.9572,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,501,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,31.9484,0,0.0,0.0,0.0,0.0,16,96,31815,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.6,0.0,45.0,0.0,Small Station Wagons,2012,1750,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,21.6515,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9222,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,503,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,27.4396,0,0.0,0.0,0.0,0.0,16,96,31816,0,0,Dodge,Caliber,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5,0.0,38.4,0.0,Small Station Wagons,2012,500,,,,,,,,,CRX +11.360558000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,5,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,33.4246,0,0.0,0.0,0.0,0.0,21,91,31817,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.3146,0.0,47.1794,0.0,Small Station Wagons,2012,2500,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,31.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,6,,-1,1800,0,Regular,Regular Gasoline,-1,-1,35,35.0,0,0.0,0.0,0.0,0.0,21,91,31818,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,37.2,0.0,51.6,0.0,Small Station Wagons,2012,3000,,,,,,,,,HNX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.0278,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,7,,-1,1850,0,Regular,Regular Gasoline,-1,-1,33,33.0,0,0.0,0.0,0.0,0.0,21,91,31819,0,0,Honda,Fit,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),35.7,0.0,47.7,0.0,Small Station Wagons,2012,2750,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3182,13,13,Buick,Somerset/Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.8833,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,46,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,31820,0,19,Infiniti,EX35,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6,0.0,34.0,0.0,Small Station Wagons,2012,-3000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.991,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4166,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,47,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.5205,0,0.0,0.0,0.0,0.0,0,0,31821,0,19,Infiniti,EX35 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.2337,0.0,32.732,0.0,Small Station Wagons,2012,-3750,,,,,,,,,NSX +11.75609,0.0,0.0,0.0,26,26.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26,SIDI,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,31.0,0,0.0,0.0,0.0,0.0,0,0,31822,0,24,Kia,Soul Eco,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,37.5,0.0,51.6,0.0,Small Station Wagons,2012,2250,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,27,SIDI,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,31823,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.9,0.0,49.5,0.0,Small Station Wagons,2012,1750,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,28,SIDI,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,31824,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2,0.0,49.6,0.0,Small Station Wagons,2012,1750,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,29,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,31825,0,24,Kia,Soul Eco,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.4954,0.0,49.4,0.0,Small Station Wagons,2012,1500,,,,,,,,,KMX +13.1844,0.0,0.0,0.0,23,23.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,30,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,31826,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.2,0.0,47.3,0.0,Small Station Wagons,2012,1000,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,31,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,31827,0,24,Kia,Soul,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,47.8,0.0,Small Station Wagons,2012,1500,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,25,24.5041,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.8058,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,2,,-1,1950,0,Regular,Regular Gasoline,-1,-1,33,33.2878,0,0.0,0.0,0.0,0.0,0,0,31828,0,22,Subaru,Impreza Wagon/Outback Sport AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4377,0.0,46.9771,0.0,Small Station Wagons,2012,2250,,,,,,,,,FJX +10.987,0.0,0.0,0.0,27,26.9012,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,30.1926,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,4,,-1,1850,0,Regular,Regular Gasoline,-1,-1,36,35.5015,0,0.0,0.0,0.0,0.0,0,0,31829,0,22,Subaru,Impreza Wagon/Outback Sport AWD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.8085,0.0,50.2616,0.0,Small Station Wagons,2012,2750,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3183,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Compact Cars,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,18.6591,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.973,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,13,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.7197,0,0.0,0.0,0.0,0.0,0,0,31830,0,22,Subaru,Impreza Wagon/Outback Sport AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4533,0.0,34.4596,0.0,Small Station Wagons,2012,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.67,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9018,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,15,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.5998,0,0.0,0.0,0.0,0.0,0,0,31831,0,22,Subaru,Impreza Wagon/Outback Sport AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8095,0.0,31.4096,0.0,Small Station Wagons,2012,-3750,,,T,,,,,,FJX +13.1844,0.0,0.0,0.0,22,22.0914,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.9721,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,51,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.7066,0,0.0,0.0,0.0,0.0,0,0,31832,0,8,Suzuki,SX4 AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1022,0.0,41.7078,0.0,Small Station Wagons,2012,1000,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,23,22.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.2913,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,52,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.4045,0,0.0,0.0,0.0,0.0,0,0,31833,0,8,Suzuki,SX4 AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9299,0.0,41.2658,0.0,Small Station Wagons,2012,1000,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,22,22.0874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.1066,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,30.1424,0,0.0,0.0,0.0,0.0,0,0,31834,0,8,Suzuki,SX4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0966,0.0,42.3461,0.0,Small Station Wagons,2012,1000,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,23.2073,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7089,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,29.6098,0,0.0,0.0,0.0,0.0,0,0,31835,0,8,Suzuki,SX4,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.6378,0.0,41.5661,0.0,Small Station Wagons,2012,1500,,,,,,,,,SKX +7.844718,0.0,0.0,0.0,44,43.5242,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,41.9709,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,6,,-1,1300,0,Regular,Regular Gasoline,-1,-1,40,40.2168,0,0.0,0.0,0.0,0.0,34,97,31836,0,0,Toyota,Prius v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),59.873,0.0,57.3284,0.0,Midsize Station Wagons,2012,5500,,,,,Hybrid,,,202V Ni-MH,TYX +17.337486000000002,0.0,0.0,0.0,17,16.8399,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7648,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,83,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.8121,0,0.0,0.0,0.0,0.0,0,0,31837,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.0339,0.0,30.281,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,19.4373,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8562,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,84,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.8992,0,0.0,0.0,0.0,0.0,0,0,31838,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4976,0.0,31.8393,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,14.7731,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7649,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,181,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,20.0727,0,0.0,0.0,0.0,0.0,0,0,31839,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.3217,0.0,27.7976,0.0,Small Pickup Trucks 2WD,2012,-4250,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3184,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,15.6011,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2982,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,182,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.9506,0,0.0,0.0,0.0,0.0,0,0,31840,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4036,0.0,27.6238,0.0,Small Pickup Trucks 2WD,2012,-4250,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7687,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,85,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,22.0349,0,0.0,0.0,0.0,0.0,0,0,31841,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.9,0.0,30.6,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8471,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,86,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,31842,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.5,0.0,31.8,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7946,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,481,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,31843,0,0,Suzuki,Equator 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5,0.0,27.5,0.0,Small Pickup Trucks 2WD,2012,-4250,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.087,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,39,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,24.3719,0,0.0,0.0,0.0,0.0,0,0,31844,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.9,0.0,35.6361,0.0,Small Pickup Trucks 2WD,2012,-1000,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,21,20.6281,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2344,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,40,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,24.573,0,0.0,0.0,0.0,0.0,0,0,31845,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1066,0.0,36.3913,0.0,Small Pickup Trucks 2WD,2012,-500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.1056,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.796,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,49,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,21.378,0,0.0,0.0,0.0,0.0,0,0,31846,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.3853,0.0,29.6601,0.0,Small Pickup Trucks 2WD,2012,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0109,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,50,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,31847,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,28.9,0.0,Small Pickup Trucks 2WD,2012,-3250,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,14,14.4161,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.2718,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,183,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,19.3098,0,0.0,0.0,0.0,0.0,0,0,31848,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.8572,0.0,26.7124,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,15.4519,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.0723,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,184,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.5821,0,0.0,0.0,0.0,0.0,0,0,31849,0,0,Nissan,Frontier 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2082,0.0,27.0994,0.0,Small Pickup Trucks 4WD,2012,-4250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3185,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1987,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,14.6265,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4047,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,482,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,19.2678,0,0.0,0.0,0.0,0.0,0,0,31850,0,0,Suzuki,Equator 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1308,0.0,26.6527,0.0,Small Pickup Trucks 4WD,2012,-5250,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.2582,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,41,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,20.9,0,0.0,0.0,0.0,0.0,0,0,31851,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.7,0.0,31.7,0.0,Small Pickup Trucks 4WD,2012,-2500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0705,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,42,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,20.3,0,0.0,0.0,0.0,0.0,0,0,31852,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.8,0.0,30.2,0.0,Small Pickup Trucks 4WD,2012,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8087,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,51,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,31853,0,0,Toyota,Tacoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,28.7,0.0,Small Pickup Trucks 4WD,2012,-3250,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,15.3888,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.8436,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,52,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,19.0441,0,0.0,0.0,0.0,0.0,0,0,31854,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1257,0.0,26.3349,0.0,Small Pickup Trucks 4WD,2012,-4250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,548,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,31855,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),19.7748,0.0,22.925,0.0,Standard Pickup Trucks 2WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +20.589638,6.806822,0.0,0.0,14,14.0639,10,9.7598,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,16.085,11,10.8214,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,56,FFV,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,20,19.5122,12,12.4806,0.0,0.0,0.0,0,0,31856,0,0,Dodge,Ram 1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.4,11.9,27.0,17.1,Standard Pickup Trucks 2WD,2012,-5250,,,,,FFV,E85,290/350,,CRX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,600,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,31857,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Pickup Trucks 2WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +21.974,0.0,0.0,0.0,13,12.9545,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.8073,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,284,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.9441,0,0.0,0.0,0.0,0.0,0,0,31858,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9669,0.0,24.7752,0.0,Standard Pickup Trucks 2WD,2012,-6250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.0238,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.6762,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,53,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,20.2254,0,0.0,0.0,0.0,0.0,0,0,31859,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.9584,0.0,28.0152,0.0,Standard Pickup Trucks 2WD,2012,-3250,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3186,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,14.8496,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.8033,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,57,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,20.0231,0,0.0,0.0,0.0,0.0,0,0,31860,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4215,0.0,27.727,0.0,Standard Pickup Trucks 2WD,2012,-4250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,14,13.6244,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4081,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,61,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,18.3433,0,0.0,0.0,0.0,0.0,0,0,31861,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.8309,0.0,25.3407,0.0,Standard Pickup Trucks 2WD,2012,-6250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,20,19.6778,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9446,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,554,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7334,0,0.0,0.0,0.0,0.0,0,0,31862,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),19.7013,0.0,22.7421,0.0,Standard Pickup Trucks 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +20.589638,6.806822,0.0,0.0,14,13.8324,10,9.7598,0.0,0.0,0.0,-1,-1,572.2727272727273,555.4375,16,15.7675,11,10.8214,0.0,0.0,0.0,8,4.7,4-Wheel Drive,57,FFV,-1,3450,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,19.0195,12,12.4806,0.0,0.0,0.0,0,0,31863,0,0,Dodge,Ram 1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,11.9,26.3,17.1,Standard Pickup Trucks 4WD,2012,-5250,,,,,FFV,E85,290/350,,CRX +15.689436,0.0,0.0,0.0,20,19.6778,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9446,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,605,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7334,0,0.0,0.0,0.0,0.0,0,0,31864,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Standard Pickup Trucks 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +23.534154,0.0,0.0,0.0,12,12.1499,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.8831,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,285,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,16.8147,0,0.0,0.0,0.0,0.0,0,0,31865,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9343,0.0,23.179,0.0,Standard Pickup Trucks 4WD,2012,-7750,,,,,,,,,NSX +20.589638,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.9762,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,58,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,19.1604,0,0.0,0.0,0.0,0.0,0,0,31866,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4,0.0,26.5,0.0,Standard Pickup Trucks 4WD,2012,-5250,,,,,,,,,TYX +23.534154,0.0,0.0,0.0,13,12.9902,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.4841,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,62,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,16.8528,0,0.0,0.0,0.0,0.0,0,0,31867,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0128,0.0,23.2328,0.0,Standard Pickup Trucks 4WD,2012,-7750,,,,,,,,,TYX +21.974,6.806822,0.0,0.0,13,13.2439,9,9.4871,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.9226,11,10.6457,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,64,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.6581,13,12.5136,0.0,0.0,0.0,0,0,31868,0,0,Toyota,Tundra 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.3397,11.7047,24.3706,17.2705,Standard Pickup Trucks 4WD,2012,-6250,,,,,FFV,E85,290,,TYX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,610,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,31869,0,0,Chevrolet,Express 2500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2012,-11000,,,,,FFV,E85,280,,GMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3187,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.0,0.0,Compact Cars,1987,500,,,,,,,,, +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,614,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,31870,0,0,Chevrolet,Express 2500 2WD Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2012,-11000,,,,,FFV,E85,280,,GMX +29.950562,8.320004,0.0,0.0,10,9.8392,7,7.3794,0.0,0.0,0.0,-1,-1,699.4444444444445,807.9090909090909,11,11.4371,9,8.5567,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,615,FFV,-1,5000,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,14.2694,11,10.6292,0.0,0.0,0.0,0,0,31871,0,0,Chevrolet,Express 3500 2WD Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.0,9.0,19.6,14.6,"Vans, Cargo Type",2012,-13000,,,,,FFV,E85,280,,GMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,11.6593,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,20,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,13.6979,0,0.0,0.0,0.0,0.0,0,0,31872,0,0,Ford,E350 Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.7,0.0,18.8,0.0,"Vans, Cargo Type",2012,-11000,,,,,,,,,FMX +21.974,7.4910000000000005,0.0,0.0,13,13.1355,9,9.6009,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,14.5028,10,10.5921,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,146,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1217,0.0,0.0,0.0,0,0,31873,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,11.7,22.9,16.6,"Vans, Cargo Type",2012,-6250,,,,,FFV,E85,330,,FMX +21.974,7.4910000000000005,0.0,0.0,13,13.1355,9,9.6009,0.0,0.0,0.0,-1,-1,629.5,592.4666666666667,15,14.5028,10,10.5921,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,148,FFV,-1,3650,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.617,12,12.1217,0.0,0.0,0.0,0,0,31874,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,11.7,22.9,16.6,"Vans, Cargo Type",2012,-6250,,,,,FFV,E85,330,,FMX +23.534154,7.4910000000000005,0.0,0.0,12,12.2793,9,9.5214,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.7307,10,10.5387,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,150,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,16.0493,12,12.1217,0.0,0.0,0.0,0,0,31875,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,11.6,22.1,16.6,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,330,,FMX +23.534154,7.4910000000000005,0.0,0.0,12,12.2337,9,9.4828,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.6835,10,10.5007,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,151,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,16.0012,12,12.087,0.0,0.0,0.0,0,0,31876,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0416,11.5511,22.0323,16.5517,"Vans, Cargo Type",2012,-7750,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.1232,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.2441,10,10.1479,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,153,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,15.5518,12,11.7925,0.0,0.0,0.0,0,0,31877,0,0,Ford,E350 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Cargo Type",2012,-9250,,,,,FFV,E85,330,,FMX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,616,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,31878,0,0,GMC,Savana 2500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2012,-11000,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,619,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,31879,0,0,GMC,Savana 2500 2WD (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2012,-11000,,,,,FFV,E85,280,,GMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3188,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +29.950562,8.320004,0.0,0.0,10,9.8392,7,7.3794,0.0,0.0,0.0,-1,-1,699.4444444444445,807.9090909090909,11,11.4371,9,8.5567,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,620,FFV,-1,5000,5050,Gasoline or E85,Regular Gasoline,-1,-1,14,14.2694,11,10.6292,0.0,0.0,0.0,0,0,31880,0,0,GMC,Savana 3500 2WD (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.0,9.0,19.6,14.6,"Vans, Cargo Type",2012,-13000,,,,,FFV,E85,280,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,555,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,31881,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,310,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,556,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,31882,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,310,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,612,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,31883,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,10,10.3286,8,7.5519,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,12.0907,9,8.8596,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,613,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.2761,11,11.2379,0.0,0.0,0.0,0,0,31884,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6176,9.2254,21.0125,15.4579,"Vans, Passenger Type",2012,-11000,,,,,FFV,E85,280,,GMX +29.950562,0.0,0.0,0.0,10,9.8095,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,11.0824,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,21,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,13.1714,0,0.0,0.0,0.0,0.0,0,0,31885,0,0,Ford,E350 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,11.9625,0.0,18.064,0.0,"Vans, Passenger Type",2012,-13000,,,,,,,,,FMX +23.534154,7.4910000000000005,0.0,0.0,13,12.6691,9,9.0958,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.0198,10,10.1052,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,147,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,16.1203,12,11.6908,0.0,0.0,0.0,0,0,31886,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,11.2,22.2,16.1,"Vans, Passenger Type",2012,-7750,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.0409,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.2441,10,10.0709,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,152,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,16,15.5518,12,11.7002,0.0,0.0,0.0,0,0,31887,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,11,11.3395,9,8.724,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,12.6861,10,9.7076,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,165,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,15,14.8399,11,11.259,0.0,0.0,0.0,0,0,31888,0,0,Ford,E350 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.9,10.6,20.4,15.4,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,607,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,31889,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,310,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3189,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1987,-1750,,,,,,,,, +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,-1,-1,629.5,683.6153846153846,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,608,FFV,-1,4250,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,31890,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,310,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,617,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,31891,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2012,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,10,10.3806,8,7.5813,0.0,0.0,0.0,-1,-1,699.4444444444445,740.5833333333334,12,12.1488,9,8.8912,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,618,FFV,-1,4600,5050,Gasoline or E85,Regular Gasoline,-1,-1,15,15.3432,11,11.2713,0.0,0.0,0.0,0,0,31892,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.6834,9.2631,21.1067,15.5052,"Vans, Passenger Type",2012,-11000,,,,,FFV,E85,280,,GMX +0.324,0.0,0.0,8.0,62,61.9,0,0.0,0.0,55.0,0.0,0,-1,0.0,0.0,62,62.0,0,0.0,54.0,0.0,0.0,,,Front-Wheel Drive,1,,-1,950,0,Electricity,Electricity,-1,-1,62,62.0,0,0.0,0.0,54.0,0.0,0,0,31893,0,0,Azure Dynamics,Transit Connect Electric Van,N,false,0,0,56,56.7812,0.0,55.6759,0.0,Automatic (A1),88.4,0.0,88.6,0.0,Special Purpose Vehicle 2WD,2012,7250,,,,,EV,,,52 kW AC Induction,AZD +0.324,0.0,0.0,8.0,62,61.9,0,0.0,0.0,55.0,0.0,0,-1,0.0,0.0,62,62.0,0,0.0,54.0,0.0,0.0,,,Front-Wheel Drive,2,,-1,950,0,Electricity,Electricity,-1,-1,62,62.0,0,0.0,0.0,54.0,0.0,0,0,31894,0,0,Azure Dynamics,Transit Connect Electric Wagon,N,false,0,0,56,56.7812,0.0,55.6759,0.0,Automatic (A1),88.4,0.0,88.6,0.0,Special Purpose Vehicle 2WD,2012,7250,,,,,EV,,,52 kW AC Induction,AZD +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1199,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,39,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,31895,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,38.3,0.0,Minivan - 2WD,2012,-1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.1815,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,40,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,31896,0,0,Honda,Odyssey,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,0.0,38.8,0.0,Minivan - 2WD,2012,-500,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9311,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,34,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,23.9,0,0.0,0.0,0.0,0.0,0,0,31897,0,0,Toyota,Sienna 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,37.0,0.0,Minivan - 2WD,2012,-1000,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.0859,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6297,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,37,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,24.9123,0,0.0,0.0,0.0,0.0,0,0,31898,0,0,Toyota,Sienna 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6877,0.0,34.7377,0.0,Minivan - 2WD,2012,-1000,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,16.6244,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0463,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,38,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,23.1724,0,0.0,0.0,0.0,0.0,0,0,31899,0,0,Toyota,Sienna AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.7493,0.0,32.2316,0.0,Minivan - 4WD,2012,-2500,,,,,,,,,TYX +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3100,(CALIF),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,319,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3190,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0355,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,34,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,24.0,0,0.0,0.0,0.0,0.0,0,0,31900,0,0,Acura,RDX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.6,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2012,-2250,,,T,,,,,,HNX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,504,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,31901,0,0,Cadillac,Escalade Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,120,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,31902,0,0,Chevrolet,Captiva FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,512,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,31903,0,0,Chevrolet,Tahoe Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2759,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,521,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,15.7651,0,0.0,0.0,0.0,0.0,0,0,31904,0,0,Chevrolet,Suburban 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Sport Utility Vehicle - 2WD,2012,-11000,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1693,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,8,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,31905,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.5,0.0,41.9,0.0,Sport Utility Vehicle - 2WD,2012,500,,,T,,,,,,FMX +14.327048,0.0,0.0,0.0,20,19.787,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7465,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,65,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,27.8347,0,0.0,0.0,0.0,0.0,0,0,31906,0,0,Ford,Explorer FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.9687,0.0,38.975,0.0,Sport Utility Vehicle - 2WD,2012,0,,,T,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9193,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,119,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,31907,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.6,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5021,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,120,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31908,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,160,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,31909,0,0,Ford,Explorer FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,35.6499,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,3191,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1987,500,,,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,13.7899,10,10.072,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.9191,12,11.6329,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,186,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,19.6221,14,14.3512,0.0,0.0,0.0,0,0,31910,0,0,Ford,Expedition 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.045,12.4495,27.1563,19.8616,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,340/400,,FMX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,564,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,31911,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2759,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,570,,-1,4600,0,Regular,Regular Gasoline,-1,-1,16,15.7651,0,0.0,0.0,0.0,0.0,0,0,31912,0,0,GMC,Yukon XL 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Sport Utility Vehicle - 2WD,2012,-11000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3512,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,28,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,31913,0,0,Honda,Crosstour 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.7,0.0,38.3,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,17.7307,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.51,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,31914,0,0,Honda,Pilot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2147,0.0,35.4,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5469,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,31,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.8374,0,0.0,0.0,0.0,0.0,0,0,31915,0,0,Hyundai,Veracruz 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,32.6,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,HYX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.8724,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,381,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.9442,0,0.0,0.0,0.0,0.0,0,0,31916,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.8,0.0,27.6147,0.0,Sport Utility Vehicle - 2WD,2012,-6750,,,,,,,,,NSX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,33,,-1,3600,0,Midgrade,Midgrade Gasoline,-1,-1,20,19.5824,0,0.0,0.0,0.0,0.0,0,0,31917,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Sport Utility Vehicle - 2WD,2012,-6000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.5996,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0975,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,505,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,31918,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,40.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.5996,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0975,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,506,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,31919,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,40.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,3192,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,21.4318,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.562,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,507,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31920,0,0,Jeep,Compass 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.4318,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.562,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,508,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,31921,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.5,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,23,22.6682,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,510,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,31922,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,23,22.6682,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.4925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,511,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,31923,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.8945,0.0,38.0,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.8901,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0559,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,515,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.3323,0,0.0,0.0,0.0,0.0,0,0,31924,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.8901,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0559,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,516,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.3323,0,0.0,0.0,0.0,0.0,0,0,31925,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.2,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,CRX +10.987,0.0,0.0,0.0,32,31.5059,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.7833,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,19,,-1,2000,0,Premium,Premium Gasoline,-1,-1,28,27.9177,0,0.0,0.0,0.0,0.0,0,0,31926,0,0,Lexus,RX 450h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),41.4485,0.0,39.0959,0.0,Sport Utility Vehicle - 2WD,2012,2000,,,,,Hybrid,,,288V Ni-MH,TYX +15.689436,0.0,0.0,0.0,18,18.1776,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6871,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,35,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,24.8862,0,0.0,0.0,0.0,0.0,0,0,31927,0,0,Lexus,RX 350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.81,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,TYX +21.974,6.806822,0.0,0.0,13,12.7908,9,9.5676,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.5553,11,10.8343,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,162,FFV; Part-time 4-Wheel Drive,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5072,13,12.9258,0.0,0.0,0.0,0,0,31928,0,0,Lincoln,Navigator 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7564,11.6581,24.1572,17.721,Sport Utility Vehicle - 4WD,2012,-6250,,,,,FFV,E85,310/370,,FMX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5021,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,178,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,31929,0,0,Lincoln,MKX FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5,0.0,36.8,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,84,3193,13,14,Chevrolet,Cavalier,Y,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,13.8125,10,10.2182,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,15.9509,12,11.7863,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,184,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,20,19.6735,14,14.5074,0.0,0.0,0.0,0,0,31930,0,0,Lincoln,Navigator 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0742,12.4781,27.2295,19.9336,Sport Utility Vehicle - 2WD,2012,-5250,,,,,FFV,E85,340/400,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.8737,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4313,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,14,,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.8493,0,0.0,0.0,0.0,0.0,0,0,31931,0,0,Mazda,CX-9 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0786,0.0,33.2052,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,23,22.5256,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7575,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,211,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.1688,0,0.0,0.0,0.0,0.0,0,0,31932,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.6983,0.0,39.4617,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,MTX +14.964294,0.0,0.0,0.0,19,19.409,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9065,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,213,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,25.9949,0,0.0,0.0,0.0,0.0,0,0,31933,0,0,Mitsubishi,Outlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.4595,0.0,36.3032,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,MTX +19.381068,0.0,0.0,0.0,15,14.911,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.3656,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,187,,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.7394,0,0.0,0.0,0.0,0.0,0,0,31934,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.5015,0.0,30.177,0.0,Sport Utility Vehicle - 2WD,2012,-5750,,,,,,,,,NSX +21.974,0.0,0.0,0.0,13,12.5521,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.7224,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,282,,-1,3650,0,Regular,Regular Gasoline,-1,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,31935,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4498,0.0,25.8,0.0,Sport Utility Vehicle - 2WD,2012,-6250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.9507,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1625,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,483,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,21.8689,0,0.0,0.0,0.0,0.0,0,0,31936,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8623,0.0,30.3623,0.0,Sport Utility Vehicle - 2WD,2012,-3250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2405,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,77,SIDI,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,31937,0,0,Saab,9-4X FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,34.4,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,19.155,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6198,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,91,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,25.6544,0,0.0,0.0,0.0,0.0,0,0,31938,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1181,0.0,35.8103,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,SKX +15.689436,0.0,0.0,0.0,19,19.1164,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.2469,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,93,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,24.5973,0,0.0,0.0,0.0,0.0,0,0,31939,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0663,0.0,34.2831,0.0,Sport Utility Vehicle - 2WD,2012,-1000,,,,,,,,,SKX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,3194,13,14,Chevrolet,Cavalier,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,19.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6762,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,15,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,24.9,0,0.0,0.0,0.0,0.0,0,0,31940,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,37.8,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2298,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,16,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.1235,0,0.0,0.0,0.0,0.0,0,0,31941,0,0,Toyota,Highlander 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,33.6,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5383,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,46,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,20.5,0,0.0,0.0,0.0,0.0,0,0,31942,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5,0.0,30.2,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,14,14.2951,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.3588,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,55,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,31943,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.7,0.0,27.5,0.0,Sport Utility Vehicle - 2WD,2012,-5250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.8649,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,59,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.8909,0,0.0,0.0,0.0,0.0,0,0,31944,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1,0.0,24.7,0.0,Sport Utility Vehicle - 2WD,2012,-6250,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8302,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,33,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,31945,0,0,Acura,ZDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.6,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0,0,0.0,0.0,0.0,0.0,4,2.3,All-Wheel Drive,35,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,31946,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,T,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7566,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,43,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,31947,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3314,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,502,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,31948,0,0,Cadillac,Escalade Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,507,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,31949,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2012,-7750,,,,,FFV,E85,320,,GMX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,84,3195,13,14,Chevrolet,Cavalier,Y,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,508,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,31950,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2012,-7750,,,,,FFV,E85,320,,GMX +15.689436,0.0,0.0,0.0,20,19.6778,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9446,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,523,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7334,0,0.0,0.0,0.0,0.0,0,0,31951,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +27.4675,0.0,0.0,0.0,10,10.3133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.1157,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,525,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,15.4064,0,0.0,0.0,0.0,0.0,0,0,31952,0,0,Chevrolet,Suburban 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.5983,0.0,21.1956,0.0,Sport Utility Vehicle - 4WD,2012,-11000,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,17.2261,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3725,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,114,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.8529,0,0.0,0.0,0.0,0.0,0,0,31953,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.545,0.0,31.7728,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5222,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,128,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.4399,0,0.0,0.0,0.0,0.0,0,0,31954,0,0,Ford,Edge AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,35.5,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,FMX +21.974,6.806822,0.0,0.0,13,12.7908,9,9.5676,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.5553,11,10.8343,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,161,FFV; Part-time 4-Wheel Drive,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5072,13,12.9258,0.0,0.0,0.0,0,0,31955,0,0,Ford,Expedition 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7564,11.6581,24.1572,17.721,Sport Utility Vehicle - 4WD,2012,-6250,,,,,FFV,E85,310/370,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.9481,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,190,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.5931,0,0.0,0.0,0.0,0.0,0,0,31956,0,0,Ford,Explorer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,31.4,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,FMX +27.4675,0.0,0.0,0.0,10,10.3133,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.1157,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,571,,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,15.4064,0,0.0,0.0,0.0,0.0,0,0,31957,0,0,GMC,Yukon XL 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.5983,0.0,21.1956,0.0,Sport Utility Vehicle - 4WD,2012,-11000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,20,19.6778,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9446,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,575,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.7334,0,0.0,0.0,0.0,0.0,0,0,31958,0,0,GMC,Yukon 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.5,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,576,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,31959,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Sport Utility Vehicle - 4WD,2012,-7750,,,,,FFV,E85,320,,GMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3196,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1987,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3314,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,609,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,31960,0,0,GMC,Yukon Denali 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,18,17.5462,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5697,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,29,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,26.0578,0,0.0,0.0,0.0,0.0,0,0,31961,0,0,Honda,Crosstour 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.9696,0.0,36.3944,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.2813,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.885,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,42,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.3731,0,0.0,0.0,0.0,0.0,0,0,31962,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6181,0.0,33.9597,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9883,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,30,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.421,0,0.0,0.0,0.0,0.0,0,0,31963,0,0,Hyundai,Veracruz 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,31.1,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,HYX +20.589638,0.0,0.0,0.0,14,13.5231,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.7229,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,382,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.6246,0,0.0,0.0,0.0,0.0,0,0,31964,0,0,Infiniti,QX56 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.7,0.0,27.1599,0.0,Sport Utility Vehicle - 4WD,2012,-6750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.479,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,513,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,31965,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.479,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,514,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,31966,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,20.7706,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7385,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,517,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,25.7164,0,0.0,0.0,0.0,0.0,0,0,31967,0,0,Jeep,Compass 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,35.9,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,20.7706,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.7385,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,518,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,25.7164,0,0.0,0.0,0.0,0.0,0,0,31968,0,0,Jeep,Patriot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.3,0.0,35.9,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,520,Off Road Package,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,31969,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3197,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,521,Off Road Package,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,31970,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,CRX +11.360558000000001,0.0,0.0,0.0,30,29.5084,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.6072,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,20,,-1,2100,0,Premium,Premium Gasoline,-1,-1,28,27.5778,0,0.0,0.0,0.0,0.0,0,0,31971,0,0,Lexus,RX 450h AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.5411,0.0,38.601,0.0,Sport Utility Vehicle - 4WD,2012,1500,,,,,Hybrid,,,288V Ni-MH,TYX +16.4805,0.0,0.0,0.0,18,17.5592,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.9783,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,36,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,24.0233,0,0.0,0.0,0.0,0.0,0,0,31972,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9869,0.0,33.4557,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.0267,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,54,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,20.4252,0,0.0,0.0,0.0,0.0,0,0,31973,0,0,Lexus,GX 460,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,28.3,0.0,Sport Utility Vehicle - 4WD,2012,-5750,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.2261,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3725,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,129,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.8529,0,0.0,0.0,0.0,0.0,0,0,31974,0,0,Lincoln,MKX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.545,0.0,31.7728,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,16,16.3935,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.501,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,15,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.9498,0,0.0,0.0,0.0,0.0,0,0,31975,0,0,Mazda,CX-9 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4448,0.0,30.4782,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,TKX +17.337486000000002,0.0,0.0,0.0,17,16.9521,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.0121,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,402,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,22.3283,0,0.0,0.0,0.0,0.0,0,0,31976,0,0,Mercedes-Benz,ML350 4matic,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.1822,0.0,31.0204,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,,,,,,,MBX +17.351199,0.0,0.0,0.0,20,19.7103,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,22.0316,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,403,,-1,2700,0,Diesel,Diesel,-1,-1,27,26.9474,0,0.0,0.0,0.0,0.0,0,0,31977,0,0,Mercedes-Benz,ML350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.8652,0.0,37.6847,0.0,Sport Utility Vehicle - 4WD,2012,-1500,,,T,,Diesel,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,16.0146,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.92,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,412,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,21.1822,0,0.0,0.0,0.0,0.0,0,0,31978,0,0,Mercedes-Benz,R350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.9462,0.0,29.3803,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,,,,,,MBX +13.73375,0.0,0.0,0.0,22,21.7806,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.836,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,212,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,26.9436,0,0.0,0.0,0.0,0.0,0,0,31979,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),27.6766,0.0,37.6792,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3198,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,18.5627,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8602,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,214,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.5781,0,0.0,0.0,0.0,0.0,0,0,31980,0,0,Mitsubishi,Outlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3243,0.0,34.2553,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,,,,,,,MTX +19.381068,0.0,0.0,0.0,15,14.6842,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.6691,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,185,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.9679,0,0.0,0.0,0.0,0.0,0,0,31981,0,0,Nissan,Xterra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2059,0.0,27.6484,0.0,Sport Utility Vehicle - 4WD,2012,-4250,,,,,,,,,NSX +20.589638,0.0,0.0,0.0,14,14.3066,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.3276,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,188,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.7349,0,0.0,0.0,0.0,0.0,0,0,31982,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.7149,0.0,27.3168,0.0,Sport Utility Vehicle - 4WD,2012,-6750,,,,,,,,,NSX +23.534154,0.0,0.0,0.0,13,12.63,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.471,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,281,,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.6079,0,0.0,0.0,0.0,0.0,0,0,31983,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),15.5498,0.0,24.2996,0.0,Sport Utility Vehicle - 4WD,2012,-9500,,,,,,,,,NSX +23.534154,0.0,0.0,0.0,12,12.2721,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1872,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,283,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,17.531,0,0.0,0.0,0.0,0.0,0,0,31984,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0908,0.0,24.1908,0.0,Sport Utility Vehicle - 4WD,2012,-7750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,15,15.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0061,0,0.0,0.0,0.0,0.0,6,2.8,All-Wheel Drive,99,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,21.8254,0,0.0,0.0,0.0,0.0,0,0,31985,0,0,Saab,9-4X AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,30.3,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,T,,,,,,GMX +14.964294,0.0,0.0,0.0,19,19.3998,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0704,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,6,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.5349,0,0.0,0.0,0.0,0.0,0,0,31986,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4471,0.0,37.086,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,FJX +13.73375,0.0,0.0,0.0,22,21.5061,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.2126,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,8,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.6137,0,0.0,0.0,0.0,0.0,0,0,31987,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.3015,0.0,40.1105,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1902,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,9,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,31988,0,34,Subaru,Forester AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,37.6,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.0595,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,10,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.502,0,0.0,0.0,0.0,0.0,0,0,31989,0,34,Subaru,Forester AWD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S4),26.4,0.0,37.0383,0.0,Sport Utility Vehicle - 4WD,2012,0,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3199,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,18.918,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.7612,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,-1,2850,0,Premium,Premium Gasoline,-1,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,31990,0,34,Subaru,Forester AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8,0.0,32.8,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,T,,,,,,FJX +16.4805,0.0,0.0,0.0,18,17.527,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1528,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,18,,-1,2750,0,Regular,Regular Gasoline,-1,-1,25,24.6701,0,0.0,0.0,0.0,0.0,0,0,31991,0,35,Subaru,Outback Wagon AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9441,0.0,34.3881,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,FJX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.0451,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,19,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.266,0,0.0,0.0,0.0,0.0,0,0,31992,0,43,Subaru,Tribeca AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,29.5,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,94,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,31993,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4214,0.0,32.2765,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,SKX +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.794,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,17,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,22.2762,0,0.0,0.0,0.0,0.0,0,0,31994,0,0,Toyota,Highlander 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,30.9457,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,TYX +11.75609,0.0,0.0,0.0,28,27.6313,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5972,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,18,,-1,1950,0,Regular,Regular Gasoline,-1,-1,28,27.5557,0,0.0,0.0,0.0,0.0,0,0,31995,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.1308,0.0,37.6792,0.0,Sport Utility Vehicle - 4WD,2012,2250,,,,,Hybrid,,,288V Ni-MH,TYX +18.304342000000002,0.0,0.0,0.0,17,16.8899,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.9725,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,47,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,19.5,0,0.0,0.0,0.0,0.0,0,0,31996,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.1,0.0,29.1,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.1455,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,48,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,17.7,0,0.0,0.0,0.0,0.0,0,0,31997,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,26.6,0.0,Sport Utility Vehicle - 4WD,2012,-5250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.0529,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.8644,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,56,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.9008,0,0.0,0.0,0.0,0.0,0,0,31998,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0936,0.0,24.7139,0.0,Sport Utility Vehicle - 4WD,2012,-6250,,,,,,,,,TYX +23.534154,0.0,0.0,0.0,13,12.5648,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.2848,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,60,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,17.155,0,0.0,0.0,0.0,0.0,0,0,31999,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4661,0.0,23.6594,0.0,Sport Utility Vehicle - 4WD,2012,-7750,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57031,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,32,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Two Seaters,1985,1500,,,,,,,,, +9.976196,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3120,,-1,1650,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,320,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.7778,0.0,56.0,0.0,Compact Cars,1985,3750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,3200,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0,0.0,Compact Cars,1987,1500,,,,,,,,, +21.974,6.806822,0.0,0.0,13,12.8248,9,9.2533,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.5669,11,10.5355,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,63,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,17,17.4668,13,12.6834,0.0,0.0,0.0,0,0,32000,0,0,Toyota,Sequoia 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8,11.4,24.1,17.5,Sport Utility Vehicle - 4WD,2012,-6250,,,,,FFV,E85,290,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3894,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,75,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.056,0,0.0,0.0,0.0,0.0,0,0,32001,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,29.2,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5436,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,76,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,20.0743,0,0.0,0.0,0.0,0.0,0,0,32002,0,0,Jeep,Wrangler Unlimited 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.4283,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,77,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,32003,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,29.8,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5989,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,78,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,32004,0,0,Jeep,Wrangler Unlimited 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.7,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,CRX +9.141184,0.0,0.0,0.0,34,35.1082,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.9709,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,39.5346,0,0.0,0.0,0.0,0.0,0,0,32005,0,10,Kia,Optima Hybrid,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,46.8,0.0,56.3,0.0,Midsize Cars,2011,4250,,,,,Hybrid,,,270V Li-Ion,KMX +12.657024,0.0,0.0,0.0,22,22.1199,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6844,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,428,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,31.9838,0,0.0,0.0,0.0,0.0,0,0,32006,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,27.9499,0.0,46.8896,0.0,Two Seaters,2012,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,22.5428,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.6851,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,429,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,34,34.4142,0,0.0,0.0,0.0,0.0,0,0,32007,0,0,BMW,Z4 sDrive28i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.4646,0.0,48.2653,0.0,Two Seaters,2012,750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.352,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1977,0,0.0,0.0,0.0,0.0,0,0,32008,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Two Seaters,2012,-2250,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.9175,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3783,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.5682,0,0.0,0.0,0.0,0.0,0,0,32009,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.1365,0.0,32.8007,0.0,Two Seaters,2012,-3750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,3201,0,14,Chevrolet,Nova,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,47.0,0.0,Compact Cars,1987,2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.9175,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3783,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,438,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.5682,0,0.0,0.0,0.0,0.0,0,0,32010,0,0,BMW,Z4 sDrive35is,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.1365,0.0,32.8007,0.0,Two Seaters,2012,-3750,,,T,,,,,,BMX +9.690534,0.0,0.0,0.0,31,31.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,33.5194,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,8,,-1,1600,0,Regular,Regular Gasoline,-1,-1,37,36.7,0,0.0,0.0,0.0,0.0,0,0,32011,0,0,Honda,CR-Z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,40.3,0.0,52.2,0.0,Two Seaters,2012,4000,,,,,Hybrid,,,101V Ni-MH,HNX +8.89947,0.0,0.0,0.0,35,34.8072,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,36.6159,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,9,,-1,1500,0,Regular,Regular Gasoline,-1,-1,39,39.0991,0,0.0,0.0,0.0,0.0,0,0,32012,0,0,Honda,CR-Z,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),46.3474,0.0,55.6446,0.0,Two Seaters,2012,4500,,,,,Hybrid,,,101V Ni-MH,HNX +18.304342000000002,0.0,0.0,0.0,15,15.1648,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.5953,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,1,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,21.8817,0,0.0,0.0,0.0,0.0,0,0,32013,0,0,McLaren Automotive,MP4-12C Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.1354,0.0,30.8104,0.0,Two Seaters,2012,-4750,,,T,,,,,,MLN +14.964294,0.0,0.0,0.0,19,18.795,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5963,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,56,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,26.4067,0,0.0,0.0,0.0,0.0,0,0,32014,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6352,0.0,36.9,0.0,Two Seaters,2012,-1750,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8477,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,57,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7948,0,0.0,0.0,0.0,0.0,0,0,32015,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.6,0.0,36.0135,0.0,Two Seaters,2012,-2250,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.9884,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5284,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,58,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,24.8103,0,0.0,0.0,0.0,0.0,0,0,32016,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.5577,0.0,34.5904,0.0,Two Seaters,2012,-2250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3993,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,59,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,32017,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2,0.0,34.9,0.0,Two Seaters,2012,-3000,,,,,,,,,NSX +23.534154,7.4910000000000005,0.0,0.0,11,11.2476,8,7.8665,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.7134,10,9.6274,0.0,0.0,0.0,12,6.0,All-Wheel Drive,88,FFV,-1,4300,4550,Premium or E85,Premium Gasoline,-1,-1,19,18.7327,13,13.2535,0.0,0.0,0.0,0,0,32018,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7,9.5,24.6,17.3,Subcompact Cars,2012,-9500,G,,T,,FFV,E85,238,,BEX +15.689436,0.0,0.0,0.0,18,18.0838,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.4865,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,302,,-1,2850,0,Premium,Premium Gasoline,-1,-1,28,27.9037,0,0.0,0.0,0.0,0.0,0,0,32019,11,0,BMW,328i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6848,0.0,39.0754,0.0,Subcompact Cars,2012,-2250,,,,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38041,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3202,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1987,-3250,,2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,18.3849,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6577,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6801,0,0.0,0.0,0.0,0.0,0,0,32020,11,0,BMW,328i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.0867,0.0,38.7499,0.0,Subcompact Cars,2012,-1750,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.4096,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3081,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,306,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.4965,0,0.0,0.0,0.0,0.0,0,0,32021,11,0,BMW,328i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7882,0.0,35.5819,0.0,Subcompact Cars,2012,-3000,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.5601,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.6078,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,307,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2982,0,0.0,0.0,0.0,0.0,0,0,32022,11,0,BMW,328i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6645,0.0,35.2952,0.0,Subcompact Cars,2012,-3000,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.8503,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9994,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,312,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7721,0,0.0,0.0,0.0,0.0,0,0,32023,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3738,0.0,37.4302,0.0,Subcompact Cars,2012,-2250,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.9112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.191,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,313,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.4642,0,0.0,0.0,0.0,0.0,0,0,32024,9,0,BMW,328ci Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1281,0.0,36.9834,0.0,Subcompact Cars,2012,-3000,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,18,18.4429,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7054,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,337,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6928,0,0.0,0.0,0.0,0.0,0,0,32025,11,0,BMW,335i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1642,0.0,38.7684,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.7785,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.962,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,338,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.7021,0,0.0,0.0,0.0,0.0,0,0,32026,11,0,BMW,335i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6131,0.0,38.7819,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3837,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,341,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,32027,11,0,BMW,335i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.3,0.0,Subcompact Cars,2012,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7141,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,342,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,32028,11,0,BMW,335i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.7,0.0,37.3,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.9175,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3783,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,343,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.5682,0,0.0,0.0,0.0,0.0,0,0,32029,11,0,BMW,335is Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.1365,0.0,32.8007,0.0,Subcompact Cars,2012,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38041,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3203,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Compact Cars,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7976,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.7504,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,344,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.0283,0,0.0,0.0,0.0,0.0,0,0,32030,11,0,BMW,335is Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3038,0.0,36.3517,0.0,Subcompact Cars,2012,-2250,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.9175,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3783,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,345,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.5682,0,0.0,0.0,0.0,0.0,0,0,32031,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S7),21.1365,0.0,32.8007,0.0,Subcompact Cars,2012,-3750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.7976,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.7504,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,346,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.0283,0,0.0,0.0,0.0,0.0,0,0,32032,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3038,0.0,36.3517,0.0,Subcompact Cars,2012,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,18,18.4429,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7054,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,347,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6928,0,0.0,0.0,0.0,0.0,0,0,32033,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1642,0.0,38.7684,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.7785,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.962,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,348,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.7021,0,0.0,0.0,0.0,0.0,0,0,32034,0,9,BMW,335ci Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.6131,0.0,38.7819,0.0,Subcompact Cars,2012,-1750,,,T,,,,,,BMX +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,101,,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,32035,0,19,Chevrolet,Sonic 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Midsize Cars,2012,3750,,,T,,,,,,GMX +16.4805,0.0,0.0,0.0,17,17.3058,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1554,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,54,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2339,0,0.0,0.0,0.0,0.0,0,0,32036,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6506,0.0,35.2023,0.0,Subcompact Cars,2012,-3000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8778,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,32037,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,32.9,0.0,Subcompact Cars,2012,-3750,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.5003,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4489,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,72,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.8838,0,0.0,0.0,0.0,0.0,0,0,32038,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5856,0.0,34.6965,0.0,Subcompact Cars,2012,-3750,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,18.8645,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6905,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,73,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.5519,0,0.0,0.0,0.0,0.0,0,0,32039,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.7284,0.0,37.1107,0.0,Subcompact Cars,2012,-1750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,89,3204,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,38.0,0.0,Compact Cars,1987,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,17.74,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4705,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,74,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2136,0,0.0,0.0,0.0,0.0,0,0,32040,7,0,Infiniti,G37x Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.2271,0.0,35.1729,0.0,Subcompact Cars,2012,-3000,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.7672,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3871,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,32,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.0729,0,0.0,0.0,0.0,0.0,0,0,32041,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6214,0.0,32.0888,0.0,Subcompact Cars,2012,-4750,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,21,21.2907,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.7459,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,102,SIDI,-1,2400,0,Premium,Premium Gasoline,-1,-1,31,30.8686,0,0.0,0.0,0.0,0.0,0,0,32042,12,0,Mercedes-Benz,C250 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.0077,0.0,43.4115,0.0,Subcompact Cars,2012,0,,,T,,,,,,MBX +15.689436,0.0,0.0,0.0,17,17.2112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.5578,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,132,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.9664,0,0.0,0.0,0.0,0.0,0,0,32043,11,0,Mercedes-Benz,E550 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.69,0.0,36.9977,0.0,Subcompact Cars,2012,-2250,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,16.4648,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3933,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,142,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.7803,0,0.0,0.0,0.0,0.0,0,0,32044,6,0,Mercedes-Benz,E550 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4837,0.0,35.6565,0.0,Subcompact Cars,2012,-3750,,,T,,,,,,MBX +11.360558000000001,0.0,0.0,0.0,27,26.6835,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.3517,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,13,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,33.4385,0,0.0,0.0,0.0,0.0,11,84,32045,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,47.2,0.0,Subcompact Cars,2012,2500,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,27,26.8246,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.3744,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,14,,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,33.2357,0,0.0,0.0,0.0,0.0,11,84,32046,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2012,2500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,20.684,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9474,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,86,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,29.6687,0,0.0,0.0,0.0,0.0,12,85,32047,0,0,Volkswagen,Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.4399,0.0,41.3797,0.0,Subcompact Cars,2012,-500,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.7202,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0055,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,87,,-1,2200,0,Regular,Regular Gasoline,-1,-1,31,30.6767,0,0.0,0.0,0.0,0.0,12,85,32048,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.42,0.0,42.8589,0.0,Subcompact Cars,2012,1000,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.5675,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.2332,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,640,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,33,32.7312,0,0.0,0.0,0.0,0.0,0,0,32049,16,0,BMW,640i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.7559,0.0,46.1545,0.0,Compact Cars,2012,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,89,3205,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.8718,0.0,Compact Cars,1987,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,20,20.0021,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.582,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,641,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.1848,0,0.0,0.0,0.0,0.0,0,0,32050,12,0,BMW,640i Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2591,0.0,42.4082,0.0,Compact Cars,2012,-500,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,15.1713,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.8815,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,652,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,19.579,0,0.0,0.0,0.0,0.0,0,0,32051,16,0,BMW,650i Coupe xDrive,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,33.7,0.0,Compact Cars,2012,-5750,,,T,,,,,,BMX +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,100,,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,32052,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Compact Cars,2012,3750,,,T,,,,,,GMX +7.844718,0.0,0.0,0.0,41,40.7514,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,42.2414,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3,,-1,1300,0,Regular,Regular Gasoline,-1,-1,44,44.2174,0,0.0,0.0,0.0,0.0,0,0,32053,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.4746,0.0,63.4006,0.0,Compact Cars,2012,5500,,,,,Hybrid,,,101V Ni-MH,HNX +7.844718,0.0,0.0,0.0,41,40.8313,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,42.3319,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,4,,-1,1300,0,Regular,Regular Gasoline,-1,-1,44,44.3228,0,0.0,0.0,0.0,0.0,0,0,32054,0,16,Honda,Insight,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AV-S7),55.6,0.0,63.5616,0.0,Compact Cars,2012,5500,,,,,Hybrid,,,101V Ni-MH,HNX +9.404872000000001,0.0,0.0,0.0,35,35.3618,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,34.5564,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,,-1,1550,0,Regular,Regular Gasoline,-1,-1,34,33.6204,0,0.0,0.0,0.0,0.0,0,0,32055,0,12,Lexus,HS 250h,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),47.1821,0.0,47.4692,0.0,Compact Cars,2012,4250,,,,,Hybrid,,,245V Ni-MH,TYX +10.613442000000001,0.0,0.0,0.0,27,26.518,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.9087,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,18,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,39,38.7507,0,0.0,0.0,0.0,0.0,0,0,32056,0,12,Mazda,3 DI 4-Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.2658,0.0,55.1208,0.0,Compact Cars,2012,3000,,,,,,,,,TKX +9.976196,0.0,0.0,0.0,28,28.2508,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,32.5923,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,SIDI,-1,1650,0,Regular,Regular Gasoline,-1,-1,40,40.1298,0,0.0,0.0,0.0,0.0,0,0,32057,0,12,Mazda,3 DI 4-Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),36.732,0.0,57.1972,0.0,Compact Cars,2012,3750,,,,,,,,,TKX +11.75609,0.0,0.0,0.0,25,24.561,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.0979,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,111,,-1,1950,0,Regular,Regular Gasoline,-1,-1,34,34.0997,0,0.0,0.0,0.0,0.0,0,0,32058,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.517,0.0,48.1793,0.0,Compact Cars,2012,2250,,,,,,,,,MTX +11.360558000000001,0.0,0.0,0.0,26,25.5956,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.7995,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,112,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,34.0015,0,0.0,0.0,0.0,0.0,0,0,32059,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.9655,0.0,48.0338,0.0,Compact Cars,2012,2500,,,,,,,,,MTX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,89,3206,0,12,Nissan,Stanza,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Compact Cars,1987,-1000,,2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,22.4951,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6541,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,113,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.9696,0,0.0,0.0,0.0,0.0,0,0,32060,0,12,Mitsubishi,Lancer,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6563,0.0,43.56,0.0,Compact Cars,2012,1500,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,23,22.9699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.7372,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,114,,-1,2100,0,Regular,Regular Gasoline,-1,-1,30,30.1812,0,0.0,0.0,0.0,0.0,0,0,32061,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.3101,0.0,42.4029,0.0,Compact Cars,2012,1500,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,17.527,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2498,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,115,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,24.9958,0,0.0,0.0,0.0,0.0,0,0,32062,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),21.9441,0.0,34.8582,0.0,Compact Cars,2012,-3000,,,T,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.759,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,116,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,28.609,0,0.0,0.0,0.0,0.0,0,0,32063,0,12,Mitsubishi,Lancer AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3928,0.0,40.1036,0.0,Compact Cars,2012,1000,,,,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.8097,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1027,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,131,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.9248,0,0.0,0.0,0.0,0.0,0,0,32064,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9939,0.0,31.8761,0.0,Compact Cars,2012,-3750,,,T,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.5949,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7802,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,132,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,22.3827,0,0.0,0.0,0.0,0.0,0,0,32065,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),20.7103,0.0,31.0983,0.0,Compact Cars,2012,-3750,,,T,,,,,,MTX +16.4805,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7452,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,32,,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.1235,0,0.0,0.0,0.0,0.0,0,0,32066,0,14,Acura,RL,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,33.6,0.0,Midsize Cars,2012,-3000,,,,,,,,,HNX +12.19557,0.0,0.0,0.0,23,23.191,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.0866,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,528,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,34,34.0843,0,0.0,0.0,0.0,0.0,0,0,32067,0,14,BMW,528i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 8-spd,30.5,0.0,49.4,0.0,Midsize Cars,2012,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2998,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8914,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,530,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,32.2375,0,0.0,0.0,0.0,0.0,0,0,32068,0,14,BMW,528i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 8-spd,29.4,0.0,46.6,0.0,Midsize Cars,2012,500,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.0021,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.582,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,535,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.1848,0,0.0,0.0,0.0,0.0,0,0,32069,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2591,0.0,42.4082,0.0,Midsize Cars,2012,-500,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,89,3207,0,12,Nissan,Stanza,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Compact Cars,1987,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.6703,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2277,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,536,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,30,29.819,0,0.0,0.0,0.0,0.0,0,0,32070,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8113,0.0,41.8723,0.0,Midsize Cars,2012,-1000,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,21,20.9913,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.3237,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,537,SIDI,-1,2500,0,Premium,Premium Gasoline,-1,-1,30,30.1792,0,0.0,0.0,0.0,0.0,0,0,32071,0,14,BMW,535i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),26.6,0.0,42.4,0.0,Midsize Cars,2012,-500,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,15.1713,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.8815,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,552,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,19.579,0,0.0,0.0,0.0,0.0,0,0,32072,0,14,BMW,550i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,33.7,0.0,Midsize Cars,2012,-5750,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1815,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7221,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,758,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.0729,0,0.0,0.0,0.0,0.0,0,0,32073,0,13,BMW,ActiveHybrid 7,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),21.4858,0.0,33.5272,0.0,Midsize Cars,2012,-3000,,,T,,Hybrid,,,126V Li-Ion,BMX +14.964294,0.0,0.0,0.0,19,18.8645,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6905,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,51,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.5519,0,0.0,0.0,0.0,0.0,0,0,32074,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),23.7284,0.0,37.1107,0.0,Midsize Cars,2012,-1750,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.5003,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4489,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,52,,-1,3150,0,Premium,Premium Gasoline,-1,-1,25,24.8838,0,0.0,0.0,0.0,0.0,0,0,32075,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5856,0.0,34.6965,0.0,Midsize Cars,2012,-3750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.74,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4705,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,53,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2136,0,0.0,0.0,0.0,0.0,0,0,32076,0,14,Infiniti,G37x,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),22.2271,0.0,35.1729,0.0,Midsize Cars,2012,-3000,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,20.1433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.3574,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,131,,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,29.016,0,0.0,0.0,0.0,0.0,0,0,32077,0,14,Infiniti,G25,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),25.4499,0.0,40.6978,0.0,Midsize Cars,2012,-1000,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,19.4392,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.292,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,132,,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,32078,0,14,Infiniti,G25x,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),24.5001,0.0,38.0,0.0,Midsize Cars,2012,-1750,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2013,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,32079,0,15,Lexus,ES 350,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0,0.0,38.9,0.0,Midsize Cars,2012,-500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3208,0,16,Dodge,Omni,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Compact Cars,1987,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.2072,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1017,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,28,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.4356,0,0.0,0.0,0.0,0.0,0,0,32080,0,14,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2012,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3298,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,29,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.1155,0,0.0,0.0,0.0,0.0,0,0,32081,0,14,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2012,-4750,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.2072,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.1017,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,30,,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.4356,0,0.0,0.0,0.0,0.0,0,0,32082,0,14,Lexus,LS 460 L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1995,0.0,34.0499,0.0,Midsize Cars,2012,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.3298,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,31,,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.1155,0,0.0,0.0,0.0,0.0,0,0,32083,0,14,Lexus,LS 460 L AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.1499,0.0,Midsize Cars,2012,-4750,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,19,18.5788,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.4375,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,33,,-1,3000,0,Premium,Premium Gasoline,-1,-1,23,23.2848,0,0.0,0.0,0.0,0.0,0,0,32084,0,10,Lexus,LS 600h L,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S8),24.7,0.0,30.3,0.0,Midsize Cars,2012,-3000,,,,,Hybrid,,,288V Ni-MH,TYX +10.613442000000001,0.0,0.0,0.0,27,26.5647,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.72,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,SIDI,-1,1800,0,Regular,Regular Gasoline,-1,-1,38,37.9814,0,0.0,0.0,0.0,0.0,17,95,32085,0,0,Mazda,3 DI 5-Door,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3319,0.0,53.9662,0.0,Midsize Cars,2012,3000,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,28,27.9819,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,31.96,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,21,SIDI,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,38.6812,0,0.0,0.0,0.0,0.0,17,95,32086,0,0,Mazda,3 DI 5-Door,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),36.3472,0.0,55.0164,0.0,Midsize Cars,2012,3500,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,20,19.5026,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1706,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,301,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,30,30.0866,0,0.0,0.0,0.0,0.0,0,0,32087,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.5854,0.0,42.2643,0.0,Midsize Cars,2012,-1000,,,,,,,,,MBX +15.287400000000002,0.0,0.0,0.0,21,21.4774,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,25.3103,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,-1,2350,0,Diesel,Diesel,-1,-1,32,32.3711,0,0.0,0.0,0.0,0.0,0,0,32088,0,14,Mercedes-Benz,E350 Bluetec,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.2623,0.0,45.6231,0.0,Midsize Cars,2012,250,,,T,,Diesel,,,,MBX +14.327048,0.0,0.0,0.0,19,19.1709,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.5104,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,306,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,29,28.5995,0,0.0,0.0,0.0,0.0,0,0,32089,0,13,Mercedes-Benz,E350 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.1394,0.0,40.0897,0.0,Midsize Cars,2012,-1000,,,,,,,,,MBX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3209,0,16,Dodge,Omni,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,16,16.3796,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.5321,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,307,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,25.5401,0,0.0,0.0,0.0,0.0,0,0,32090,0,13,Mercedes-Benz,E550 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.3219,0.0,34.7374,0.0,Midsize Cars,2012,-3000,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.691,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.6376,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,322,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,24.1897,0,0.0,0.0,0.0,0.0,0,0,32091,0,13,Mercedes-Benz,E63 AMG,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2491,0.0,31.4864,0.0,Midsize Cars,2012,-3750,,,T,,,,,,MBX +8.02051,0.0,0.0,0.0,43,42.6949,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,41.1635,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,66,,-1,1350,0,Regular,Regular Gasoline,-1,-1,39,39.4347,0,0.0,0.0,0.0,0.0,0,0,32092,0,13,Toyota,Camry Hybrid LE,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),58.5479,0.0,56.1496,0.0,Midsize Cars,2012,5250,,,,,Hybrid,,,245V Ni-MH,TYX +8.24025,0.0,0.0,0.0,40,40.4843,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,39.507,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,67,,-1,1400,0,Regular,Regular Gasoline,-1,-1,38,38.3747,0,0.0,0.0,0.0,0.0,0,0,32093,0,13,Toyota,Camry Hybrid XLE,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.0557,0.0,54.5561,0.0,Midsize Cars,2012,5000,,,,,Hybrid,,,245V Ni-MH,TYX +14.964294,0.0,0.0,0.0,19,18.5621,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9578,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,540,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.2811,0,0.0,0.0,0.0,0.0,0,0,32094,0,10,BMW,535i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),23.3235,0.0,39.6253,0.0,Large Cars,2012,-1750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.9895,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.1168,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,541,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.8139,0,0.0,0.0,0.0,0.0,0,0,32095,0,10,BMW,535i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5592,0.0,37.4908,0.0,Large Cars,2012,-2250,,,T,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,15,15.1338,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.7058,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,554,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.3477,0,0.0,0.0,0.0,0.0,0,0,32096,0,10,BMW,550i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),19.1022,0.0,31.4255,0.0,Large Cars,2012,-4750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.8562,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.6129,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,555,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,19.4194,0,0.0,0.0,0.0,0.0,0,0,32097,0,10,BMW,550i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),18.7559,0.0,31.5039,0.0,Large Cars,2012,-5750,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1815,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.7221,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,759,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,24.0729,0,0.0,0.0,0.0,0.0,0,0,32098,0,13,BMW,ActiveHybrid 7L,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),21.4858,0.0,33.5272,0.0,Large Cars,2012,-3000,,,T,,Hybrid,,,126V Li-Ion,BMX +21.974,0.0,0.0,0.0,13,12.7329,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.0554,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,760,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.3747,0,0.0,0.0,0.0,0.0,0,0,32099,0,14,BMW,760Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),15.6819,0.0,26.8045,0.0,Large Cars,2012,-8000,G,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3102,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,321,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3210,0,16,Dodge,Omni,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Compact Cars,1987,-3000,,,T,,,,,, +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3998,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,5,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.7231,0,0.0,0.0,0.0,0.0,0,0,32100,0,14,Rolls-Royce,Ghost,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S8),16.1,0.0,27.3,0.0,Large Cars,2012,-8000,G,,T,,,,,,RRG +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3998,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,6,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,20,19.7231,0,0.0,0.0,0.0,0.0,0,0,32101,0,14,Rolls-Royce,Ghost EWB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic (S8),16.1,0.0,27.3,0.0,Large Cars,2012,-8000,G,,T,,,,,,RRG +15.689436,0.0,0.0,0.0,18,17.8503,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.9994,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,308,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.7721,0,0.0,0.0,0.0,0.0,0,0,32102,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3738,0.0,37.4302,0.0,Small Station Wagons,2012,-2250,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.9112,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.191,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,309,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,26.4642,0,0.0,0.0,0.0,0.0,0,0,32103,0,25,BMW,328i Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.1281,0.0,36.9834,0.0,Small Station Wagons,2012,-3000,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.4096,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3081,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,310,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.4965,0,0.0,0.0,0.0,0.0,0,0,32104,0,25,BMW,328i xDrive Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7882,0.0,35.5819,0.0,Small Station Wagons,2012,-3000,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.5601,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,19.6078,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,311,,-1,3000,0,Premium,Premium Gasoline,-1,-1,25,25.2982,0,0.0,0.0,0.0,0.0,0,0,32105,0,25,BMW,328i xDrive Sport Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6645,0.0,35.2952,0.0,Small Station Wagons,2012,-3000,,,,,,,,,BMX +12.19557,0.0,0.0,0.0,24,24.4211,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.4415,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,122,,-1,2050,0,Regular,Regular Gasoline,-1,-1,32,32.3283,0,0.0,0.0,0.0,0.0,14,95,32106,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.322,0.0,45.56,0.0,Small Station Wagons,2012,1750,,,,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3033,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.759,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,124,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,28.609,0,0.0,0.0,0.0,0.0,14,95,32107,0,0,Mitsubishi,Lancer Sportback,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3928,0.0,40.1036,0.0,Small Station Wagons,2012,1000,,,,,,,,,MTX +11.360558000000001,0.0,0.0,0.0,27,27.1918,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.2598,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,121,,-1,2100,0,Premium,Premium Gasoline,-1,-1,32,32.2583,0,0.0,0.0,0.0,0.0,0,0,32108,0,10,Nissan,Juke,Y,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AV-S6),35.2212,0.0,45.4568,0.0,Small Station Wagons,2012,1500,,,T,,,,,,NSX +12.19557,0.0,0.0,0.0,25,25.264,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.1104,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,123,,-1,2250,0,Premium,Premium Gasoline,-1,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,32109,0,10,Nissan,Juke AWD,Y,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.5,0.0,41.8,0.0,Small Station Wagons,2012,750,,,T,,,,,,NSX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2022,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3211,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1987,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.5423,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5886,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,316,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.0127,0,0.0,0.0,0.0,0.0,0,0,32110,0,36,Mercedes-Benz,E350 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.297,0.0,37.7796,0.0,Midsize Station Wagons,2012,-1750,,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.3821,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.1903,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,323,SIDI,-1,3350,0,Premium,Premium Gasoline,-1,-1,23,23.4148,0,0.0,0.0,0.0,0.0,0,0,32111,0,36,Mercedes-Benz,E63 AMG (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9965,0.0,30.9373,0.0,Midsize Station Wagons,2012,-4750,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,13,12.5758,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.417,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,109,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,17.5591,0,0.0,0.0,0.0,0.0,0,0,32112,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4802,0.0,24.2305,0.0,Standard Pickup Trucks 2WD,2012,-7750,,,,,,,,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.5999,12,12.3338,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.8495,14,14.0107,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,117,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.5915,17,16.8029,0.0,0.0,0.0,0,0,32113,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.717,15.1698,31.3977,23.1623,Standard Pickup Trucks 2WD,2012,-2500,,,,,FFV,E85,360/500,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.6001,12,12.3339,0.0,0.0,0.0,-1,-1,449.64285714285717,467.7368421052632,19,18.8497,14,14.0108,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,118,FFV,-1,2900,3250,Gasoline or E85,Regular Gasoline,-1,-1,23,22.5916,17,16.803,0.0,0.0,0.0,0,0,32114,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.7172,15.1699,31.3979,23.1624,Standard Pickup Trucks 2WD,2012,-2500,,,,,FFV,E85,360/500,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.2572,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.4996,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,132,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2507,0,0.0,0.0,0.0,0.0,0,0,32115,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2653,0.0,30.9091,0.0,Standard Pickup Trucks 2WD,2012,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.2337,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.4799,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,133,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2412,0,0.0,0.0,0.0,0.0,0,0,32116,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.2344,0.0,30.8955,0.0,Standard Pickup Trucks 2WD,2012,-3250,,,T,,,,,,FMX +19.381068,5.758082,0.0,0.0,15,14.9965,11,11.2357,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.1155,13,12.7651,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,139,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.6883,15,15.3126,0.0,0.0,0.0,0,0,32117,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.613,13.7679,28.6752,21.0638,Standard Pickup Trucks 2WD,2012,-4250,,,,,FFV,E85,340/470,,FMX +19.381068,5.758082,0.0,0.0,15,14.9775,11,11.2206,0.0,0.0,0.0,-1,-1,484.2307692307692,522.7647058823529,17,17.0862,13,12.7445,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,140,FFV,-1,3250,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.6376,15,15.2811,0.0,0.0,0.0,0,0,32118,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5883,13.7487,28.6029,21.0195,Standard Pickup Trucks 2WD,2012,-4250,,,,,FFV,E85,340/470,,FMX +25.336022,0.0,0.0,0.0,11,11.4966,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.0696,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,111,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,15.694,0,0.0,0.0,0.0,0.0,0,0,32119,0,0,Ford,F150 Raptor Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.1,0.0,21.6,0.0,Standard Pickup Trucks 4WD,2012,-9250,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3212,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Compact Cars,1987,-3750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,11.5453,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,13.1495,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,112,,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,15.8396,0,0.0,0.0,0.0,0.0,0,0,32120,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.1621,0.0,21.8049,0.0,Standard Pickup Trucks 4WD,2012,-9250,,,,,,,,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.7409,12,11.6923,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,17.6356,13,13.113,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,122,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.6777,15,15.3999,0.0,0.0,0.0,0,0,32121,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5869,14.3495,28.66,21.1865,Standard Pickup Trucks 4WD,2012,-3250,,,,,FFV,E85,340/470,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.7413,12,11.6926,0.0,0.0,0.0,-1,-1,484.2307692307692,493.72222222222223,18,17.6361,13,13.1133,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,123,FFV,-1,3050,3500,Gasoline or E85,Regular Gasoline,-1,-1,21,20.6782,15,15.4004,0.0,0.0,0.0,0,0,32122,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.5874,14.3499,28.6608,21.1871,Standard Pickup Trucks 4WD,2012,-3250,,,,,FFV,E85,340/470,,FMX +19.381068,0.0,0.0,0.0,15,15.0721,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2253,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,135,SIDI,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,20.8692,0,0.0,0.0,0.0,0.0,0,0,32123,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.7117,0.0,28.9333,0.0,Standard Pickup Trucks 4WD,2012,-4250,,,T,,,,,,FMX +19.381068,0.0,0.0,0.0,15,15.0882,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2389,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,137,SIDI,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,20.8758,0,0.0,0.0,0.0,0.0,0,0,32124,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.7328,0.0,28.9427,0.0,Standard Pickup Trucks 4WD,2012,-4250,,,T,,,,,,FMX +20.589638,6.242500000000001,0.0,0.0,14,14.1371,11,10.6413,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,16.0137,12,11.9874,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,141,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,19.1149,14,14.1796,0.0,0.0,0.0,0,0,32125,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.4949,13.0133,26.4354,19.4742,Standard Pickup Trucks 4WD,2012,-5250,,,,,FFV,E85,310/430,,FMX +20.589638,6.242500000000001,0.0,0.0,14,14.1307,11,10.653,0.0,0.0,0.0,-1,-1,524.5833333333334,555.4375,16,16.0023,12,11.9792,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,142,FFV,-1,3450,3800,Gasoline or E85,Regular Gasoline,-1,-1,19,19.0933,14,14.1672,0.0,0.0,0.0,0,0,32126,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4866,13.0057,26.4047,19.4569,Standard Pickup Trucks 4WD,2012,-5250,,,,,FFV,E85,310/430,,FMX +19.381068,0.0,0.0,0.0,15,15.4456,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4616,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,38,,-1,3250,0,Regular,Regular Gasoline,-1,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,32127,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.8,0.0,Standard Pickup Trucks 4WD,2012,-4250,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,23,22.8126,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.8595,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,36,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.9044,0,0.0,0.0,0.0,0.0,0,0,32128,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.0933,0.0,43.4641,0.0,Sport Utility Vehicle - 2WD,2012,1500,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,16,16.1676,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5522,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,93,,-1,3150,0,Premium,Premium Gasoline,-1,-1,23,22.6319,0,0.0,0.0,0.0,0.0,0,0,32129,0,0,Infiniti,FX35 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.1474,0.0,31.4557,0.0,Sport Utility Vehicle - 2WD,2012,-3750,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3213,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Compact Cars,1987,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,17.945,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.1185,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,22,SIDI,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,23.6143,0,0.0,0.0,0.0,0.0,0,0,32130,0,0,Mazda,CX-7 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,34.7,0.0,Sport Utility Vehicle - 2WD,2012,-3000,,,T,,,,,,TKX +13.1844,0.0,0.0,0.0,23,22.8745,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0315,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.2923,0,0.0,0.0,0.0,0.0,0,0,32131,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.1785,0.0,39.6417,0.0,Sport Utility Vehicle - 2WD,2012,1000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,18.4044,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.3974,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,23.5088,0,0.0,0.0,0.0,0.0,0,0,32132,0,0,Nissan,Murano FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.1127,0.0,32.7152,0.0,Sport Utility Vehicle - 2WD,2012,-1750,,,,,,,,,NSX +21.974,6.806822,0.0,0.0,12,12.4354,9,9.1843,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.6142,11,10.7159,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,291,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,19,18.5967,13,13.4591,0.0,0.0,0.0,0,0,32133,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,11.3,25.7,18.6,Sport Utility Vehicle - 2WD,2012,-6250,,,,,FFV,E85,310,,NSX +17.337486000000002,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.3165,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,43,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,22.5931,0,0.0,0.0,0.0,0.0,0,0,32134,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.6,0.0,31.4,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,18.8749,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3597,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,370,,-1,2850,0,Premium,Premium Gasoline,-1,-1,25,25.4553,0,0.0,0.0,0.0,0.0,0,0,32135,0,0,BMW,X3 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.7423,0.0,35.5224,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.7674,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.3853,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,372,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.7807,0,0.0,0.0,0.0,0.0,0,0,32136,0,0,BMW,X3 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5983,0.0,35.9931,0.0,Sport Utility Vehicle - 4WD,2012,-2250,,,T,,,,,,BMX +17.351199,0.0,0.0,0.0,19,18.8377,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,21.5391,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,572,SIDI,-1,2700,0,Diesel,Diesel,-1,-1,26,26.1166,0,0.0,0.0,0.0,0.0,0,0,32137,0,0,BMW,X5 xDrive35d,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6924,0.0,36.4795,0.0,Sport Utility Vehicle - 4WD,2012,-1500,,,T,,Diesel,,,,BMX +13.1844,0.0,0.0,0.0,22,22.1855,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,25.0213,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,37,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,29.654,0,0.0,0.0,0.0,0.0,0,0,32138,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.2312,0.0,41.6308,0.0,Sport Utility Vehicle - 4WD,2012,1000,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,15.7294,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8696,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,94,,-1,3350,0,Premium,Premium Gasoline,-1,-1,21,21.4341,0,0.0,0.0,0.0,0.0,0,0,32139,0,0,Infiniti,FX35 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),19.5719,0.0,29.7403,0.0,Sport Utility Vehicle - 4WD,2012,-4750,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3214,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1987,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,14.3324,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.3292,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,391,,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,19.6803,0,0.0,0.0,0.0,0.0,0,0,32140,0,0,Infiniti,FX50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.7484,0.0,27.2391,0.0,Sport Utility Vehicle - 4WD,2012,-6750,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4466,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,1,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,21.8254,0,0.0,0.0,0.0,0.0,0,0,32141,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6318,0.0,30.347,0.0,Sport Utility Vehicle - 4WD,2012,-4250,,,,,,,,,LRX +14.964294,0.0,0.0,0.0,18,18.2438,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5964,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,7,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,32142,0,0,Land Rover,Range Rover Evoque,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8983,0.0,39.0,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,T,,,,,,LRX +17.337486000000002,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.7628,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel Drive,23,SIDI,-1,3150,0,Premium,Premium Gasoline,-1,-1,21,21.1212,0,0.0,0.0,0.0,0.0,0,0,32144,0,0,Mazda,CX-7 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,0.0,31.7,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,T,,,,,,TKX +19.109250000000003,0.0,0.0,0.0,18,17.8684,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,19.8405,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,413,,-1,2950,0,Diesel,Diesel,-1,-1,23,22.9343,0,0.0,0.0,0.0,0.0,0,0,32145,0,0,Mercedes-Benz,R350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.398,0.0,34.1409,0.0,Sport Utility Vehicle - 4WD,2012,-2750,,,T,,Diesel,,,,MBX +20.102931,0.0,0.0,0.0,17,16.8896,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,18.6578,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,422,,-1,3100,0,Diesel,Diesel,-1,-1,21,21.3956,0,0.0,0.0,0.0,0.0,0,0,32146,0,0,Mercedes-Benz,GL350 Bluetec 4matic,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.0995,0.0,31.213,0.0,Sport Utility Vehicle - 4WD,2012,-3500,,,T,,Diesel,,,,MBX +13.73375,0.0,0.0,0.0,22,21.6878,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.5757,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,82,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,26.3827,0,0.0,0.0,0.0,0.0,0,0,32147,0,0,Nissan,Rogue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.5497,0.0,36.8652,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.9293,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.0593,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,92,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,23.4668,0,0.0,0.0,0.0,0.0,0,0,32148,0,0,Nissan,Murano AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.479,0.0,32.6548,0.0,Sport Utility Vehicle - 4WD,2012,-1750,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.8143,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.8209,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,95,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,22.0349,0,0.0,0.0,0.0,0.0,0,0,32149,0,0,Nissan,Murano CrossCabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.0,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2012,-3750,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2022,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3215,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,15.5218,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.1387,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,186,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,19.6392,0,0.0,0.0,0.0,0.0,0,0,32150,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2998,0.0,27.1806,0.0,Sport Utility Vehicle - 4WD,2012,-4250,,,,,,,,,NSX +23.534154,6.806822,0.0,0.0,12,12.3182,9,9.2693,0.0,0.0,0.0,-1,-1,572.2727272727273,634.7857142857143,14,14.2123,11,10.6574,0.0,0.0,0.0,8,5.6,4-Wheel Drive,292,FFV,-1,3950,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.5015,13,13.0451,0.0,0.0,0.0,0,0,32151,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1498,11.4,24.1491,18.0,Sport Utility Vehicle - 4WD,2012,-7750,,,,,FFV,E85,310,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5265,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,44,Full Time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,32152,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,18.5265,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,45,Part Time 4WD,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,32153,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.7,0.0,30.0,0.0,Sport Utility Vehicle - 4WD,2012,-2500,,,,,,,,,TYX +0.20400000000000001,0.0,0.0,7.0,106,0.0,0,0.0,0.0,32.0,0.0,0,-1,0.0,0.0,99,0.0,0,0.0,34.0,0.0,0.0,,,Front-Wheel Drive,901,,-1,600,0,Electricity,Electricity,-1,-1,92,0.0,0,0.0,0.0,37.0,0.0,23,90,32154,0,0,Nissan,Leaf,Y,false,0,0,73,77.165,0.0,67.316,0.0,Automatic (A1),151.5,0.0,131.3,0.0,Midsize Cars,2012,9000,,,,,EV,,,80 kW DCPM,NSX +12.19557,0.0,0.0,0.0,25,24.6476,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.1728,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,222,,-1,2050,0,Regular,Regular Gasoline,-1,-1,31,31.0622,0,0.0,0.0,0.0,0.0,0,0,32155,0,0,Mitsubishi,Outlander Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.6378,0.0,43.6961,0.0,Sport Utility Vehicle - 2WD,2012,1750,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,24,23.6257,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3596,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,221,,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,30.7018,0,0.0,0.0,0.0,0.0,0,0,32156,0,0,Mitsubishi,Outlander Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2167,0.0,43.1666,0.0,Sport Utility Vehicle - 2WD,2012,1500,,,,,,,,,MTX +13.1844,0.0,0.0,0.0,23,22.5718,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,24.737,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,224,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,28.0225,0,0.0,0.0,0.0,0.0,0,0,32157,0,0,Mitsubishi,Outlander Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.7617,0.0,39.2485,0.0,Sport Utility Vehicle - 4WD,2012,1000,,,,,,,,,MTX +0.14297200000000002,0.0,0.0,0.0,11,11.3,0,0.0,0.0,0.0,0.0,-1,-1,0.0,540.7692307692307,13,13.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,2,CNG,-1,2400,0,CNG,Natural Gas,-1,-1,16,15.9,0,0.0,0.0,0.0,0.0,0,0,32158,0,0,VPG,MV-1 CNG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.8,0.0,21.9,0.0,Special Purpose Vehicle 2WD,2012,0,,,,,CNG,,,,TVP +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,14.5555,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,1,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,17.6091,0,0.0,0.0,0.0,0.0,0,0,32159,0,0,VPG,MV-1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.7,0.0,24.3,0.0,Special Purpose Vehicle 2WD,2012,-6250,,,,,,,,,TVP +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3216,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0256,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +13.1844,4.160002,0.0,0.0,21,20.7706,15,14.7684,0.0,0.0,0.0,-1,-1,349.72222222222223,355.48,25,24.5602,18,17.5507,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,141,SIDI; FFV,-1,2200,2550,Gasoline or E85,Regular Gasoline,-1,-1,32,31.6089,23,22.801,0.0,0.0,0.0,0,0,32160,0,14,Buick,Verano,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.3,18.7,44.5,32.1,Compact Cars,2012,1000,,,,,FFV,E85,290,,GMX +20.589638,0.0,0.0,0.0,14,14.0459,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.8415,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,137,,-1,3750,0,Premium,Premium Gasoline,-1,-1,19,18.7751,0,0.0,0.0,0.0,0.0,0,0,32161,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3766,0.0,25.953,0.0,Compact Cars,2012,-6750,G,,,S,,,,,GMX +15.689436,4.994,0.0,0.0,17,17.4576,13,12.5019,0.0,0.0,0.0,-1,-1,419.6666666666667,423.1904761904762,21,20.7166,15,14.7327,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,9,SIDI; FFV; Sport Transmission,-1,2600,3050,Gasoline or E85,Regular Gasoline,-1,-1,27,26.8409,19,18.8421,0.0,0.0,0.0,0,0,32162,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8519,15.6488,37.5301,26.3459,Midsize Cars,2012,-1000,,,,,FFV,E85,280,,GMX +14.327048,0.0,0.0,0.0,19,19.3648,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.5021,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,75,,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.0579,0,0.0,0.0,0.0,0.0,0,0,32163,0,14,Toyota,Avalon,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),24.4,0.0,39.3,0.0,Large Cars,2012,0,,,,,,,,,TYX +12.19557,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,27.2747,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,122,,-1,2250,0,Premium,Premium Gasoline,-1,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,32164,0,10,Nissan,Juke,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,43.4,0.0,Small Station Wagons,2012,750,,,T,,,,,,NSX +21.974,6.806822,0.0,0.0,13,12.8171,9,9.4074,0.0,0.0,0.0,-1,-1,572.2727272727273,592.4666666666667,15,14.6937,11,10.8195,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,FFV,-1,3650,4150,Gasoline or E85,Regular Gasoline,-1,-1,18,17.8962,13,13.2503,0.0,0.0,0.0,0,0,32165,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7901,11.5896,24.7074,18.2933,Standard Pickup Trucks 2WD,2012,-6250,,,,,FFV,E85,310,,NSX +23.534154,7.4910000000000005,0.0,0.0,12,12.2068,9,8.717,0.0,0.0,0.0,-1,-1,629.5,634.7857142857143,14,13.9765,10,9.9707,0.0,0.0,0.0,8,5.6,4-Wheel Drive,294,FFV,-1,3950,4550,Gasoline or E85,Regular Gasoline,-1,-1,17,16.9863,12,12.0972,0.0,0.0,0.0,0,0,32166,0,0,Nissan,Titan 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0071,10.7168,23.4212,16.6799,Standard Pickup Trucks 4WD,2012,-7750,,,,,FFV,E85,280,,NSX +15.689436,0.0,0.0,0.0,19,18.6058,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8508,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,96,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,24.4577,0,0.0,0.0,0.0,0.0,0,0,32167,0,0,Nissan,Quest,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.382,0.0,34.0817,0.0,Minivan - 2WD,2012,-1000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.811,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,19.4047,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,51,SIDI,-1,2900,0,Regular,Regular Gasoline,-1,-1,24,23.9144,0,0.0,0.0,0.0,0.0,0,0,32168,0,0,Chevrolet,Captiva FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9957,0.0,33.2988,0.0,Sport Utility Vehicle - 2WD,2012,-2500,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,20,19.7361,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.392,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,24,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.7958,0,0.0,0.0,0.0,0.0,0,0,32169,0,0,Mazda,CX-7 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),24.9,0.0,38.4,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3217,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1987,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,16.1981,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.4548,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,130,SIDI,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.2423,0,0.0,0.0,0.0,0.0,0,0,32170,0,0,Chevrolet,Captiva AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1876,0.0,30.8971,0.0,Sport Utility Vehicle - 4WD,2012,-3250,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.0421,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,11,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,32171,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2012,-6750,G,,,,,,,,ASX +9.141184,0.0,0.0,0.0,34,34.454,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.0345,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,702,,-1,1700,0,Premium,Premium Gasoline,-1,-1,38,38.1747,0,0.0,0.0,0.0,0.0,0,0,32172,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1156,0.0,58.5452,0.0,Two Seaters,2012,3500,,,,,,,,,MBX +9.141184,0.0,0.0,0.0,34,34.454,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.0345,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,703,,-1,1700,0,Premium,Premium Gasoline,-1,-1,38,38.1747,0,0.0,0.0,0.0,0.0,0,0,32173,0,0,smart,fortwo cabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1156,0.0,58.5452,0.0,Two Seaters,2012,3500,,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.3692,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,17.8115,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,22.1047,0,0.0,0.0,0.0,0.0,0,0,32174,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,0.0,30.7,0.0,Subcompact Cars,2012,-4750,,,,S,,,,,RII +12.657024,0.0,0.0,0.0,23,22.95,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.4559,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,300,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,33,32.5296,0,0.0,0.0,0.0,0.0,0,0,32175,0,13,BMW,328i,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),30.097,0.0,50.15,0.0,Compact Cars,2012,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,22.5428,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.6851,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,301,SIDI,-1,2250,0,Premium,Premium Gasoline,-1,-1,34,34.4142,0,0.0,0.0,0.0,0.0,0,0,32176,0,13,BMW,328i,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.4646,0.0,48.2653,0.0,Compact Cars,2012,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,22.5675,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.2332,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,335,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,33,32.7312,0,0.0,0.0,0.0,0.0,0,0,32177,0,13,BMW,335i,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),28.7559,0.0,46.1545,0.0,Compact Cars,2012,500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.6703,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2277,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,336,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,30,29.819,0,0.0,0.0,0.0,0.0,0,0,32178,0,13,BMW,335i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8113,0.0,41.8723,0.0,Compact Cars,2012,-1000,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,12,11.8961,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,14.1116,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,47,,-1,3950,0,Regular,Regular Gasoline,-1,-1,18,18.2702,0,0.0,0.0,0.0,0.0,0,0,32179,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6098,0.0,25.2371,0.0,Compact Cars,2012,-7750,G,,,S,,,,,GMX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3218,13,14,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Compact Cars,1987,-3000,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,25.9755,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,29.1873,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,68,,-1,1900,0,Regular,Regular Gasoline,-1,-1,34,34.3834,0,0.0,0.0,0.0,0.0,0,0,32181,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.5,0.0,48.6,0.0,Compact Cars,2012,2500,,,,,,,,,TYX +10.987,0.0,0.0,0.0,27,27.0298,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,29.8503,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,69,,-1,1850,0,Regular,Regular Gasoline,-1,-1,34,34.214,0,0.0,0.0,0.0,0.0,0,0,32182,0,12,Toyota,Corolla,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.991,0.0,48.3487,0.0,Compact Cars,2012,2750,,,,,,,,,TYX +6.5922,0.0,0.0,0.0,53,52.5351,0,0.0,0.0,0.0,0.0,-1,-1,0.0,177.74,50,49.5183,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,84,,-1,1100,0,Regular,Regular Gasoline,-1,-1,46,46.2707,0,0.0,0.0,0.0,0.0,17,87,32183,0,0,Toyota,Prius c,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.7716,0.0,69.5133,0.0,Compact Cars,2012,6500,,,,,Hybrid,,,144V Ni-MH,TYX +14.964294,0.0,0.0,0.0,19,19.278,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.0917,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,89,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.8882,0,0.0,0.0,0.0,0.0,15,93,32184,0,0,Volkswagen,Golf R,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,37.1,0.0,Compact Cars,2012,-1750,,,T,,,,,,ADX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7345,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2,SIDI,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,32185,0,13,Buick,Regal,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,37.4,0.0,Midsize Cars,2012,-500,,,T,,,,,,GMX +9.141184,0.0,0.0,0.0,34,34.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,34,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,39.0,0,0.0,0.0,0.0,0.0,0,0,32186,0,11,Hyundai,Sonata Hybrid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,47.2,0.0,59.9,0.0,Midsize Cars,2012,4250,,,,,Hybrid,,,270V Li-Ion,HYX +9.141184,0.0,0.0,0.0,34,34.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,37,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,39.0,0,0.0,0.0,0.0,0.0,0,0,32187,0,10,Kia,Optima Hybrid,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,46.8,0.0,56.3,0.0,Midsize Cars,2012,4250,,,,,Hybrid,,,270V Li-Ion,KMX +14.327048,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.415,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,35,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,32188,0,16,Hyundai,Azera,Y,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.5,0.0,40.8494,0.0,Large Cars,2012,0,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,27,26.612,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,28.4174,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,-1,1950,0,Regular,Regular Gasoline,-1,-1,31,30.9867,0,0.0,0.0,0.0,0.0,0,0,32189,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.3988,0.0,43.585,0.0,Small Station Wagons,2012,2250,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,3219,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,25,25.0498,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,26.9237,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,-1,2050,0,Regular,Regular Gasoline,-1,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,32190,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,41.6,0.0,Small Station Wagons,2012,1750,,,,,,,,,NSX +11.75609,0.0,0.0,0.0,25,24.9046,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,27.5063,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,70,,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,31.5324,0,0.0,0.0,0.0,0.0,0,0,32191,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.9969,0.0,44.3875,0.0,Small Station Wagons,2012,2250,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,26,26.4684,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,28.8753,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,71,,-1,1900,0,Regular,Regular Gasoline,-1,-1,32,32.4859,0,0.0,0.0,0.0,0.0,0,0,32192,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.1957,0.0,45.7924,0.0,Small Station Wagons,2012,2500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3945,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,72,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,25.8626,0,0.0,0.0,0.0,0.0,0,0,32193,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,36.1117,0.0,Small Station Wagons,2012,-500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.4756,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.9921,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,73,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,28.0025,0,0.0,0.0,0.0,0.0,0,0,32194,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2599,0.0,39.2193,0.0,Small Station Wagons,2012,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.4752,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.251,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,74,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,28.801,0,0.0,0.0,0.0,0.0,0,0,32195,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.2593,0.0,40.3839,0.0,Small Station Wagons,2012,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1206,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,76,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,28.3323,0,0.0,0.0,0.0,0.0,0,0,32196,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.3,0.0,39.7,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,19.3636,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.1008,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,78,,-1,2500,0,Regular,Regular Gasoline,-1,-1,27,26.7168,0,0.0,0.0,0.0,0.0,0,0,32197,0,0,Toyota,RAV4 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,24.3984,0.0,37.3499,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,TYX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.1603,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,80,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,26.8,0,0.0,0.0,0.0,0.0,0,0,32198,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4,0.0,40.6,0.0,Sport Utility Vehicle - 2WD,2012,0,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5051,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,82,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,32199,0,0,Toyota,Venza,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.3,0.0,Sport Utility Vehicle - 2WD,2012,-500,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3242,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,85,322,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,40.0,0.0,Compact Cars,1985,1000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,16,85,3220,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,54.0,0.0,Compact Cars,1987,3000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,21.1317,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.5803,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,77,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,27.4709,0,0.0,0.0,0.0,0.0,0,0,32200,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.791,0.0,38.4455,0.0,Sport Utility Vehicle - 4WD,2012,500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,18.9897,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.6843,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,79,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,26.2341,0,0.0,0.0,0.0,0.0,0,0,32201,0,0,Toyota,RAV4 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,23.8962,0.0,36.6499,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2512,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,81,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,25.3,0,0.0,0.0,0.0,0.0,0,0,32202,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,38.7,0.0,Sport Utility Vehicle - 4WD,2012,-500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.8746,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,83,,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,25.1631,0,0.0,0.0,0.0,0.0,0,0,32203,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,35.1,0.0,Sport Utility Vehicle - 4WD,2012,-1000,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.4596,0,0.0,0.0,0.0,0.0,471,-1,0.0,471.0,19,18.7389,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,71,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.5568,0,0.0,0.0,0.0,0.0,0,0,32204,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),20.2988,0.0,30.1798,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,NSX +13.1844,0.0,0.0,0.0,22,21.8706,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.2227,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.0367,0,0.0,0.0,0.0,0.0,0,0,32205,13,0,Volkswagen,CC,Y,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (AM-S6),26.977,0.0,42.4936,0.0,Compact Cars,2013,0,,,T,,,,,,VWX +15.689436,0.0,0.0,0.0,17,17.4935,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6716,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,2,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.5716,0,0.0,0.0,0.0,0.0,0,0,32206,13,0,Volkswagen,CC,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.2,0.0,35.1,0.0,Compact Cars,2013,-2250,,,,,,,,,VWX +16.4805,0.0,0.0,0.0,17,16.9415,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.8774,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,3,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.219,0,0.0,0.0,0.0,0.0,0,0,32207,13,0,Volkswagen,CC 4motion,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2013,-3000,,,,,,,,,VWX +11.360558000000001,0.0,0.0,0.0,25,24.8922,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.0746,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,103,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,37,36.5882,0,0.0,0.0,0.0,0.0,0,0,32208,0,16,Chevrolet,Malibu eAssist,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),31.9796,0.0,51.8816,0.0,Midsize Cars,2013,2500,,,,,Hybrid,,,115V Li-Ion,GMX +14.327048,0.0,0.0,0.0,19,19.4325,0,0.0,0.0,0.0,0.0,393,-1,0.0,393.0,23,22.6002,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,1,,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2234,0,0.0,0.0,0.0,0.0,0,0,32209,0,14,Lexus,GS 350,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),24.1499,0.0,38.5,0.0,Midsize Cars,2013,-1000,,,,,,,,,TYX +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,3221,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Compact Cars,1987,2250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,18.5752,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,21,21.4213,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,2,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3573,0,0.0,0.0,0.0,0.0,0,0,32210,0,14,Lexus,GS 350 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5261,0.0,36.2109,0.0,Midsize Cars,2013,-2250,,,,,,,,,TYX +11.75609,0.0,0.0,0.0,25,25.4464,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.6413,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,3,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,31,30.8988,0,0.0,0.0,0.0,0.0,0,0,32211,0,0,Mazda,CX-5 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.7559,0.0,43.456,0.0,Small Sport Utility Vehicle 4WD,2013,2250,,,,,,,,,TKX +17.337486000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,472,-1,0.0,472.0,19,18.5109,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,40,,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,32212,0,0,Volvo,XC90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,32.2,0.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,VVX +18.304342000000002,0.0,0.0,0.0,16,15.8863,0,0.0,0.0,0.0,0.0,477,-1,0.0,477.0,18,18.3154,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,41,,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.525,0,0.0,0.0,0.0,0.0,0,0,32213,0,0,Volvo,XC90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7777,0.0,31.3024,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,17,17.4144,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.7094,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,1,,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.9394,0,0.0,0.0,0.0,0.0,0,0,32214,10,0,Hyundai,Genesis Coupe,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.7946,0.0,37.6731,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,HYX +13.73375,0.0,0.0,0.0,21,20.697,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.9866,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,2,,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,32215,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.2,0.0,41.8,0.0,Subcompact Cars,2013,-500,,,T,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,16,16.4232,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.352,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.7457,0,0.0,0.0,0.0,0.0,0,0,32216,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.4839,0.0,34.4972,0.0,Subcompact Cars,2013,-3750,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.3323,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,32217,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,37.9,0.0,Subcompact Cars,2013,-2250,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,21,20.8232,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.6324,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,31.7255,0,0.0,0.0,0.0,0.0,0,0,32218,13,0,Volkswagen,CC,Y,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7303,0.0,43.9687,0.0,Compact Cars,2013,0,,,T,,,,,,VWX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.9854,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,164,,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.2687,0,0.0,0.0,0.0,0.0,0,0,32219,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,36.7,0.0,Large Cars,2013,-1000,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,3222,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.0,0.0,Compact Cars,1987,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.0911,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,163,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32220,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Large Cars,2013,-1750,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.9668,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1089,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,211,,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.8473,0,0.0,0.0,0.0,0.0,0,0,32221,0,18,Lincoln,MKS FWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),22.529,0.0,37.5393,0.0,Large Cars,2013,-1000,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,20,19.8236,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,23,22.7455,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,188,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,28,27.7434,0,0.0,0.0,0.0,0.0,0,0,32222,0,0,Ford,Explorer FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.0181,0.0,38.842,0.0,Standard Sport Utility Vehicle 2WD,2013,0,,,T,,,,,,FMX +11.360558000000001,0.0,0.0,0.0,26,26.4348,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.7826,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,32,32.2875,0,0.0,0.0,0.0,0.0,0,0,32224,0,0,Mazda,CX-5 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.1482,0.0,45.4998,0.0,Small Sport Utility Vehicle 2WD,2013,2500,,,,,,,,,TKX +11.360558000000001,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,302,-1,0.0,302.0,29,29.3513,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,35,34.5855,0,0.0,0.0,0.0,0.0,0,0,32225,0,0,Mazda,CX-5 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,48.9,0.0,Small Sport Utility Vehicle 2WD,2013,2500,,,,,,,,,TKX +23.534154,0.0,0.0,0.0,12,12.3574,0,0.0,0.0,0.0,0.0,623,-1,0.0,623.0,14,14.1667,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,4,,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.2545,0,0.0,0.0,0.0,0.0,0,0,32226,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,23.8,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,596,-1,0.0,596.0,15,14.8208,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,3,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.7496,0,0.0,0.0,0.0,0.0,0,0,32227,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1,0.0,24.5,0.0,Standard Sport Utility Vehicle 4WD,2013,-6250,,,,,,,,,TYX +16.4805,5.348574,0.0,0.0,17,17.1167,12,12.2793,0.0,0.0,0.0,-1,-1,449.64285714285717,444.35,20,19.974,14,14.3176,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,543,FFV; Cargo Van,-1,2750,3250,Gasoline or E85,Regular Gasoline,-1,-1,25,25.0939,18,17.9616,0.0,0.0,0.0,0,0,32228,0,0,Ram,C/V Cargo Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2012,-1750,,,,,FFV,E85,280,,CRX +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(NO-CAT),-1,1700,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,16,85,3223,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,57.6923,0.0,Compact Cars,1987,3500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,17.7357,0,0.0,0.0,0.0,0.0,463,-1,0.0,463.0,21,20.8874,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,6,,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.6826,0,0.0,0.0,0.0,0.0,0,0,32231,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7,0.0,34.6,0.0,Midsize Cars,2013,-1000,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9002,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,46,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,32232,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,36.0,0.0,Large Cars,2013,-1000,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.0911,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,162,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32233,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Large Cars,2013,-1750,,,T,,,,,,FMX +15.689436,4.679378,0.0,0.0,18,18.0952,13,12.5152,0.0,0.0,0.0,425,428,428.0,425.0,21,20.9001,16,14.702,0.0,0.0,0.0,6,3.5,All-Wheel Drive,187,FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,5,26,25.7855,19,18.6945,0.0,0.0,0.0,0,0,32234,0,20,Ford,Taurus AWD FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,15.7,36.0,26.1,Large Cars,2013,-1000,,,,,FFV,E85,270,,FMX +14.327048,0.0,0.0,0.0,19,19.312,0,0.0,0.0,0.0,0.0,393,-1,0.0,393.0,23,22.6058,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,48,,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.5593,0,0.0,0.0,0.0,0.0,0,0,32235,0,20,Ford,Taurus FWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.329,0.0,40.0311,0.0,Large Cars,2013,0,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.1693,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,156,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,32236,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.5,0.0,41.9,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,T,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,21.9193,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,64,,5,2500,0,Regular,Regular Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32237,0,0,Ford,Edge FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.6,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5021,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,166,,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,32238,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5,0.0,36.8,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5021,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,167,,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,32239,0,0,Lincoln,MKX FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5,0.0,36.8,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,88,3224,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Compact Cars,1987,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5222,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,67,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.4399,0,0.0,0.0,0.0,0.0,0,0,32240,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,35.5,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,17.2292,0,0.0,0.0,0.0,0.0,459,-1,0.0,459.0,19,19.3812,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,168,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.8729,0,0.0,0.0,0.0,0.0,0,0,32241,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5491,0.0,31.8016,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.5112,12,12.4354,0.0,0.0,0.0,470,450,450.0,470.0,19,18.8517,14,14.091,0.0,0.0,0.0,6,3.5,All-Wheel Drive,114,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.8022,17,16.8296,0.0,0.0,0.0,0,0,32242,0,0,Ford,Explorer AWD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,15.3,31.7,23.2,Standard Sport Utility Vehicle 4WD,2013,-2500,,,,,FFV,E85,260,,FMX +17.337486000000002,0.0,0.0,0.0,17,17.2292,0,0.0,0.0,0.0,0.0,459,-1,0.0,459.0,19,19.3812,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,169,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.8729,0,0.0,0.0,0.0,0.0,0,0,32243,0,0,Lincoln,MKX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5491,0.0,31.8016,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,19,19.201,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.1759,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,6,,6,2400,0,Regular,Regular Gasoline,6,-1,31,31.0262,0,0.0,0.0,0.0,0.0,0,0,32244,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.1798,0.0,43.6431,0.0,Subcompact Cars,2013,0,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.1404,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,3,,5,2500,0,Regular,Regular Gasoline,5,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,32245,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,40.7,0.0,Subcompact Cars,2013,-500,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,18,17.5562,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.3193,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,8,,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.1589,0,0.0,0.0,0.0,0.0,0,0,32246,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9829,0.0,35.0939,0.0,Subcompact Cars,2013,-1750,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,15,15.4452,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7791,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,5,,4,2900,0,Regular,Regular Gasoline,4,-1,26,25.509,0,0.0,0.0,0.0,0.0,0,0,32247,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1995,0.0,35.6,0.0,Subcompact Cars,2013,-2500,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,19,19.2217,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.8106,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,7,,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.555,0,0.0,0.0,0.0,0.0,0,0,32248,9,0,Ford,Mustang Convertible,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.2077,0.0,41.4859,0.0,Subcompact Cars,2013,0,,,,,,,,,FMX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,8,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,36,36.0,0,0.0,0.0,0.0,0.0,15,89,32249,0,14,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 6-spd,38.7,0.0,56.5,0.0,Compact Cars,2013,3000,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,3225,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.8889,0.0,38.0,0.0,Compact Cars,1987,500,,,,,,,,, +10.283832,0.0,0.0,0.0,29,29.0,0,0.0,0.0,0.0,0.0,279,-1,0.0,279.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,9,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,15,89,32250,0,14,Kia,Rio,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,39.5,0.0,56.8,0.0,Compact Cars,2013,3500,,,,,,,,,KMX +10.283832,0.0,0.0,0.0,30,30.0,0,0.0,0.0,0.0,0.0,278,-1,0.0,278.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,10,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,36,36.0,0,0.0,0.0,0.0,0.0,15,89,32251,0,14,Kia,Rio Eco,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 6-spd,40.7278,0.0,56.955,0.0,Compact Cars,2013,3500,,,,,,,,,KMX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,277,-1,0.0,277.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,6,,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,32252,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,37.8169,0.0,56.5,0.0,Midsize Cars,2013,3500,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,277,-1,0.0,277.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,7,,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,32253,0,15,Hyundai,Elantra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,56.5,0.0,Midsize Cars,2013,3500,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,278,-1,0.0,278.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,32254,0,15,Hyundai,Elantra Blue,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,38.6483,0.0,57.0799,0.0,Midsize Cars,2013,3500,,,,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,8,,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,0,0,32255,15,0,Hyundai,Elantra Coupe,Y,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.9599,0.0,55.6829,0.0,Midsize Cars,2013,3000,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,279,-1,0.0,279.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,9,,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,32256,15,0,Hyundai,Elantra Coupe,N,false,95,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.0,0.0,56.6,0.0,Midsize Cars,2013,3500,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,21,21.3862,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.6366,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,5,,6,2200,0,Regular,Regular Gasoline,6,-1,30,30.2572,0,0.0,0.0,0.0,0.0,0,0,32257,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S5),27.1379,0.0,42.5144,0.0,Midsize Cars,2013,1000,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,364,-1,0.0,364.0,24,24.4858,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4,,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.1792,0,0.0,0.0,0.0,0.0,0,0,32258,0,17,Mazda,6,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,42.4,0.0,Midsize Cars,2013,500,,,,,,,,,TKX +14.327048,4.679378,0.0,0.0,19,19.312,13,13.4753,0.0,0.0,0.0,393,394,394.0,393.0,23,22.6058,16,15.9866,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,186,FFV,6,2400,2850,Gasoline or E85,Regular Gasoline,6,5,29,28.5593,21,20.702,0.0,0.0,0.0,0,0,32259,0,20,Ford,Taurus FWD FFV,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.329,16.976,40.0311,29.0176,Large Cars,2013,0,,,,,FFV,E85,270,,FMX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3231,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3226,13,13,Ford,Tempo,Y,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,35.0,0.0,Compact Cars,1987,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,19,18.5526,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,94,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.4982,0,0.0,0.0,0.0,0.0,0,0,32260,0,25,Porsche,Panamera GTS,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7,0.0,32.7,0.0,Large Cars,2013,-3750,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2485,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,40,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,32261,0,0,Lincoln,MKT Livery AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,32.8,0.0,Special Purpose Vehicle 4WD,2013,-2500,,,,,,,,,FMX +16.4805,4.994,0.0,0.0,17,17.1167,13,12.6376,0.0,0.0,0.0,450,429,429.0,450.0,20,19.7111,15,14.6209,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,115,FFV,5,2750,3050,Gasoline or E85,Regular Gasoline,5,5,24,24.1929,18,18.0908,0.0,0.0,0.0,0,0,32262,0,0,Ford,Explorer 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,15.8,33.7,25.2,Standard Sport Utility Vehicle 2WD,2013,-1750,,,,,FFV,E85,260,,FMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7111,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,113,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.1929,0,0.0,0.0,0.0,0.0,0,0,32263,0,0,Ford,Explorer FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,33.7,0.0,Standard Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,18,17.7136,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.3486,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,214,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.8703,0,0.0,0.0,0.0,0.0,0,0,32264,0,0,Ford,Flex FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.192,0.0,34.677,0.0,Standard Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.9246,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,160,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.5397,0,0.0,0.0,0.0,0.0,0,0,32265,0,0,Lincoln,MKT FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6,0.0,34.2,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.8517,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,157,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.8022,0,0.0,0.0,0.0,0.0,0,0,32266,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.7,0.0,Standard Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4381,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,159,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.5234,0,0.0,0.0,0.0,0.0,0,0,32267,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,31.3,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4381,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,161,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.5234,0,0.0,0.0,0.0,0.0,0,0,32268,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0,0.0,31.3,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,T,,,,,,FMX +13.73375,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,24.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,7,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,32269,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.4,0.0,44.7,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,KMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3233,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3227,13,13,Ford,Tempo,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,24.0473,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.7436,0,0.0,0.0,0.0,0.0,0,0,32270,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.9,0.0,40.3,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.2499,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,,5,2500,0,Regular,Regular Gasoline,5,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,32271,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.3,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.2216,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,5,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.6473,0,0.0,0.0,0.0,0.0,0,0,32272,0,0,Kia,Sorento 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.3,0.0,35.8,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,6,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,32273,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0,0.0,38.9,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,,,,,,,KMX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,23.144,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,1,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,32274,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.4,0.0,37.4,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,436,-1,0.0,436.0,20,20.4848,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,4,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.2623,0,0.0,0.0,0.0,0.0,0,0,32275,0,0,Kia,Sorento 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,33.8,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,KMX +0.198,0.0,0.0,5.0,107,106.733,0,0.0,0.0,32.0,0.0,0,-1,0.0,0.0,102,101.822,0,0.0,33.0,0.0,0.0,,,Rear-Wheel Drive,100,,-1,600,0,Electricity,Electricity,-1,-1,96,96.4011,0,0.0,0.0,35.0,0.0,0,0,32276,6,0,BMW,Active E,N,false,86,0,94,0.0,0.0,0.0,0.0,Automatic (A1),152.4758,0.0,137.7159,0.0,Subcompact Cars,2011,9000,,,,,EV,,,125 kW AC Induction,BMX +0.276,0.0,0.0,6.0,77,77.2,0,0.0,0.0,44.0,0.0,0,-1,0.0,0.0,73,72.7,0,0.0,46.0,0.0,0.0,,,Front-Wheel Drive,1,,-1,850,0,Electricity,Electricity,-1,-1,68,67.9,0,0.0,0.0,50.0,0.0,0,0,32277,0,14,CODA Automotive,CODA,N,false,0,72,88,93.555,0.0,93.555,0.0,Automatic (A1),110.3,0.0,97.0,0.0,Subcompact Cars,2012,7750,,,,,EV,,,100 kW DCPM,CDA +0.192,0.0,0.0,4.0,110,110.048,0,0.0,0.0,31.0,0.0,0,-1,0.0,0.0,105,104.758,0,0.0,32.0,0.0,0.0,,,Front-Wheel Drive,300,,-1,600,0,Electricity,Electricity,-1,-1,99,98.9461,0,0.0,0.0,34.0,0.0,23,90,32278,0,13,Ford,Focus BEV FWD,N,false,0,90,76,79.7573,0.0,71.5259,0.0,Automatic (variable gear ratios),157.2,0.0,141.4,0.0,Compact Cars,2012,9000,,,,,EV,,,107 kW AC Induction,FMX +12.657024,0.0,0.0,0.0,23,22.708,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.3044,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,232,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,33,32.6184,0,0.0,0.0,0.0,0.0,0,0,32279,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,28.9492,0.0,45.988,0.0,Two Seaters,2012,500,,,T,,,,,,MBX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3232,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3228,13,13,Ford,Tempo,Y,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Compact Cars,1987,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.4581,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,26.0336,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,233,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,32,32.323,0,0.0,0.0,0.0,0.0,0,0,32280,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.6055,0.0,45.5522,0.0,Two Seaters,2012,500,,,T,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.0265,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.1678,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,238,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.772,0,0.0,0.0,0.0,0.0,0,0,32281,0,0,Mercedes-Benz,SLK55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.9249,0.0,38.0547,0.0,Two Seaters,2012,-1750,,,,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,28,28.3681,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.7679,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,603,,-1,1950,0,Premium,Premium Gasoline,-1,-1,34,34.316,0,0.0,0.0,0.0,0.0,7,76,32282,0,0,Fiat,500 Abarth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.9,0.0,48.5,0.0,Minicompact Cars,2012,2250,,,T,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.9744,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0126,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,3,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.4839,0,0.0,0.0,0.0,0.0,0,0,32283,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.7,0.0,Minicompact Cars,2012,-2250,,,,,,,,,LTX +16.4805,0.0,0.0,0.0,17,17.3694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2797,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,4,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,25.5023,0,0.0,0.0,0.0,0.0,0,0,32284,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8,0.0,33.8,0.0,Minicompact Cars,2012,-3000,,,,S,,,,,LTX +14.327048,0.0,0.0,0.0,20,19.5874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.6393,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,5,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,27.9648,0,0.0,0.0,0.0,0.0,0,0,32285,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,38.4,0.0,Minicompact Cars,2012,-1000,,,,,,,,,LTX +14.964294,0.0,0.0,0.0,19,18.5699,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9015,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,6,,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,28.0527,0,0.0,0.0,0.0,0.0,0,0,32286,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,37.6,0.0,Minicompact Cars,2012,-1750,,,,S,,,,,LTX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.8961,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,101,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.302,0,0.0,0.0,0.0,0.0,0,0,32287,5,0,Porsche,New 911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.7,0.0,38.2,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,102,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,32288,5,0,Porsche,New 911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2012,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9662,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,103,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,32289,5,0,Porsche,New 911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.9,0.0,38.0,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3230,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3229,13,13,Ford,Tempo AWD,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,104,SIDI,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,32290,5,0,Porsche,New 911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2012,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.7848,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,105,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.302,0,0.0,0.0,0.0,0.0,0,0,32291,5,0,Porsche,New 911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.5,0.0,38.2,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.4,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.3,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,106,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,32292,5,0,Porsche,New 911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.5,0.0,37.9,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.5295,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,107,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,26.6135,0,0.0,0.0,0.0,0.0,0,0,32293,5,0,Porsche,New 911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.4,0.0,37.2,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,108,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,32294,5,0,Porsche,New 911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.8,0.0,37.9,0.0,Minicompact Cars,2012,-1750,,,,,,,,,PRX +21.974,0.0,0.0,0.0,13,13.2986,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.483,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,110,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.372,0,0.0,0.0,0.0,0.0,0,0,32295,0,12,Mercedes-Benz,C63 AMG Black Series Coupe,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.4102,0.0,26.8007,0.0,Subcompact Cars,2012,-8000,G,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,18.7993,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,21.9726,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,133,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.6842,0,0.0,0.0,0.0,0.0,0,0,32296,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.641,0.0,38.7559,0.0,Subcompact Cars,2012,-1750,,,,,,,,,MBX +14.964294,4.679378,0.0,0.0,19,19.11,13,13.4206,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,22.2708,16,15.5133,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,818,SIDI; FFV,-1,2750,2850,Premium or E85,Premium Gasoline,-1,-1,28,27.9138,19,19.166,0.0,0.0,0.0,0,0,32297,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0576,16.5677,39.0902,26.508,Subcompact Cars,2012,-1750,,,,,FFV,E85,280,,MBX +14.327048,4.404708,0.0,0.0,20,19.5096,15,14.7134,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.7118,17,17.1008,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,819,SIDI; FFV,-1,2600,2700,Premium or E85,Premium Gasoline,-1,-1,28,28.4115,21,21.331,0.0,0.0,0.0,0,0,32298,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.5949,18.244,39.8155,29.5929,Subcompact Cars,2012,-1000,,,,,FFV,E85,290,,MBX +14.964294,4.679378,0.0,0.0,19,18.8272,14,14.167,0.0,0.0,0.0,-1,-1,393.4375,403.95454545454544,22,21.908,16,16.3988,0.0,0.0,0.0,6,3.5,4-Wheel Drive,820,SIDI; FFV,-1,2750,2850,Premium or E85,Premium Gasoline,-1,-1,27,27.385,20,20.3093,0.0,0.0,0.0,0,0,32299,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6784,17.5337,38.3206,28.1348,Subcompact Cars,2012,-1750,,,,,FFV,E85,280,,MBX +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3241,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,323,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,55.1282,0.0,Compact Cars,1985,3500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3240,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3230,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1987,-3250,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.898,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,260,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,37.2695,0,0.0,0.0,0.0,0.0,0,0,32300,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),35.1,0.0,52.9,0.0,Compact Cars,2012,3000,,,T,,,,,,GMX +10.987,3.400914,0.0,0.0,26,25.9045,19,19.3896,0.0,0.0,0.0,-1,-1,286.1363636363636,296.23333333333335,30,29.5417,22,21.98,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,32,SIDI; FFV,-1,1850,2050,Gasoline or E85,Regular Gasoline,-1,-1,36,35.6616,26,26.2695,0.0,0.0,0.0,23,90,32301,0,13,Ford,Focus FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.4,25.0,50.5,37.2,Compact Cars,2012,2750,,,,,FFV,E85,270,,FMX +10.613442000000001,3.400914,0.0,0.0,28,27.5985,19,19.0414,0.0,0.0,0.0,-1,-1,286.1363636363636,286.6774193548387,31,31.4147,22,22.2092,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,193,SIDI; FFV,-1,1800,2050,Gasoline or E85,Regular Gasoline,-1,-1,38,37.8038,28,27.8777,0.0,0.0,0.0,23,90,32302,0,13,Ford,Focus FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),35.8,24.7,53.7,39.6,Compact Cars,2012,3000,,,,,FFV,E85,270,,FMX +9.976196,3.256088,0.0,0.0,28,28.0188,20,19.6286,0.0,0.0,0.0,-1,-1,273.69565217391306,269.3030303030303,33,32.5,23,22.5916,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,194,SIDI; FFV,-1,1650,2000,Gasoline or E85,Regular Gasoline,-1,-1,40,40.3967,28,27.7026,0.0,0.0,0.0,23,90,32303,0,13,Ford,Focus SFE FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),36.4,25.5,57.6,39.5,Compact Cars,2012,3750,,,,,FFV,E85,280,,FMX +14.327048,4.404708,0.0,0.0,19,19.26,15,14.7501,0.0,0.0,0.0,-1,-1,370.29411764705884,386.39130434782606,23,22.5748,17,17.3143,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,817,SIDI; FFV,-1,2600,2700,Premium or E85,Premium Gasoline,-1,-1,29,28.5886,22,21.9856,0.0,0.0,0.0,0,0,32304,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.2591,18.2918,40.0738,30.5294,Compact Cars,2012,-1000,,,,,FFV,E85,290,,MBX +10.613442000000001,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,30.898,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,261,,-1,1800,0,Regular,Regular Gasoline,-1,-1,37,37.2695,0,0.0,0.0,0.0,0.0,0,0,32305,0,19,Chevrolet,Sonic 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),35.1,0.0,52.9,0.0,Midsize Cars,2012,3000,,,T,,,,,,GMX +19.381068,0.0,0.0,0.0,15,14.6556,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.6998,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,405,,-1,3550,0,Premium,Premium Gasoline,-1,-1,20,20.1317,0,0.0,0.0,0.0,0.0,0,0,32306,0,0,Mercedes-Benz,ML550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.1687,0.0,27.8817,0.0,Sport Utility Vehicle - 4WD,2012,-5750,,,T,,,,,,MBX +21.974,0.0,0.0,0.0,14,13.8505,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3545,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,406,,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,17.7042,0,0.0,0.0,0.0,0.0,0,0,32307,0,0,Mercedes-Benz,ML63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.1235,0.0,24.4357,0.0,Sport Utility Vehicle - 4WD,2012,-8000,,,T,,,,,,MBX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,316,-1,0.0,316.0,28,27.9769,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,11,,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.7347,0,0.0,0.0,0.0,0.0,0,0,32308,7,0,Scion,FR-S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,47.6385,0.0,Minicompact Cars,2013,1250,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,22,21.5548,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.758,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,10,,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.253,0,0.0,0.0,0.0,0.0,0,0,32309,7,0,Scion,FR-S,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3679,0.0,42.5082,0.0,Minicompact Cars,2013,0,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3239,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3231,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Compact Cars,1987,-2500,,,T,,,,,, +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.9059,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,2,,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.5061,0,0.0,0.0,0.0,0.0,0,0,32310,7,0,Subaru,BRZ,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,47.3,0.0,Minicompact Cars,2013,1250,,,,,,,,,FJX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.5542,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,1,,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.7013,0,0.0,0.0,0.0,0.0,0,0,32311,7,0,Subaru,BRZ,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3,0.0,41.7,0.0,Minicompact Cars,2013,0,,,,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,16,16.2,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,93,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8,0,0.0,0.0,0.0,0.0,0,0,32312,0,25,Porsche,Panamera 4S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2,0.0,33.2,0.0,Large Cars,2013,-3750,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.2,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,92,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8,0,0.0,0.0,0.0,0.0,0,0,32313,0,25,Porsche,Panamera S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.2,0.0,33.2,0.0,Large Cars,2013,-3750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.276,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.6254,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,97,,5,2850,0,Premium,Premium Gasoline,5,-1,24,24.4702,0,0.0,0.0,0.0,0.0,0,0,32314,0,0,Infiniti,JX35 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),22.9412,0.0,34.0997,0.0,Small Sport Utility Vehicle 2WD,2013,-2250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,18.1282,0,0.0,0.0,0.0,0.0,443,-1,0.0,443.0,20,20.1353,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,98,,5,3000,0,Premium,Premium Gasoline,5,-1,23,23.2863,0,0.0,0.0,0.0,0.0,0,0,32315,0,0,Infiniti,JX35 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),22.744,0.0,32.3954,0.0,Small Sport Utility Vehicle 4WD,2013,-3000,,,,,,,,,NSX +27.4675,0.0,0.0,0.0,10,10.1732,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.039,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,240,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.5173,0,0.0,0.0,0.0,0.0,0,0,32316,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4213,0.0,21.3515,0.0,Large Cars,2012,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.3206,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2127,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,250,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.7394,0,0.0,0.0,0.0,0.0,0,0,32317,0,15,Maybach,57 S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6075,0.0,21.6639,0.0,Large Cars,2012,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.1732,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.039,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,245,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.5173,0,0.0,0.0,0.0,0.0,0,0,32318,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4213,0.0,21.3515,0.0,Large Cars,2012,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.3206,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2127,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,255,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.7394,0,0.0,0.0,0.0,0.0,0,0,32319,0,15,Maybach,62 S,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6075,0.0,21.6639,0.0,Large Cars,2012,-13250,G,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3232,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,10.3206,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2127,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,258,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.7394,0,0.0,0.0,0.0,0.0,0,0,32320,0,15,Maybach,Landaulet,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6075,0.0,21.6639,0.0,Large Cars,2012,-13250,G,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,11.7161,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.799,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,142,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.6294,0,0.0,0.0,0.0,0.0,0,0,32321,0,0,Ferrari,458 Italia,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.4,0.0,24.3499,0.0,Two Seaters,2011,-9500,G,,,,,,,,FEX +27.4675,0.0,0.0,0.0,11,10.5518,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2344,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,599,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.196,0,0.0,0.0,0.0,0.0,0,0,32322,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),12.99,0.0,20.99,0.0,Two Seaters,2011,-13250,G,,,,,,,,FEX +27.4675,0.0,0.0,0.0,11,10.7886,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.4505,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,600,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.3384,0,0.0,0.0,0.0,0.0,0,0,32323,0,0,Ferrari,599 GTB Fiorano,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.2,0.0,21.1,0.0,Two Seaters,2011,-13250,G,,,,,,,,FEX +27.4675,0.0,0.0,0.0,11,10.6503,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2658,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,601,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.0572,0,0.0,0.0,0.0,0.0,0,0,32324,0,0,Ferrari,599 GTO,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),13.0247,0.0,20.705,0.0,Two Seaters,2011,-13250,G,,,,,,,,FEX +27.4675,0.0,0.0,0.0,11,10.5834,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2073,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,602,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.027,0,0.0,0.0,0.0,0.0,0,0,32325,0,0,Ferrari,599 SA Aperta,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),12.94,0.0,20.66,0.0,Two Seaters,2011,-13250,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,12.9913,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.2282,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,150,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.287,0,0.0,0.0,0.0,0.0,0,0,32326,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0142,0.0,26.6799,0.0,Minicompact Cars,2011,-8000,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,13.1926,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3759,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,SIDI; with Stop-Start option,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2746,0,0.0,0.0,0.0,0.0,0,0,32327,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.2735,0.0,26.6623,0.0,Minicompact Cars,2011,-8000,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,9,9.4021,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,11.4888,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,612,,-1,4300,0,Premium,Premium Gasoline,-1,-1,16,15.7651,0,0.0,0.0,0.0,0.0,0,0,32328,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Auto(AM6),11.145,0.0,21.7,0.0,Midsize Cars,2011,-9500,G,,,,,,,,FEX +27.4675,0.0,0.0,0.0,10,9.6009,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,11.5801,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,613,,-1,5050,0,Premium,Premium Gasoline,-1,-1,15,15.4807,0,0.0,0.0,0.0,0.0,0,0,32329,6,0,Ferrari,612 Scaglietti,N,false,105,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,11.7,0.0,21.3,0.0,Midsize Cars,2011,-13250,G,,,,,,,,FEX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3233,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.6887,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.7251,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,142,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,17.4385,0,0.0,0.0,0.0,0.0,0,0,32330,0,0,Ferrari,458 Italia Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.345,0.0,24.06,0.0,Two Seaters,2012,-9500,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,12,11.9486,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.9384,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,143,SIDI; with Stop-Start option,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5004,0,0.0,0.0,0.0,0.0,0,0,32331,0,0,Ferrari,458 Italia Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.0246,0.0,24.235,0.0,Two Seaters,2012,-9500,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,12,11.6887,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.7251,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,144,SIDI,-1,4300,0,Premium,Premium Gasoline,-1,-1,17,17.4385,0,0.0,0.0,0.0,0.0,0,0,32332,0,0,Ferrari,458 Italia Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.345,0.0,24.06,0.0,Two Seaters,2012,-9500,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,12,11.9486,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,13.9384,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,145,SIDI; with Stop-Start option,-1,4300,0,Premium,Premium Gasoline,-1,-1,18,17.5004,0,0.0,0.0,0.0,0.0,0,0,32333,0,0,Ferrari,458 Italia Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.0246,0.0,24.235,0.0,Two Seaters,2012,-9500,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,12.9913,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.2282,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,SIDI,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.287,0,0.0,0.0,0.0,0.0,0,0,32334,0,0,Ferrari,California,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0142,0.0,26.6799,0.0,Two Seaters,2012,-8000,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,13.1926,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3759,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,150,SIDI; with Stop-Start option,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.2746,0,0.0,0.0,0.0,0.0,0,0,32335,0,0,Ferrari,California,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.2735,0.0,26.6623,0.0,Two Seaters,2012,-8000,G,,,,,,,,FEX +0.059892,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,-1,-1,0.0,226.7741935483871,31,30.8887,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,10,RNG=190,-1,1000,0,CNG,Natural Gas,-1,-1,38,37.7371,0,0.0,0.0,0.0,0.0,0,0,32336,0,6,Honda,Civic Natural Gas,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.8,0.0,53.6,0.0,Compact Cars,2012,7000,,,,,CNG,,,,HNX +25.336022,0.0,0.0,0.0,11,10.5098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,12.6028,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,151,SIDI,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,16.6572,0,0.0,0.0,0.0,0.0,22,90,32337,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),12.8469,0.0,22.9568,0.0,Midsize Cars,2012,-11250,G,,,,,,,,FEX +25.336022,0.0,0.0,0.0,11,10.7381,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,12.7696,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,152,SIDI; with Stop-Start option,-1,4650,0,Premium,Premium Gasoline,-1,-1,17,16.6102,0,0.0,0.0,0.0,0.0,22,90,32338,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),13.136,0.0,22.8905,0.0,Midsize Cars,2012,-11250,G,,,,,,,,FEX +10.613442000000001,0.0,0.0,0.0,29,29.3141,0,0.0,0.0,0.0,0.0,283,-1,0.0,283.0,31,31.3156,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,5,,8,1950,0,Premium,Premium Gasoline,8,-1,34,34.1668,0,0.0,0.0,0.0,0.0,0,0,32339,0,13,Lexus,GS 450h,N,false,0,99,0,0.0,0.0,0.0,0.0,Auto(AV-S6),39.661,0.0,44.2662,0.0,Midsize Cars,2013,2250,,,,,Hybrid,,,288V Ni-MH,TYX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26050,(FFS) 2 barrel carb,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,86,3234,0,14,Honda,Accord,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Compact Cars,1987,0,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.2945,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,21,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,34,33.6412,0,0.0,0.0,0.0,0.0,0,0,32340,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,47.5,0.0,Large Cars,2013,1500,,,T,,,,,,HYX +11.75609,0.0,0.0,0.0,24,23.6416,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5862,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.6529,0,0.0,0.0,0.0,0.0,0,0,32341,0,16,Hyundai,Sonata,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2388,0.0,49.0,0.0,Large Cars,2013,2250,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,28,27.546,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,23,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.5855,0,0.0,0.0,0.0,0.0,0,0,32342,0,16,Hyundai,Sonata,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.9,0.0,Large Cars,2013,2250,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,18,18.1776,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.6871,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,6,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8862,0,0.0,0.0,0.0,0.0,0,0,32343,0,0,Lexus,RX 350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.81,0.0,34.7,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,TYX +10.987,0.0,0.0,0.0,32,31.5059,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,29.7833,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,8,,8,2000,0,Premium,Premium Gasoline,8,-1,28,27.9177,0,0.0,0.0,0.0,0.0,0,0,32344,0,0,Lexus,RX 450h,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),41.4485,0.0,39.0959,0.0,Small Sport Utility Vehicle 2WD,2013,2000,,,,,Hybrid,,,288V Ni-MH,TYX +13.73375,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,23.9012,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,370,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.1265,0,0.0,0.0,0.0,0.0,0,0,32345,0,0,BMW,X3 xDrive28i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.0,0.0,39.4,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.7674,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3853,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,372,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.7807,0,0.0,0.0,0.0,0.0,0,0,32346,0,0,BMW,X3 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5983,0.0,35.9931,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.8665,0,0.0,0.0,0.0,0.0,548,-1,0.0,548.0,16,16.1779,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,572,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3173,0,0.0,0.0,0.0,0.0,0,0,32347,0,0,BMW,X5 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.1441,0.0,28.1462,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.8665,0,0.0,0.0,0.0,0.0,548,-1,0.0,548.0,16,16.1779,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,672,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3173,0,0.0,0.0,0.0,0.0,0,0,32348,0,0,BMW,X6 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.1441,0.0,28.1462,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,17.5733,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.9863,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,7,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.0168,0,0.0,0.0,0.0,0.0,0,0,32349,0,0,Lexus,RX 350 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0056,0.0,33.4463,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26050,(FFS) 2 barrel carb,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,86,3235,0,14,Honda,Accord,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1987,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,30,29.5084,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6072,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,9,,8,2100,0,Premium,Premium Gasoline,8,-1,28,27.5778,0,0.0,0.0,0.0,0.0,0,0,32350,0,0,Lexus,RX 450h AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.5411,0.0,38.601,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,,,Hybrid,,,288V Ni-MH,TYX +17.337486000000002,0.0,0.0,0.0,16,15.8908,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,19,18.5106,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,571,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.1817,0,0.0,0.0,0.0,0.0,0,0,32351,0,0,BMW,X5 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7836,0.0,32.2451,0.0,Standard Sport Utility Vehicle 4WD,2013,-3750,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,12,12.2001,0,0.0,0.0,0.0,0.0,639,-1,0.0,639.0,14,13.888,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,573,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,16.7143,0,0.0,0.0,0.0,0.0,0,0,32352,0,0,BMW,X5 M,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.9985,0.0,23.0373,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8908,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,19,18.5106,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,671,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.1817,0,0.0,0.0,0.0,0.0,0,0,32353,0,0,BMW,X6 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7836,0.0,32.2451,0.0,Standard Sport Utility Vehicle 4WD,2013,-3750,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,12,12.2001,0,0.0,0.0,0.0,0.0,639,-1,0.0,639.0,14,13.888,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,673,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,16.7143,0,0.0,0.0,0.0,0.0,0,0,32354,0,0,BMW,X6 M,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.9985,0.0,23.0373,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,534,-1,0.0,534.0,17,16.5714,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,197,,4,3550,0,Premium,Premium Gasoline,4,-1,21,21.4059,0,0.0,0.0,0.0,0.0,0,0,32355,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,29.7,0.0,Two Seaters,2013,-5750,G,,,S,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.7564,0,0.0,0.0,0.0,0.0,497,-1,0.0,497.0,18,17.8636,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,198,,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.0541,0,0.0,0.0,0.0,0.0,0,0,32356,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.3,0.0,33.5,0.0,Two Seaters,2013,-4750,,,,,,,,,GMX +9.141184,0.0,0.0,0.0,34,34.4631,0,0.0,0.0,0.0,0.0,244,-1,0.0,244.0,36,36.0375,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,702,,9,1700,0,Premium,Premium Gasoline,9,-1,38,38.1688,0,0.0,0.0,0.0,0.0,0,0,32357,0,0,smart,fortwo coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1156,0.0,58.5452,0.0,Two Seaters,2013,3500,,,,,,,,,MBX +9.141184,0.0,0.0,0.0,34,34.4631,0,0.0,0.0,0.0,0.0,244,-1,0.0,244.0,36,36.0375,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,703,,9,1700,0,Premium,Premium Gasoline,9,-1,38,38.1688,0,0.0,0.0,0.0,0.0,0,0,32358,0,0,smart,fortwo cabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1156,0.0,58.5452,0.0,Two Seaters,2013,3500,,,,,,,,,MBX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.2766,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,7,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,24,23.9773,0,0.0,0.0,0.0,0.0,0,0,32359,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.4,0.0,30.8,0.0,Subcompact Cars,2013,-5750,G,,T,,,,,,ADX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS) fuel injection,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,86,3236,0,14,Honda,Accord,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Compact Cars,1987,0,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,11,11.2476,8,7.8665,0.0,0.0,0.0,646,648,648.0,646.0,14,13.7134,10,9.6274,0.0,0.0,0.0,12,6.0,All-Wheel Drive,11,FFV,2,4300,4550,Premium or E85,Premium Gasoline,2,2,19,18.7327,13,13.2535,0.0,0.0,0.0,0,0,32360,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7,9.5,24.6,17.3,Subcompact Cars,2013,-9500,G,,T,,FFV,E85,240,,VWX +23.534154,7.4910000000000005,0.0,0.0,12,11.5043,8,8.3016,0.0,0.0,0.0,633,648,648.0,633.0,14,13.9574,10,10.0512,0.0,0.0,0.0,12,6.0,All-Wheel Drive,12,FFV,2,4300,4550,Premium or E85,Premium Gasoline,2,2,19,18.877,14,13.5384,0.0,0.0,0.0,0,0,32361,7,0,Bentley,Continental Supersports Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,10.3,24.7,17.2,Subcompact Cars,2013,-9500,G,,T,,FFV,E85,240,,VWX +18.304342000000002,0.0,0.0,0.0,15,15.0109,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.1706,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,8,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.4645,0,0.0,0.0,0.0,0.0,0,0,32362,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.0,0.0,33.5,0.0,Compact Cars,2013,-4750,,,T,,,,,,ADX +23.534154,7.4910000000000005,0.0,0.0,12,11.5043,8,8.3016,0.0,0.0,0.0,633,648,648.0,633.0,14,13.9574,10,10.0512,0.0,0.0,0.0,12,6.0,All-Wheel Drive,13,FFV,2,4300,4550,Premium or E85,Premium Gasoline,2,2,19,18.877,14,13.5384,0.0,0.0,0.0,0,0,32363,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.9,10.3,24.7,17.2,Compact Cars,2013,-9500,G,,T,,FFV,E85,240,,VWX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,25,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,19,90,32364,0,14,Hyundai,Accent,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 6-spd,38.2154,0.0,57.8957,0.0,Compact Cars,2013,3000,,,,,,,,,HYX +10.283832,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,276,-1,0.0,276.0,32,32.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,19,90,32365,0,14,Hyundai,Accent,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.9,0.0,56.6,0.0,Compact Cars,2013,3500,,,,,,,,,HYX +23.534154,7.4910000000000005,0.0,0.0,11,11.2476,8,7.8665,0.0,0.0,0.0,646,648,648.0,646.0,14,13.7134,10,9.6274,0.0,0.0,0.0,12,6.0,All-Wheel Drive,10,FFV,2,4300,4550,Premium or E85,Premium Gasoline,2,2,19,18.7327,13,13.2535,0.0,0.0,0.0,0,0,32366,13,0,Bentley,Continental Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S6),13.7,9.5,24.6,17.3,Midsize Cars,2013,-9500,G,,T,,FFV,E85,240,,VWX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.016,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,174,,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.0649,0,0.0,0.0,0.0,0.0,0,0,32367,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4,0.0,43.7,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5779,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,216,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.6083,0,0.0,0.0,0.0,0.0,0,0,32368,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4,0.0,41.5639,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,T,,,,,,FMX +13.73375,0.0,0.0,0.0,21,20.9913,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.8327,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,110,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.5573,0,0.0,0.0,0.0,0.0,0,0,32369,0,0,Ford,Escape AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.6,0.0,40.0282,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26051,(FFS) fuel injection,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,86,3237,0,14,Honda,Accord,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.4249,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,144,,4,2900,0,Regular,Regular Gasoline,4,-1,26,25.6473,0,0.0,0.0,0.0,0.0,0,0,32370,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,35.8,0.0,Two Seaters,2013,-2500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.7179,0,0.0,0.0,0.0,0.0,494,-1,0.0,494.0,18,17.9759,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,146,,4,3050,0,Regular,Regular Gasoline,4,-1,25,24.6432,0,0.0,0.0,0.0,0.0,0,0,32371,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.2499,0.0,34.3493,0.0,Two Seaters,2013,-3250,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,16.9704,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.7967,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,222,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8562,0,0.0,0.0,0.0,0.0,0,0,32372,0,0,Mercedes-Benz,SL550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0344,0.0,34.1647,0.0,Two Seaters,2013,-3000,,,T,,,,,,MBX +13.73375,0.0,0.0,0.0,20,20.5,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.8,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,201,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.6,0,0.0,0.0,0.0,0.0,0,0,32373,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.9,0.0,41.5,0.0,Two Seaters,2013,-500,,,,,,,,,PRX +12.657024,0.0,0.0,0.0,22,21.9,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,26,25.5,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,202,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,31.9,0,0.0,0.0,0.0,0.0,0,0,32374,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),27.9,0.0,44.9,0.0,Two Seaters,2013,500,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.8,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.9,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,101,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,32375,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.7,0.0,38.2,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,102,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,32376,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2013,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,103,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.2,0,0.0,0.0,0.0,0.0,0,0,32377,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.9,0.0,38.0,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,104,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,32378,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2013,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,105,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,32379,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.5,0.0,38.2,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3238,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.4,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.3,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,106,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,32380,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.5,0.0,37.9,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,107,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.6,0,0.0,0.0,0.0,0.0,0,0,32381,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.4,0.0,37.2,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,108,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,32382,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.8,0.0,37.9,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,109,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,32383,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.9,0.0,38.2,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.9,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,110,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.7,0,0.0,0.0,0.0,0.0,0,0,32384,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.2,0.0,38.8,0.0,Minicompact Cars,2013,-1000,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.4,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,111,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3,0,0.0,0.0,0.0,0.0,0,0,32385,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.4,0.0,36.7,0.0,Minicompact Cars,2013,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,20,19.6,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.4,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,112,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32386,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.7,0.0,37.7,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.3,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,113,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.4,0,0.0,0.0,0.0,0.0,0,0,32387,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.1,0.0,36.8,0.0,Minicompact Cars,2013,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.2,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.8,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,114,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.2,0,0.0,0.0,0.0,0.0,0,0,32388,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.1,0.0,36.7,0.0,Minicompact Cars,2013,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,21.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,115,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.8,0,0.0,0.0,0.0,0.0,0,0,32389,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,22.8,0.0,36.1,0.0,Minicompact Cars,2013,-2250,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3239,15,0,Mercury,Cougar,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.3106,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,116,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,32390,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.3,0.0,36.4,0.0,Minicompact Cars,2013,-2250,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,15.0909,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.097,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,9,Shelby GT500,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.9209,0,0.0,0.0,0.0,0.0,0,0,32391,13,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7363,0.0,33.3083,0.0,Subcompact Cars,2013,-4750,,,,S,,,,,FMX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,557,-1,0.0,557.0,16,15.9638,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,139,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.9491,0,0.0,0.0,0.0,0.0,0,0,32392,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.2,0.0,Compact Cars,2013,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.6604,0,0.0,0.0,0.0,0.0,645,-1,0.0,645.0,14,13.7682,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,142,,2,4300,0,Premium,Premium Gasoline,2,-1,18,17.6726,0,0.0,0.0,0.0,0.0,0,0,32393,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3089,0.0,24.391,0.0,Compact Cars,2013,-9500,G,,,S,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.7124,0,0.0,0.0,0.0,0.0,479,-1,0.0,479.0,19,18.5655,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,145,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.861,0,0.0,0.0,0.0,0.0,0,0,32394,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5496,0.0,33.222,0.0,Compact Cars,2013,-2500,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.4111,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,187,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,32395,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,41.9,0.0,Compact Cars,2013,-500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,16.8143,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,20.4636,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,188,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,32396,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.0,0.0,39.0,0.0,Compact Cars,2013,-1750,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,15.4884,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,18,18.4924,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,199,,4,3050,0,Regular,Regular Gasoline,4,-1,24,24.2379,0,0.0,0.0,0.0,0.0,0,0,32397,11,0,Chevrolet,Camaro,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.2561,0.0,33.7648,0.0,Compact Cars,2013,-3250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.8058,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1758,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,28,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5484,0,0.0,0.0,0.0,0.0,0,0,32398,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5575,0.0,37.3745,0.0,Midsize Cars,2013,-2250,,,,S,,,,,VWX +11.360558000000001,0.0,0.0,0.0,25,24.8922,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.0746,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,101,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,36,36.0,0,0.0,0.0,0.0,0.0,0,0,32399,0,13,Buick,Regal eAssist,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),31.9796,0.0,51.8816,0.0,Midsize Cars,2013,2500,,,,,Hybrid,,,115V Li-Ion,GMX +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3240,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,324,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,85,3240,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,24.8922,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.0746,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,102,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,36,36.0,0,0.0,0.0,0.0,0.0,0,0,32400,0,16,Buick,LaCrosse eAssist,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),31.9796,0.0,51.8816,0.0,Midsize Cars,2013,2500,,,,,Hybrid,,,115V Li-Ion,GMX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,557,-1,0.0,557.0,16,15.9638,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,136,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.9491,0,0.0,0.0,0.0,0.0,0,0,32401,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.2,0.0,Midsize Cars,2013,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.6604,0,0.0,0.0,0.0,0.0,645,-1,0.0,645.0,14,13.7682,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,140,,2,3950,0,Regular,Regular Gasoline,2,-1,18,17.6726,0,0.0,0.0,0.0,0.0,0,0,32402,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3089,0.0,24.391,0.0,Midsize Cars,2013,-7750,G,,,S,,,,,GMX +10.283832,0.0,0.0,0.0,27,27.1417,0,0.0,0.0,0.0,0.0,280,-1,0.0,280.0,32,31.5797,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,700,,8,1900,0,Premium,Premium Gasoline,8,-1,39,39.4676,0,0.0,0.0,0.0,0.0,13,97,32403,0,0,Dodge,Dart,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.1499,0.0,56.1993,0.0,Midsize Cars,2013,2500,,,T,,,,,,CRX +11.360558000000001,0.0,0.0,0.0,25,25.014,0,0.0,0.0,0.0,0.0,304,-1,0.0,304.0,29,29.0826,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,710,,8,1900,0,Regular,Regular Gasoline,8,-1,36,36.2989,0,0.0,0.0,0.0,0.0,13,97,32404,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.1499,0.0,51.45,0.0,Midsize Cars,2013,2500,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.9196,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,152,,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.9846,0,0.0,0.0,0.0,0.0,0,0,32405,0,15,Infiniti,M37x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),21.9,0.0,33.4,0.0,Midsize Cars,2013,-3000,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.8058,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1758,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,29,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5484,0,0.0,0.0,0.0,0.0,0,0,32406,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5575,0.0,37.3745,0.0,Large Cars,2013,-2250,,,,S,,,,,VWX +18.304342000000002,0.0,0.0,0.0,15,15.3592,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,18.1075,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,24,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.176,0,0.0,0.0,0.0,0.0,0,0,32407,0,17,Hyundai,Equus,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.0869,0.0,32.2369,0.0,Large Cars,2013,-4750,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,90,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.7,0,0.0,0.0,0.0,0.0,0,0,32408,0,25,Porsche,Panamera,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.6,0.0,37.3,0.0,Large Cars,2013,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,17.7,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.7,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,91,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.2,0,0.0,0.0,0.0,0.0,0,0,32409,0,25,Porsche,Panamera 4,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2,0.0,36.5,0.0,Large Cars,2013,-2250,,,,,,,,,PRX +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,16,85,3241,0,0,Mercury,Lynx,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,54.0,0.0,Compact Cars,1987,3000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,394,-1,0.0,394.0,23,22.5112,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,34,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,32410,0,28,Audi,allroad quattro,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2,0.0,37.3,0.0,Small Station Wagons,2013,-1000,,,T,,,,,,VWX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,557,-1,0.0,557.0,16,15.9638,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,137,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.9491,0,0.0,0.0,0.0,0.0,0,0,32411,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.5,0.0,26.2,0.0,Small Station Wagons,2013,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.6604,0,0.0,0.0,0.0,0.0,645,-1,0.0,645.0,14,13.7682,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,141,,2,4300,0,Premium,Premium Gasoline,2,-1,18,17.6726,0,0.0,0.0,0.0,0.0,0,0,32412,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3089,0.0,24.391,0.0,Small Station Wagons,2013,-9500,G,,,S,,,,,GMX +19.381068,0.0,0.0,0.0,15,14.8643,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.7013,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,518,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.6728,0,0.0,0.0,0.0,0.0,0,0,32413,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4406,0.0,27.2284,0.0,Standard Pickup Trucks 2WD,2013,-4250,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,533,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32414,0,0,Chevrolet,Silverado C15 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Pickup Trucks 2WD,2013,-4250,,,,,FFV,E85,330/450,,GMX +18.304342000000002,5.758082,0.0,0.0,15,15.3692,11,11.1849,0.0,0.0,0.0,501,481,481.0,501.0,18,17.7499,13,12.9968,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,534,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,21.8952,16,16.2053,0.0,0.0,0.0,0,0,32415,0,0,Chevrolet,Silverado C15 XFE 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2013,-3250,,,,,FFV,E85,340,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.7556,10,10.3111,0.0,0.0,0.0,568,539,539.0,568.0,16,15.6571,12,11.683,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,548,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.8403,14,13.9518,0.0,0.0,0.0,0,0,32416,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0006,12.7435,26.0455,19.2875,Standard Pickup Trucks 2WD,2013,-5250,,,,,FFV,E85,310/420,,GMX +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,618,587,587.0,618.0,14,14.3726,11,10.656,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,585,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,18,17.562,13,13.4698,0.0,0.0,0.0,0,0,32417,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.2,24.9,18.6,Standard Pickup Trucks 2WD,2013,-7750,,,,,FFV,E85,290,,GMX +19.381068,0.0,0.0,0.0,15,14.8527,0,0.0,0.0,0.0,0.0,533,-1,0.0,533.0,17,16.6776,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,520,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.6247,0,0.0,0.0,0.0,0.0,0,0,32418,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.4255,0.0,27.16,0.0,Standard Pickup Trucks 2WD,2013,-4250,,,,,,,,,GMX +18.304342000000002,5.758082,0.0,0.0,15,15.3692,11,11.1849,0.0,0.0,0.0,501,481,481.0,501.0,18,17.7499,13,12.9968,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,537,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,21.8952,16,16.2053,0.0,0.0,0.0,0,0,32419,0,0,GMC,Sierra C15 XFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1,13.9,30.4,22.5,Standard Pickup Trucks 2WD,2013,-3250,,,,,FFV,E85,340,,GMX +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,85,3242,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Compact Cars,1987,2250,,SIL,,,,,,, +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,538,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32420,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Pickup Trucks 2WD,2013,-4250,,,,,FFV,E85,330/450,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.7754,10,10.3251,0.0,0.0,0.0,567,538,538.0,567.0,16,15.6753,12,11.6953,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,549,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.8533,14,13.9596,0.0,0.0,0.0,0,0,32421,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0263,12.7618,26.064,19.2986,Standard Pickup Trucks 2WD,2013,-5250,,,,,FFV,E85,310/420,,GMX +23.534154,6.806822,0.0,0.0,13,12.5133,9,9.1006,0.0,0.0,0.0,618,587,587.0,618.0,14,14.3726,11,10.656,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,586,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,18,17.562,13,13.4698,0.0,0.0,0.0,0,0,32422,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.2,24.9,18.6,Standard Pickup Trucks 2WD,2013,-7750,,,,,FFV,E85,290,,GMX +21.974,0.0,0.0,0.0,14,14.061,0,0.0,0.0,0.0,0.0,576,-1,0.0,576.0,15,15.4365,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,528,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.5329,0,0.0,0.0,0.0,0.0,0,0,32423,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3962,0.0,24.1935,0.0,Standard Pickup Trucks 4WD,2013,-6250,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.621,11,10.8206,0.0,0.0,0.0,526,496,496.0,526.0,17,16.9122,13,12.6078,0.0,0.0,0.0,8,5.3,4-Wheel Drive,542,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.9186,16,15.7966,0.0,0.0,0.0,0,0,32424,0,0,Chevrolet,Silverado K15 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1237,13.4128,29.0038,21.9022,Standard Pickup Trucks 4WD,2013,-4250,,,,,FFV,E85,330/450,,GMX +21.974,6.806822,0.0,0.0,13,13.1154,10,9.8621,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7888,11,11.0694,0.0,0.0,0.0,8,4.8,4-Wheel Drive,550,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.5211,13,13.0169,0.0,0.0,0.0,0,0,32425,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.174,12.162,24.1768,17.9616,Standard Pickup Trucks 4WD,2013,-6250,,,,,FFV,E85,280/380,,GMX +23.534154,7.4910000000000005,0.0,0.0,12,12.186,9,8.8554,0.0,0.0,0.0,625,595,595.0,625.0,14,14.1202,10,10.4604,0.0,0.0,0.0,8,6.2,4-Wheel Drive,587,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5186,13,13.4371,0.0,0.0,0.0,0,0,32426,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.9806,10.8861,24.8394,18.5538,Standard Pickup Trucks 4WD,2013,-7750,,,,,FFV,E85,260,,GMX +21.974,0.0,0.0,0.0,14,14.061,0,0.0,0.0,0.0,0.0,576,-1,0.0,576.0,15,15.4365,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel Drive,529,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.5329,0,0.0,0.0,0.0,0.0,0,0,32427,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.3962,0.0,24.1935,0.0,Standard Pickup Trucks 4WD,2013,-6250,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.6289,11,10.8244,0.0,0.0,0.0,525,496,496.0,525.0,17,16.9187,13,12.6111,0.0,0.0,0.0,8,5.3,4-Wheel Drive,545,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.921,16,15.7983,0.0,0.0,0.0,0,0,32428,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1339,13.4179,29.0072,21.9045,Standard Pickup Trucks 4WD,2013,-4250,,,,,FFV,E85,330/450,,GMX +21.974,6.806822,0.0,0.0,13,13.1028,10,9.8475,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7772,11,11.059,0.0,0.0,0.0,8,4.8,4-Wheel Drive,551,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.5125,13,13.0161,0.0,0.0,0.0,0,0,32429,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1578,12.1434,24.1647,17.9604,Standard Pickup Trucks 4WD,2013,-6250,,,,,FFV,E85,280/380,,GMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,3243,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.0,0.0,Compact Cars,1987,1000,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,12,12.1809,9,8.8517,0.0,0.0,0.0,625,595,595.0,625.0,14,14.1122,10,10.4546,0.0,0.0,0.0,8,6.2,4-Wheel Drive,588,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5042,13,13.4261,0.0,0.0,0.0,0,0,32430,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.974,10.8814,24.8189,18.5381,Standard Pickup Trucks 4WD,2013,-7750,,,,,FFV,E85,260,,GMX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,529,-1,0.0,529.0,17,16.7946,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,517,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,32431,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2013,-4250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,557,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,32432,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2013,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,558,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,32433,0,0,Chevrolet,Express 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,562,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32434,0,0,Chevrolet,Express 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,310,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,564,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32435,0,0,Chevrolet,Express 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,310,,GMX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,529,-1,0.0,529.0,17,16.7946,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,519,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,32436,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.5,0.0,27.5,0.0,"Vans, Cargo Type",2013,-4250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,560,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,32437,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2013,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,561,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,32438,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,566,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32439,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,310,,GMX +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(NO-CAT),-1,1700,0,Diesel,Diesel,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,16,85,3244,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,57.6923,0.0,Compact Cars,1987,3500,,,,,Diesel,,,, +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,567,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32440,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,310,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,675,649,649.0,675.0,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,552,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,32441,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,310,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,556,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,32442,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2013,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,563,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32443,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2013,-7750,,,,,FFV,E85,310,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,675,649,649.0,675.0,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,554,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,32444,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,310,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,559,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,32445,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2013,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,565,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,32446,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2013,-7750,,,,,FFV,E85,310,,GMX +14.327048,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.2152,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,175,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,32447,0,0,Lincoln,MKT Livery FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.8,0.0,39.1,0.0,Special Purpose Vehicle 2WD,2013,0,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.7,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,18.1,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,3,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.2,0,0.0,0.0,0.0,0.0,0,0,32448,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.5,0.0,31.6,0.0,Standard Sport Utility Vehicle 4WD,2013,-4750,,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.8,0,0.0,0.0,0.0,0.0,523,-1,0.0,523.0,17,16.9,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,4,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,21,20.6,0,0.0,0.0,0.0,0.0,0,0,32449,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.4,0.0,28.9,0.0,Standard Sport Utility Vehicle 4WD,2013,-5750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3231,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3245,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,34.0,0.0,Compact Cars,1987,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,25.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,11,,6,2200,0,Regular,Regular Gasoline,6,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,32450,0,0,Hyundai,Tucson 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.7,0.0,44.7,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,13,,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32451,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.3,0.0,Small Sport Utility Vehicle 2WD,2013,0,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,22,22.0,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,25.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,14,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,32452,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.8,0.0,42.9,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,15,,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,32453,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.8,0.0,37.6,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,25.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,13,,6,2200,0,Regular,Regular Gasoline,6,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,32454,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.7302,0.0,44.7,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,KMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32455,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,40.2,0.0,Small Sport Utility Vehicle 2WD,2013,0,,,,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,24.4288,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,16,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,32456,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.6,0.0,40.4,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,T,,,,,,KMX +13.1844,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.1372,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,120,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.7474,0,0.0,0.0,0.0,0.0,0,0,32457,0,0,Ford,Escape AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.4,0.0,41.7675,0.0,Small Sport Utility Vehicle 4WD,2013,1000,,,T,,,,,,FMX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,23.4308,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,10,,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32458,0,0,Hyundai,Tucson 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2227,0.0,39.0767,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,21.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,12,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32459,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6,0.0,37.2,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3233,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3246,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,23.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,11,,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32460,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.3588,0.0,39.4,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,21.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,12,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32461,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.7,0.0,37.2,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,15,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32462,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1,0.0,35.9,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,T,,,,,,KMX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.1902,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,32463,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4,0.0,37.6,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,23.0593,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,18,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.5013,0,0.0,0.0,0.0,0.0,0,0,32464,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),26.4,0.0,37.0372,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,19,18.918,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.7612,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,20,,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,32465,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),23.8,0.0,32.8,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,T,,,,,,FJX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,570,529,529.0,570.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,576,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,32466,0,0,Cadillac,Escalade 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,310,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,570,529,529.0,570.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,577,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,32467,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,380,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,530,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32468,0,0,Chevrolet,Tahoe 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2013,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,531,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32469,0,0,Chevrolet,Avalanche 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2013,-4250,,,,,FFV,E85,410,,GMX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3232,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3247,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Compact Cars,1987,-500,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,532,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32470,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2013,-4250,,,,,FFV,E85,410,,GMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,720,-1,0.0,720.0,12,12.2759,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,590,,1,4600,0,Regular,Regular Gasoline,1,-1,16,15.7651,0,0.0,0.0,0.0,0.0,0,0,32471,0,0,Chevrolet,Suburban 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Standard Sport Utility Vehicle 2WD,2013,-11000,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,535,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32472,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2013,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,536,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32473,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2013,-4250,,,,,FFV,E85,410,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,570,529,529.0,570.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,578,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,32474,0,0,GMC,Yukon 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,310,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,570,529,529.0,570.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,579,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,32475,0,0,GMC,Yukon XL 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,380,,GMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,720,-1,0.0,720.0,12,12.2759,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,591,,1,4600,0,Regular,Regular Gasoline,1,-1,16,15.7651,0,0.0,0.0,0.0,0.0,0,0,32476,0,0,GMC,Yukon XL 2500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.7,0.0,21.7,0.0,Standard Sport Utility Vehicle 2WD,2013,-11000,,,,,,,,,GMX +21.974,6.242500000000001,0.0,0.0,13,13.0,10,9.9496,0.0,0.0,0.0,581,538,538.0,581.0,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,580,FFV,3,3650,3800,Gasoline or E85,Regular Gasoline,3,3,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,32477,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Standard Sport Utility Vehicle 4WD,2013,-6250,,,,,FFV,E85,310,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,539,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32478,0,0,Chevrolet,Avalanche 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2013,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,540,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32479,0,0,Chevrolet,Tahoe 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2013,-4250,,,,,FFV,E85,330,,GMX +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3230,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3248,13,13,Mercury,Topaz AWD,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,541,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32480,0,0,Chevrolet,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2013,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,543,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32481,0,0,GMC,Yukon XL 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2013,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,544,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,32482,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2013,-4250,,,,,FFV,E85,330,,GMX +21.974,6.242500000000001,0.0,0.0,13,13.0,10,9.9496,0.0,0.0,0.0,581,538,538.0,581.0,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,583,FFV,3,3650,3800,Gasoline or E85,Regular Gasoline,3,3,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,32483,0,0,GMC,Yukon Denali 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Standard Sport Utility Vehicle 4WD,2013,-6250,,,,,FFV,E85,310,,GMX +4.744612481512605,3.4499180000000003,0.0,1.5,51,50.5282,90,90.2714,0.35,26.0,0.317,133,-1,0.0,133.0,50,49.7021,95,95.3887,29.0,0.1907,0.288,4,1.8,Front-Wheel Drive,85,PHEV,-1,1100,0,Regular Gas and Electricity,Regular Gasoline,-1,-1,49,48.7284,102,102.4898,0.0,33.0,0.251,22,94,32484,0,0,Toyota,Prius Plug-in Hybrid,Y,true,0,0,0,0.0,12.15,0.0,9.1,Automatic (variable gear ratios),70.9,128.9591,68.4,146.414,Midsize Cars,2012,7250,,,,,Plug-in Hybrid,Electricity,11,18 kW,TYX +16.4805,0.0,0.0,0.0,17,17.3211,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.1695,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,54,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2432,0,0.0,0.0,0.0,0.0,0,0,32485,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6709,0.0,35.2157,0.0,Subcompact Cars,2013,-3000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.8778,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,32486,10,0,Infiniti,G37 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,32.9,0.0,Subcompact Cars,2013,-3750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,16.6217,0,0.0,0.0,0.0,0.0,453,-1,0.0,453.0,20,19.5516,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,72,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.9206,0,0.0,0.0,0.0,0.0,0,0,32487,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7457,0.0,34.7496,0.0,Subcompact Cars,2013,-3000,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,18.9014,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.7318,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,73,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.6004,0,0.0,0.0,0.0,0.0,0,0,32488,7,0,Infiniti,G37 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.7778,0.0,37.181,0.0,Subcompact Cars,2013,-1750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.7604,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,20.4778,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,74,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.1881,0,0.0,0.0,0.0,0.0,0,0,32489,7,0,Infiniti,G37x Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.2543,0.0,35.1361,0.0,Subcompact Cars,2013,-3000,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3237,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,17,90,3249,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1987,-4250,,,T,,,,,, +15.689436,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.7425,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,203,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32490,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6,0.0,38.5,0.0,Midsize Cars,2013,-1000,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.6461,0,0.0,0.0,0.0,0.0,477,-1,0.0,477.0,19,18.6584,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,111,,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.3999,0,0.0,0.0,0.0,0.0,0,0,32491,0,15,Infiniti,M56,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.4626,0.0,33.9984,0.0,Midsize Cars,2013,-3750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.6436,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.2766,0,0.0,0.0,0.0,0.0,8,5.6,All-Wheel Drive,112,,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0101,0,0.0,0.0,0.0,0.0,0,0,32492,0,15,Infiniti,M56x,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.4593,0.0,31.9986,0.0,Midsize Cars,2013,-4750,,,,,,,,,NSX +11.360558000000001,0.0,0.0,0.0,27,26.8246,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.9859,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,,8,2100,0,Premium,Premium Gasoline,8,-1,32,32.152,0,0.0,0.0,0.0,0.0,0,0,32493,0,11,Infiniti,M35h,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),34.7,0.0,45.3,0.0,Midsize Cars,2013,1500,,,,,Hybrid,,,346V Li-Ion,NSX +15.689436,0.0,0.0,0.0,18,18.3441,0,0.0,0.0,0.0,0.0,419,-1,0.0,419.0,21,21.2429,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,151,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3278,0,0.0,0.0,0.0,0.0,0,0,32494,0,15,Infiniti,M37,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),23.0321,0.0,36.7857,0.0,Midsize Cars,2013,-2250,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,21,21.1564,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.8022,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,7,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.0967,0,0.0,0.0,0.0,0.0,0,0,32495,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.8246,0.0,39.3566,0.0,Midsize Cars,2013,500,,,,,,,,,FJX +12.19557,0.0,0.0,0.0,24,24.1028,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,27.2118,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,8,,7,2050,0,Regular,Regular Gasoline,7,-1,32,32.3049,0,0.0,0.0,0.0,0.0,0,0,32496,0,15,Subaru,Legacy AWD,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.8789,0.0,45.5255,0.0,Midsize Cars,2013,1750,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,18,17.5039,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.1058,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,13,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.5695,0,0.0,0.0,0.0,0.0,0,0,32497,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9134,0.0,34.2429,0.0,Midsize Cars,2013,-1750,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.7425,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,204,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,28,27.5083,0,0.0,0.0,0.0,0.0,0,0,32498,0,18,Cadillac,XTS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6,0.0,38.5,0.0,Large Cars,2013,-1000,,,,,,,,,GMX +23.534154,7.4910000000000005,0.0,0.0,12,12.2012,9,8.8662,0.0,0.0,0.0,623,593,593.0,623.0,14,14.1438,10,10.4776,0.0,0.0,0.0,8,6.2,All-Wheel Drive,589,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5611,13,13.4698,0.0,0.0,0.0,0,0,32499,0,0,GMC,Sierra K15 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.0,10.9,24.9,18.6,Standard Pickup Trucks 4WD,2013,-7750,,,,,FFV,E85,260,,GMX +9.554625000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3230,,-1,1500,0,Diesel,Diesel,-1,-1,46,0.0,0,0.0,0.0,0.0,0.0,17,85,325,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.0,0.0,66.6667,0.0,Compact Cars,1985,4500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3236,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,90,3250,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1987,-1750,,,T,,,,,, +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,747,719,719.0,747.0,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,594,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,32500,0,0,Chevrolet,Express 2500 2WD Conversion Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2013,-11000,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,747,719,719.0,747.0,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,597,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,32501,0,0,GMC,Savana 2500 2WD Conversion (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2013,-11000,,,,,FFV,E85,280,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,675,649,649.0,675.0,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,553,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,32502,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,310,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,710,693,693.0,710.0,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,595,FFV,2,4250,5050,Gasoline or E85,Regular Gasoline,2,1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,32503,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,11,10.5068,8,7.6526,0.0,0.0,0.0,723,702,702.0,723.0,12,12.2896,9,8.9675,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,596,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.5053,11,11.3515,0.0,0.0,0.0,0,0,32504,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.843,9.3542,21.3346,15.6191,"Vans, Passenger Type",2013,-11000,,,,,FFV,E85,280,,GMX +25.336022,7.4910000000000005,0.0,0.0,11,11.1823,8,8.2439,0.0,0.0,0.0,675,649,649.0,675.0,13,13.0921,10,9.6088,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,555,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.546,12,12.0466,0.0,0.0,0.0,0,0,32505,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,10.1,22.8,16.6,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,310,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,710,693,693.0,710.0,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,598,FFV,2,4250,5050,Gasoline or E85,Regular Gasoline,2,1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,32506,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,11,10.5579,8,7.6815,0.0,0.0,0.0,720,700,700.0,720.0,12,12.3466,9,8.9984,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,599,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.5709,11,11.3837,0.0,0.0,0.0,0,0,32507,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.9077,9.3911,21.4268,15.6649,"Vans, Passenger Type",2013,-11000,,,,,FFV,E85,280,,GMX +13.73375,0.0,0.0,0.0,21,21.1564,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.8022,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,17,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.0967,0,0.0,0.0,0.0,0.0,0,0,32508,0,0,Subaru,Outback AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.8246,0.0,39.3566,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,,,,,,,FJX +12.657024,0.0,0.0,0.0,24,23.6279,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1972,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,19,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.2127,0,0.0,0.0,0.0,0.0,0,0,32509,0,0,Subaru,Outback AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.2197,0.0,42.4492,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,,,,,,,FJX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,88,3251,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Compact Cars,1987,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,17.5039,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.1058,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,21,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.5695,0,0.0,0.0,0.0,0.0,0,0,32510,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.9134,0.0,34.2429,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,FJX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,615,596,596.0,615.0,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,581,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,32511,0,0,Cadillac,Escalade Ext AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,FFV,E85,320,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,615,596,596.0,615.0,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,582,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,32512,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,FFV,E85,320,,GMX +27.4675,0.0,0.0,0.0,10,10.3127,0,0.0,0.0,0.0,0.0,731,-1,0.0,731.0,12,12.1148,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,592,,1,4600,0,Regular,Regular Gasoline,1,-1,15,15.405,0,0.0,0.0,0.0,0.0,0,0,32513,0,0,Chevrolet,Suburban 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.5975,0.0,21.1936,0.0,Standard Sport Utility Vehicle 4WD,2013,-11000,,,,,,,,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,615,596,596.0,615.0,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,584,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,32514,0,0,GMC,Yukon XL 1500 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,FFV,E85,320,,GMX +27.4675,0.0,0.0,0.0,10,10.3127,0,0.0,0.0,0.0,0.0,731,-1,0.0,731.0,12,12.1148,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,593,,1,4600,0,Regular,Regular Gasoline,1,-1,15,15.405,0,0.0,0.0,0.0,0.0,0,0,32515,0,0,GMC,Yukon XL 2500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.5975,0.0,21.1936,0.0,Standard Sport Utility Vehicle 4WD,2013,-11000,,,,,,,,,GMX +6.359254842857142,0.37200000000000005,0.0,6.0,20,19.7,55,54.6,0.0,61.7,0.62,169,-1,0.0,169.0,20,20.4572,54,54.3,62.1,0.0,0.62,4,2.0,Rear-Wheel Drive,1,PHEV,-1,3000,1100,Premium Gas or Electricity,Premium Gasoline,-1,-1,21,21.4,54,53.9,0.0,62.5,0.62,0,0,32516,0,7,Fisker,Karma,Y,false,0,89,0,0.0,33.7533,0.0,32.886,Auto(A1),24.896,78.0,29.62,77.0,Subcompact Cars,2012,3000,,,T,,Plug-in Hybrid,Electricity,33,2 @ 150 kw (300 kw),FSK +14.327048,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,395,-1,0.0,395.0,23,22.6,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,221,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,32517,0,0,Porsche,Boxster S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,38.5,0.0,Two Seaters,2013,-1000,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,24.1,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,222,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8,0,0.0,0.0,0.0,0.0,0,0,32518,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),26.3,0.0,41.9,0.0,Two Seaters,2013,-500,,,,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,16.5428,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.3963,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,50,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5778,0,0.0,0.0,0.0,0.0,0,0,32519,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6,0.0,34.3,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,3252,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1987,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.9,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,51,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.3,0,0.0,0.0,0.0,0.0,0,0,32520,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,16.5428,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.3963,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,52,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5778,0,0.0,0.0,0.0,0.0,0,0,32521,5,0,Porsche,911 Turbo S,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.6,0.0,34.3,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,15.9,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,53,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.3,0,0.0,0.0,0.0,0.0,0,0,32522,5,0,Porsche,911 Turbo S Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7489,0.0,33.8482,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.4,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,19.1,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,54,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9,0,0.0,0.0,0.0,0.0,0,0,32523,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,33.2,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,16.1,0,0.0,0.0,0.0,0.0,471,-1,0.0,471.0,19,18.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,55,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8,0,0.0,0.0,0.0,0.0,0,0,32524,5,0,Porsche,911 Turbo Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.1,0.0,Minicompact Cars,2013,-3750,,,T,,,,,,PRX +9.976196,0.0,0.0,0.0,29,29.2028,0,0.0,0.0,0.0,0.0,270,-1,0.0,270.0,33,32.7969,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,239,,8,1650,0,Regular,Regular Gasoline,8,-1,39,38.6037,0,0.0,0.0,0.0,0.0,15,85,32525,0,12,Ford,Fiesta FWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.1,0.0,54.9,0.0,Subcompact Cars,2013,3750,,,,,,,,,FMX +9.976196,0.0,0.0,0.0,29,29.0777,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.6775,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,240,,8,1650,0,Regular,Regular Gasoline,8,-1,39,38.5034,0,0.0,0.0,0.0,0.0,15,85,32526,0,12,Ford,Fiesta FWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.9197,0.0,54.7494,0.0,Subcompact Cars,2013,3750,,,,,,,,,FMX +9.976196,0.0,0.0,0.0,29,29.225,0,0.0,0.0,0.0,0.0,267,-1,0.0,267.0,33,33.1013,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,241,,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.5057,0,0.0,0.0,0.0,0.0,15,85,32527,0,12,Ford,Fiesta SFE FWD,Y,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.132,0.0,56.2565,0.0,Subcompact Cars,2013,3750,,,,,,,,,FMX +13.1844,4.160002,0.0,0.0,21,20.7706,15,14.7684,0.0,0.0,0.0,361,355,355.0,361.0,25,24.5602,18,17.5507,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,212,SIDI; FFV,6,2200,2550,Gasoline or E85,Regular Gasoline,6,6,32,31.6089,23,22.801,0.0,0.0,0.0,0,0,32528,0,14,Buick,Verano,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.3,18.7,44.5,32.1,Compact Cars,2013,1000,,,,,FFV,E85,290,,GMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.894,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,192,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,32529,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.4,0.0,Compact Cars,2013,-1000,,,,,,,,,GMX +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,88,3253,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Compact Cars,1987,1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.6486,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6276,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,13,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.5366,0,0.0,0.0,0.0,0.0,15,90,32530,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.8674,0.0,42.9242,0.0,Compact Cars,2013,1500,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,23,22.5587,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6284,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,14,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.7413,0,0.0,0.0,0.0,0.0,15,90,32531,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.7437,0.0,43.2247,0.0,Compact Cars,2013,1500,,,,,,,,,TYX +10.987,0.0,0.0,0.0,27,26.8406,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.2279,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,5,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.7407,0,0.0,0.0,0.0,0.0,0,0,32532,0,12,Subaru,Impreza AWD,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.7227,0.0,50.6177,0.0,Compact Cars,2013,2750,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,19,18.6611,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9762,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,9,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7253,0,0.0,0.0,0.0,0.0,0,0,32533,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.456,0.0,34.4678,0.0,Compact Cars,2013,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.7268,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9529,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,11,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.6348,0,0.0,0.0,0.0,0.0,0,0,32534,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8845,0.0,31.4599,0.0,Compact Cars,2013,-3750,,,T,,,,,,FJX +15.689436,4.994,0.0,0.0,17,17.1922,13,12.5543,0.0,0.0,0.0,431,421,421.0,431.0,21,20.6121,15,14.8002,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,157,SIDI; FFV,5,2600,3050,Gasoline or E85,Regular Gasoline,5,5,27,27.2332,19,18.9417,0.0,0.0,0.0,0,0,32535,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5,15.7,38.1,26.5,Midsize Cars,2013,-1000,,,,,FFV,E85,280,,GMX +14.964294,4.994,0.0,0.0,18,18.32,13,12.7443,0.0,0.0,0.0,407,412,412.0,407.0,22,21.8387,15,15.1872,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,218,SIDI; FFV; Sport Transmission,5,2500,3050,Gasoline or E85,Regular Gasoline,5,5,29,28.538,20,19.8339,0.0,0.0,0.0,0,0,32536,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,16.0,40.0,27.8,Midsize Cars,2013,-500,,,T,,FFV,E85,280,,GMX +13.73375,4.404708,0.0,0.0,20,19.8102,15,14.6595,0.0,0.0,0.0,373,365,365.0,373.0,24,23.8095,17,17.2549,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,255,SIDI; FFV,6,2300,2700,Gasoline or E85,Regular Gasoline,6,6,32,31.6089,22,22.0197,0.0,0.0,0.0,0,0,32537,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.0,18.5,44.5,31.0,Midsize Cars,2013,500,,,T,,FFV,E85,320,,GMX +14.964294,4.994,0.0,0.0,18,18.32,13,12.7443,0.0,0.0,0.0,407,412,412.0,407.0,22,21.8387,15,15.1872,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,256,SIDI; FFV,5,2500,3050,Gasoline or E85,Regular Gasoline,5,5,29,28.538,20,19.8339,0.0,0.0,0.0,0,0,32538,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,16.0,40.0,27.8,Midsize Cars,2013,-500,,,T,,FFV,E85,280,,GMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.894,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,189,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,32539,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.4,0.0,Midsize Cars,2013,-1000,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56041,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,89,3254,13,14,Mazda,626,N,false,88,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1987,-500,,2MODE,,,,,,, +10.613442000000001,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.5758,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,125,,8,1800,0,Regular,Regular Gasoline,8,-1,39,38.637,0,0.0,0.0,0.0,0.0,0,0,32540,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.7,0.0,54.95,0.0,Midsize Cars,2013,3000,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.2989,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,126,,8,1850,0,Regular,Regular Gasoline,8,-1,38,37.6703,0,0.0,0.0,0.0,0.0,0,0,32541,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,53.5,0.0,Midsize Cars,2013,2750,,,T,,,,,,GMX +9.976196,0.0,0.0,0.0,28,28.0887,0,0.0,0.0,0.0,0.0,268,-1,0.0,268.0,33,32.9486,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,129,,8,1650,0,Regular,Regular Gasoline,8,-1,42,41.7849,0,0.0,0.0,0.0,0.0,0,0,32542,0,16,Chevrolet,Cruze Eco,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.5,0.0,59.7,0.0,Midsize Cars,2013,3750,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,26,25.8335,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.0783,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,132,,8,1850,0,Regular,Regular Gasoline,8,-1,38,37.6369,0,0.0,0.0,0.0,0.0,0,0,32543,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,53.45,0.0,Midsize Cars,2013,2750,,,T,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,28.9932,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,150,,8,1900,0,Regular,Regular Gasoline,8,-1,36,36.2655,0,0.0,0.0,0.0,0.0,0,0,32544,0,16,Chevrolet,Cruze,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,51.4,0.0,Midsize Cars,2013,2500,,,,,,,,,GMX +12.19557,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.642,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,151,,7,2050,0,Regular,Regular Gasoline,7,-1,35,34.7202,0,0.0,0.0,0.0,0.0,0,0,32545,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,49.1,0.0,Midsize Cars,2013,1750,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.8178,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,190,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.4756,0,0.0,0.0,0.0,0.0,0,0,32546,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.0,0.0,Small Station Wagons,2013,-1000,,,,,,,,,GMX +10.987,0.0,0.0,0.0,27,26.8124,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.2013,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,6,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.7191,0,0.0,0.0,0.0,0.0,0,0,32547,0,23,Subaru,Impreza Wagon AWD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.6827,0.0,50.5856,0.0,Small Station Wagons,2013,2750,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,19,18.6611,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9762,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,10,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7253,0,0.0,0.0,0.0,0.0,0,0,32548,0,23,Subaru,Impreza Wagon AWD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.456,0.0,34.4678,0.0,Small Station Wagons,2013,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.7268,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9529,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,12,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.6348,0,0.0,0.0,0.0,0.0,0,0,32549,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8845,0.0,31.4599,0.0,Small Station Wagons,2013,-3750,,,T,,,,,,FJX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56041,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,89,3255,13,14,Mazda,626,Y,false,88,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,14.8,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.2,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,7,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6,0,0.0,0.0,0.0,0.0,0,0,32550,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.3,0.0,29.9,0.0,Standard Sport Utility Vehicle 4WD,2013,-5750,,,T,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,22.5796,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,16,,6,2400,0,Regular,Regular Gasoline,6,-1,26,26.1148,0,0.0,0.0,0.0,0.0,0,0,32551,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7,0.0,39.9,0.0,Small Sport Utility Vehicle 2WD,2013,0,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,22,21.5051,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,18,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,32552,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.3,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,22,22.4341,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,17,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.6866,0,0.0,0.0,0.0,0.0,0,0,32553,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7,0.0,39.6,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.8746,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,19,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1631,0,0.0,0.0,0.0,0.0,0,0,32554,0,0,Toyota,Venza AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,35.1,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,TYX +17.337486000000002,5.348574,0.0,0.0,17,16.5226,12,12.2162,0.0,0.0,0.0,462,438,438.0,462.0,19,19.198,14,14.2357,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,158,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,24,23.9348,18,17.8403,0.0,0.0,0.0,0,0,32555,0,0,Cadillac,SRX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.615,15.242,33.3283,24.8419,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,FFV,E85,300,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8937,12,11.7604,0.0,0.0,0.0,482,459,459.0,482.0,18,18.3611,14,13.5632,0.0,0.0,0.0,6,3.6,All-Wheel Drive,224,SIDI; FFV,4,3050,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.6608,17,16.6902,0.0,0.0,0.0,0,0,32556,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7874,14.6416,31.4971,23.1983,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,FFV,E85,300,,GMX +0.228,0.0,0.0,12.0,88,87.9,0,0.0,0.0,38.0,0.0,0,-1,0.0,0.0,89,88.8,0,0.0,38.0,0.0,0.0,,,Rear-Wheel Drive,1,,-1,700,0,Electricity,Electricity,-1,-1,90,90.1,0,0.0,0.0,37.0,0.0,26,94,32557,0,0,Tesla,Model S,Y,false,0,0,265,262.69,0.0,266.78,0.0,Automatic (A1),110.4,0.0,113.2,0.0,Large Cars,2012,8500,,,,,EV,,,260 kW AC Induction,TSL +12.657024,0.0,0.0,0.0,22,22.407,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6515,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,67,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.1674,0,0.0,0.0,0.0,0.0,0,0,32558,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.4068,0.0,42.2579,0.0,Two Seaters,2013,500,,,T,,,,,,ADX +12.657024,0.0,0.0,0.0,22,22.4541,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.04,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,233,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.3554,0,0.0,0.0,0.0,0.0,0,0,32559,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.6055,0.0,45.5522,0.0,Two Seaters,2013,500,,,T,,,,,,MBX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56040,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,89,3256,13,14,Mazda,626,N,false,88,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1987,-500,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,22.2425,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.8049,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,41,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.0861,0,0.0,0.0,0.0,0.0,0,0,32560,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.624,0.0,43.9699,0.0,Subcompact Cars,2013,500,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,18.117,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.419,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,43,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.558,0,0.0,0.0,0.0,0.0,0,0,32561,13,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.4,0.0,35.8,0.0,Subcompact Cars,2013,-2250,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.6699,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6333,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,44,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.953,0,0.0,0.0,0.0,0.0,0,0,32562,10,0,Audi,S5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.1,0.0,34.7,0.0,Subcompact Cars,2013,-2250,,,,S,,,,,ADX +16.4805,0.0,0.0,0.0,17,17.0438,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.1767,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,46,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.023,0,0.0,0.0,0.0,0.0,0,0,32563,13,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.4,0.0,Subcompact Cars,2013,-3000,,,,S,,,,,ADX +18.304342000000002,0.0,0.0,0.0,16,15.7409,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,18,18.4339,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,49,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.3075,0,0.0,0.0,0.0,0.0,0,0,32564,13,0,Audi,RS 5,N,false,84,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.1,0.0,30.0,0.0,Subcompact Cars,2013,-4750,,,,,,,,,ADX +12.657024,0.0,0.0,0.0,22,22.407,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6515,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,66,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.1674,0,0.0,0.0,0.0,0.0,0,0,32565,13,0,Audi,TT Coupe quattro,N,false,74,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.4068,0.0,42.2579,0.0,Subcompact Cars,2013,500,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,18,17.751,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,20,20.4751,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,69,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2021,0,0.0,0.0,0.0,0.0,13,74,32566,0,0,Audi,TT RS Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.2,0.0,34.2,0.0,Subcompact Cars,2013,-3000,,,T,,,,,,ADX +9.690534,0.0,0.0,0.0,32,31.6092,0,0.0,0.0,0.0,0.0,259,-1,0.0,259.0,34,34.223,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,291,,9,1600,0,Regular,Regular Gasoline,9,-1,38,38.0707,0,0.0,0.0,0.0,0.0,0,0,32567,0,11,Chevrolet,Spark,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.6,0.0,54.1,0.0,Subcompact Cars,2013,4000,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,531,-1,0.0,531.0,17,16.6647,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.7555,0,0.0,0.0,0.0,0.0,0,0,32568,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,30.2,0.0,Subcompact Cars,2013,-5750,G,,,S,,,,,RII +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.1798,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.5931,0,0.0,0.0,0.0,0.0,0,0,32569,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.5,0.0,31.4,0.0,Subcompact Cars,2013,-4750,,,,S,,,,,RII +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3257,0,15,Mercedes-Benz,260E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,30.0,0.0,Compact Cars,1987,-3750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.7634,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,24.8658,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,21,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.1121,0,0.0,0.0,0.0,0.0,0,0,32570,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),27.5,0.0,41.5,0.0,Subcompact Cars,2013,0,,,T,,,,,,VWX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,21.9212,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,69,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,32571,13,0,Volvo,C70 FWD,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S5),23.5,0.0,38.9,0.0,Subcompact Cars,2013,-500,,,T,,,,,,VVX +12.657024,0.0,0.0,0.0,22,22.2425,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.8049,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,40,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.0861,0,0.0,0.0,0.0,0.0,0,0,32572,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.624,0.0,43.9699,0.0,Compact Cars,2013,500,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,18.117,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.419,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,42,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.558,0,0.0,0.0,0.0,0.0,0,0,32573,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.4,0.0,35.8,0.0,Compact Cars,2013,-2250,,,,S,,,,,ADX +16.4805,0.0,0.0,0.0,17,17.0438,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.1767,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,45,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.023,0,0.0,0.0,0.0,0.0,0,0,32574,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.4,0.0,Compact Cars,2013,-3000,,,,S,,,,,ADX +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,276,,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,32575,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Compact Cars,2013,3750,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.898,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,282,,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.2695,0,0.0,0.0,0.0,0.0,0,0,32576,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),35.1,0.0,52.9,0.0,Compact Cars,2013,3000,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,0,0,32577,0,16,Hyundai,Veloster,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),37.6186,0.0,57.1472,0.0,Compact Cars,2013,3000,,,,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,0,0,32578,0,16,Hyundai,Veloster,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.1,0.0,56.5,0.0,Compact Cars,2013,3000,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,28.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,31,31.0,0,0.0,0.0,0.0,0.0,0,0,32579,0,16,Hyundai,Veloster,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.1,0.0,52.0,0.0,Compact Cars,2013,2250,,,T,,,,,,HYX +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20050,"(DSL,TRBO) (NO-CAT)",-1,2450,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3258,0,15,Mercedes-Benz,300D,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,38.0,0.0,Compact Cars,1987,-250,,,T,,Diesel,,,, +11.75609,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,28.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,32,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.0,0,0.0,0.0,0.0,0.0,0,0,32580,0,16,Hyundai,Veloster,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.9,0.0,53.2,0.0,Compact Cars,2013,2250,,,T,,,,,,HYX +11.360558000000001,0.0,0.0,0.0,25,25.3353,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,28.7596,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,22,,8,1900,0,Regular,Regular Gasoline,8,-1,34,34.4508,0,0.0,0.0,0.0,0.0,0,0,32581,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.6,0.0,48.7,0.0,Compact Cars,2013,2500,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,24,24.4771,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.6202,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,23,,7,1950,0,Regular,Regular Gasoline,7,-1,33,32.762,0,0.0,0.0,0.0,0.0,0,0,32582,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.4,0.0,46.2,0.0,Compact Cars,2013,2250,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,23,22.8679,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.8931,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.8872,0,0.0,0.0,0.0,0.0,0,0,32583,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.1695,0.0,43.4389,0.0,Compact Cars,2013,1500,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.8269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,28,,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.8127,0,0.0,0.0,0.0,0.0,0,0,32584,12,0,Kia,Forte Koup,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Compact Cars,2013,1500,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,25,24.5578,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,28,27.9251,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,3,,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.5471,0,0.0,0.0,0.0,0.0,0,0,32585,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5125,0.0,47.3608,0.0,Compact Cars,2013,2250,,,,,,,,,FJX +12.19557,0.0,0.0,0.0,24,24.2237,0,0.0,0.0,0.0,0.0,331,-1,0.0,331.0,27,27.3624,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,22,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,33,32.5108,0,0.0,0.0,0.0,0.0,15,94,32586,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),29.9333,0.0,43.5096,0.0,Compact Cars,2013,750,,,T,,,,,,VWX +14.964294,0.0,0.0,0.0,19,19.278,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.0917,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,57,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.8882,0,0.0,0.0,0.0,0.0,15,94,32587,0,0,Volkswagen,Golf R,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.9,0.0,37.1,0.0,Compact Cars,2013,-1750,,,T,,,,,,VWX +15.689436,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.5531,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1,0,0.0,0.0,0.0,0.0,0,0,32588,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,34.6,0.0,Compact Cars,2013,-1000,,,T,,,,,,VVX +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.2911,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,70,,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.3,0,0.0,0.0,0.0,0.0,15,89,32589,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),25.8,0.0,41.8,0.0,Compact Cars,2013,500,,,T,,,,,,VVX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3259,0,15,Mercedes-Benz,300E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1987,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,21.2,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,24,24.2121,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,73,,6,2300,0,Regular,Regular Gasoline,6,-1,29,29.3,0,0.0,0.0,0.0,0.0,15,89,32590,0,0,Volvo,C30 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.5,0.0,40.4,0.0,Compact Cars,2013,500,,,T,,,,,,VVX +13.73375,0.0,0.0,0.0,21,20.7,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.1705,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,74,,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.4,0,0.0,0.0,0.0,0.0,0,0,32591,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),26.5,0.0,42.4,0.0,Compact Cars,2013,500,,,T,,,,,,VVX +14.327048,0.0,0.0,0.0,20,20.1,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2915,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,75,,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.9,0,0.0,0.0,0.0,0.0,0,0,32592,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),25.5,0.0,39.7,0.0,Compact Cars,2013,0,,,T,,,,,,VVX +13.73375,0.0,0.0,0.0,20,20.2634,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.781,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,642,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.1854,0,0.0,0.0,0.0,0.0,0,0,32593,0,16,BMW,640i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6124,0.0,42.4092,0.0,Compact Cars,2013,-500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9323,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,115,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,32594,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,37.3,0.0,Midsize Cars,2013,-1000,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.8051,0,0.0,0.0,0.0,0.0,463,-1,0.0,463.0,19,19.1278,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,295,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,26,25.7423,0,0.0,0.0,0.0,0.0,0,0,32595,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6712,0.0,35.9375,0.0,Midsize Cars,2013,-2500,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.5794,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,296,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,32596,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,38.3,0.0,Midsize Cars,2013,-500,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5492,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,309,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.9236,0,0.0,0.0,0.0,0.0,0,0,32597,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Midsize Cars,2013,-1000,,,,,,,,,GMX +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,277,,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,32598,0,19,Chevrolet,Sonic 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Midsize Cars,2013,3750,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.898,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,283,,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.2695,0,0.0,0.0,0.0,0.0,0,0,32599,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),35.1,0.0,52.9,0.0,Midsize Cars,2013,3000,,,T,,,,,,GMX +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,326,0,0,Mercury,Lynx,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1985,3250,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3260,15,0,Mercedes-Benz,560SEC,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Compact Cars,1987,-11250,T,,,,,,,, +12.19557,0.0,0.0,0.0,24,23.6,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.3,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,711,,7,2050,0,Regular,Regular Gasoline,7,-1,34,33.6,0,0.0,0.0,0.0,0.0,13,97,32600,0,0,Dodge,Dart,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2,0.0,47.5,0.0,Midsize Cars,2013,1750,,,,,,,,,CRX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,30.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,27,,8,1850,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,23,96,32601,0,0,Hyundai,Elantra GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.7907,0.0,54.9815,0.0,Midsize Cars,2013,2750,,,,,,,,,HYX +10.987,0.0,0.0,0.0,26,26.0,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,30.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,28,,8,1850,0,Regular,Regular Gasoline,8,-1,37,37.0,0,0.0,0.0,0.0,0.0,23,96,32602,0,0,Hyundai,Elantra GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.7508,0.0,54.9265,0.0,Midsize Cars,2013,2750,,,,,,,,,HYX +12.657024,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.2945,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,34,33.6412,0,0.0,0.0,0.0,0.0,0,0,32603,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.4,0.0,47.5,0.0,Midsize Cars,2013,1500,,,T,,,,,,KMX +11.75609,0.0,0.0,0.0,24,23.6641,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,28,27.6623,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,18,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.8613,0,0.0,0.0,0.0,0.0,0,0,32604,0,15,Kia,Optima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2699,0.0,49.3096,0.0,Midsize Cars,2013,2250,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5268,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.5182,0,0.0,0.0,0.0,0.0,0,0,32605,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2,0.0,48.8,0.0,Midsize Cars,2013,2250,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,26,25.5004,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.2116,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,,8,1900,0,Regular,Regular Gasoline,8,-1,36,35.5321,0,0.0,0.0,0.0,0.0,20,97,32606,0,15,Kia,Forte,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,32.8317,0.0,50.3071,0.0,Midsize Cars,2013,2500,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,25,25.0498,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,29,28.5564,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,21,,8,1900,0,Regular,Regular Gasoline,8,-1,34,34.4508,0,0.0,0.0,0.0,0.0,20,97,32607,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,48.7,0.0,Midsize Cars,2013,2500,,,,,,,,,KMX +10.987,0.0,0.0,0.0,27,26.7817,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.4356,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,24,,8,1850,0,Regular,Regular Gasoline,8,-1,37,36.5264,0,0.0,0.0,0.0,0.0,0,0,32608,0,15,Kia,Forte Eco,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.6391,0.0,51.7894,0.0,Midsize Cars,2013,2750,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,23,22.8203,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.1505,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.8275,0,0.0,0.0,0.0,0.0,20,97,32609,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.1038,0.0,44.8218,0.0,Midsize Cars,2013,1500,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3261,0,14,Mcevoy Motors,240 DL/240 GL Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.8269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.8127,0,0.0,0.0,0.0,0.0,20,97,32610,0,15,Kia,Forte,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5,0.0,44.8,0.0,Midsize Cars,2013,1500,,,,,,,,,KMX +10.613442000000001,0.0,0.0,0.0,27,27.1885,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,31.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,8,1800,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,32611,0,15,Nissan,Altima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S6),35.2165,0.0,56.1239,0.0,Midsize Cars,2013,3000,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,22.1259,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,25.3673,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.9,0,0.0,0.0,0.0,0.0,0,0,32612,0,15,Nissan,Altima,Y,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.1494,0.0,43.4577,0.0,Midsize Cars,2013,1000,,,,,,,,,NSX +12.19557,0.0,0.0,0.0,24,23.7854,0,0.0,0.0,0.0,0.0,331,-1,0.0,331.0,27,26.7652,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,50,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,31.6043,0,0.0,0.0,0.0,0.0,0,0,32613,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S6),29.5139,0.0,45.1099,0.0,Compact Cars,2013,750,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,22,21.8931,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.6912,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,51,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.6043,0,0.0,0.0,0.0,0.0,0,0,32614,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5556,0.0,44.9945,0.0,Compact Cars,2013,500,,,T,,,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,30.4633,0,0.0,0.0,0.0,0.0,290,-1,0.0,290.0,34,34.1916,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,62,,9,1750,0,Diesel,Diesel,8,-1,40,40.2057,0,0.0,0.0,0.0,0.0,0,0,32615,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.9,0.0,56.8,0.0,Midsize Cars,2013,3250,,,T,,Diesel,,,,VWX +14.327048,0.0,0.0,0.0,20,19.7174,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.6868,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,63,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.8048,0,0.0,0.0,0.0,0.0,0,0,32616,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S6),23.9,0.0,37.3,0.0,Midsize Cars,2013,-1000,,,,,,,,,VWX +10.905012000000001,0.0,0.0,0.0,31,30.8024,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,35,35.1943,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64,,9,1700,0,Diesel,Diesel,8,-1,43,42.6219,0,0.0,0.0,0.0,0.0,0,0,32617,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,62.8,0.0,Midsize Cars,2013,3500,,,T,,Diesel,,,,VWX +15.689436,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.5531,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1,0,0.0,0.0,0.0,0.0,0,0,32618,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,34.6,0.0,Midsize Cars,2013,-1000,,,T,,,,,,VVX +16.4805,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.8768,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,117,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,32619,0,18,Cadillac,XTS AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.0,0.0,Large Cars,2013,-1750,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49050,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3262,0,12,Mitsubishi,Galant,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,34.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.8146,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,24.1394,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.9953,0,0.0,0.0,0.0,0.0,0,0,32620,20,0,Audi,A3,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.3,0.0,40.3,0.0,Small Station Wagons,2013,-500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,21.3388,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,24,23.8286,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,27.7919,0,0.0,0.0,0.0,0.0,0,0,32621,20,0,Audi,A3,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),26.6,0.0,38.2,0.0,Small Station Wagons,2013,-500,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9323,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,116,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.0,0,0.0,0.0,0.0,0.0,0,0,32622,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3,0.0,37.3,0.0,Small Station Wagons,2013,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.6644,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,297,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,32623,0,28,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,36.5,0.0,Small Station Wagons,2013,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5492,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,310,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.9236,0,0.0,0.0,0.0,0.0,0,0,32624,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0,0.0,36.2,0.0,Small Station Wagons,2013,-1000,,,,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.5033,0,0.0,0.0,0.0,0.0,311,-1,0.0,311.0,28,27.8094,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,4,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.301,0,0.0,0.0,0.0,0.0,0,0,32625,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4366,0.0,46.9966,0.0,Small Station Wagons,2013,2250,,,,,,,,,FJX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,500,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,32626,0,0,Chevrolet,Silverado 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Pickup Trucks 2WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,501,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,32627,0,0,GMC,Sierra 15 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Pickup Trucks 2WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.7457,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.0219,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,502,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.825,0,0.0,0.0,0.0,0.0,0,0,32628,0,0,Chevrolet,Silverado 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.6,0.0,Standard Pickup Trucks 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.7457,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.0219,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,503,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.825,0,0.0,0.0,0.0,0.0,0,0,32629,0,0,GMC,Sierra 15 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.6,0.0,Standard Pickup Trucks 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49050,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3263,0,12,Mitsubishi,Galant,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.1488,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.0791,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.2617,0,0.0,0.0,0.0,0.0,0,0,32630,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.8,0.0,Small Sport Utility Vehicle 2WD,2013,-2250,,,T,,,,,,VWX +14.327048,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.7606,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,68,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,32631,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0779,0.0,36.3534,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,T,,,,,,VWX +16.612308000000002,0.0,0.0,0.0,20,19.649,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,23,22.9829,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,54,,6,2600,0,Diesel,Diesel,5,-1,29,28.9961,0,0.0,0.0,0.0,0.0,0,0,32632,0,0,Volkswagen,Touareg,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,41.0,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,T,,Diesel,,,,VWX +14.327048,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,394,-1,0.0,394.0,23,22.5412,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,55,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,26,25.8545,0,0.0,0.0,0.0,0.0,0,0,32633,0,0,Volkswagen,Tiguan 4motion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7924,0.0,36.0745,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,T,,,,,,VWX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,22.9997,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,1,,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2637,0,0.0,0.0,0.0,0.0,0,0,32634,0,0,Acura,RDX 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.229,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,2,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,32635,0,0,Acura,RDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,37.7,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,568,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,32636,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,GMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,379,375,375.0,379.0,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,600,SIDI; FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,32637,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Small Sport Utility Vehicle 4WD,2013,0,,,,,FFV,E85,230,,GMX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,569,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,32638,0,0,GMC,Terrain AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,GMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,379,375,375.0,379.0,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,601,SIDI; FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,32639,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Small Sport Utility Vehicle 4WD,2013,0,,,,,FFV,E85,320,,GMX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3264,13,13,Oldsmobile,Calais,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Compact Cars,1987,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,23.0904,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6376,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,14,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,32640,0,0,Subaru,XV Crosstrek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.4763,0.0,41.6,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,,,,,,,FJX +11.75609,0.0,0.0,0.0,25,24.9813,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.9937,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,15,,7,1950,0,Regular,Regular Gasoline,7,-1,33,32.8327,0,0.0,0.0,0.0,0.0,0,0,32641,0,0,Subaru,XV Crosstrek AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.1042,0.0,46.3045,0.0,Small Sport Utility Vehicle 4WD,2013,2250,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,17,17.3431,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.6605,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,5,2750,0,Regular,Regular Gasoline,5,-1,23,23.4982,0,0.0,0.0,0.0,0.0,0,0,32642,0,37,Volvo,XC70 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7,0.0,32.7,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,T,,,,,,VVX +16.4805,0.0,0.0,0.0,17,17.3431,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.6605,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,5,2750,0,Regular,Regular Gasoline,5,-1,23,23.4982,0,0.0,0.0,0.0,0.0,0,0,32643,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),21.7,0.0,32.7,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,T,,,,,,VVX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,524,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,32644,0,0,Cadillac,Escalade Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Sport Utility Vehicle 2WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,525,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,32645,0,0,Chevrolet,Tahoe Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Sport Utility Vehicle 2WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.7748,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.0782,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,527,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.925,0,0.0,0.0,0.0,0.0,0,0,32646,0,0,GMC,Yukon 1500 Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.8,0.0,32.8,0.0,Standard Sport Utility Vehicle 2WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +17.337486000000002,5.348574,0.0,0.0,17,16.6628,13,12.747,0.0,0.0,0.0,463,441,441.0,463.0,19,19.1516,14,14.4895,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,593,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,23.4287,17,17.396,0.0,0.0,0.0,0,0,32647,0,0,Jeep,Grand Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,15.7,32.6,24.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,FFV,E85,350,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7559,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,61,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.5458,0,0.0,0.0,0.0,0.0,0,0,32648,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.2813,0.0,29.852,0.0,Standard Sport Utility Vehicle 4WD,2013,-4750,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3314,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,506,,5,2600,0,Regular,Regular Gasoline,5,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,32649,0,0,Cadillac,Escalade Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4150,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3265,13,13,Oldsmobile,Calais,Y,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Compact Cars,1987,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,19.7457,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.0219,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,507,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.825,0,0.0,0.0,0.0,0.0,0,0,32650,0,0,Chevrolet,Tahoe Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.7,0.0,32.6,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3314,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,504,,5,2600,0,Regular,Regular Gasoline,5,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,32651,0,0,GMC,Yukon 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +15.689436,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3314,0,0.0,0.0,0.0,0.0,8,6.0,4-Wheel Drive,505,,5,2600,0,Regular,Regular Gasoline,5,-1,23,23.2895,0,0.0,0.0,0.0,0.0,0,0,32652,0,0,GMC,Yukon Denali 1500 Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.2,0.0,32.4,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,,,Hybrid,,,288V Ni-MH,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.1315,12,12.2793,0.0,0.0,0.0,479,458,458.0,479.0,19,18.5353,14,13.936,0.0,0.0,0.0,6,3.6,4-Wheel Drive,591,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.6628,17,16.6879,0.0,0.0,0.0,0,0,32653,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.1,31.5,23.0,Standard Sport Utility Vehicle 4WD,2013,-2500,,,,,FFV,E85,350,,CRX +23.534154,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,646,-1,0.0,646.0,14,13.6655,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,4,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.1129,0,0.0,0.0,0.0,0.0,0,0,32654,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.4115,0.0,23.6028,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,,S,,,,,LRX +3.092538803571429,0.21000000000000002,0.0,4.0,35,34.9,101,101.43,0.0,33.0,0.68,81,-1,0.0,81.0,37,36.9,98,97.77,35.0,0.0,0.66,4,1.4,Front-Wheel Drive,147,PHEV,10,1650,650,Premium Gas or Electricity,Premium Gasoline,10,-1,40,39.7,93,93.3,0.0,36.0,0.65,18,90,32655,0,0,Chevrolet,Volt,Y,false,0,0,0,0.0,39.9196,0.0,36.302,Automatic (variable gear ratios),47.6,144.9,53.5,133.3,Compact Cars,2013,7250,,,,,Plug-in Hybrid,Electricity,38,111 kW,GMX +32.961,0.0,0.0,0.0,8,8.4232,0,0.0,0.0,0.0,0.0,847,-1,0.0,847.0,10,10.4424,0,0.0,0.0,0.0,0.0,16,8.0,All-Wheel Drive,88,,1,6050,0,Premium,Premium Gasoline,1,-1,15,14.7698,0,0.0,0.0,0.0,0.0,0,0,32656,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AM-S7),10.0,0.0,17.9,0.0,Two Seaters,2013,-18250,G,,T,,,,,,BGT +20.589638,0.0,0.0,0.0,13,13.4655,0,0.0,0.0,0.0,0.0,562,-1,0.0,562.0,16,15.718,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,30,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7573,0,0.0,0.0,0.0,0.0,0,0,32657,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),16.1,0.0,25.4,0.0,Two Seaters,2013,-6750,G,,,,,,,,NLX +20.589638,0.0,0.0,0.0,13,13.3954,0,0.0,0.0,0.0,0.0,564,-1,0.0,564.0,16,15.6701,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,31,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7741,0,0.0,0.0,0.0,0.0,0,0,32658,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),16.0,0.0,25.4,0.0,Two Seaters,2013,-6750,G,,,,,,,,NLX +21.974,0.0,0.0,0.0,12,12.0883,0,0.0,0.0,0.0,0.0,634,-1,0.0,634.0,15,14.7021,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,32,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,20,19.9831,0,0.0,0.0,0.0,0.0,0,0,32659,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2013,-8000,G,,,,,,,,NLX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3266,13,13,Oldsmobile,Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,11.5388,0,0.0,0.0,0.0,0.0,626,-1,0.0,626.0,14,14.1465,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,33,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,20,19.5451,0,0.0,0.0,0.0,0.0,0,0,32660,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2013,-9500,G,,,,,,,,NLX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,356,-1,0.0,356.0,25,24.5032,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,7,,6,2400,0,Premium,Premium Gasoline,6,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,32661,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Two Seaters,2013,0,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,23.7609,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,8,,6,2500,0,Premium,Premium Gasoline,6,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,32662,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2013,-500,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,21,20.6175,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2787,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9,,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.6389,0,0.0,0.0,0.0,0.0,0,0,32663,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0922,0.0,38.6899,0.0,Two Seaters,2013,-1000,,,,,,,,,TKX +17.337486000000002,0.0,0.0,0.0,16,15.9541,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9679,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,226,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.662,0,0.0,0.0,0.0,0.0,0,0,32664,0,0,Mercedes-Benz,SL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.7882,0.0,32.1801,0.0,Two Seaters,2013,-3750,,,T,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.0172,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.1649,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,238,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.786,0,0.0,0.0,0.0,0.0,0,0,32665,0,0,Mercedes-Benz,SLK55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.9249,0.0,38.0547,0.0,Two Seaters,2013,-1750,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,18.8024,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,22,21.5902,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,56,,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.3688,0,0.0,0.0,0.0,0.0,0,0,32666,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6451,0.0,36.8451,0.0,Two Seaters,2013,-1750,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.9125,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6822,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,57,,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.5017,0,0.0,0.0,0.0,0.0,0,0,32667,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.4567,0.0,35.5894,0.0,Two Seaters,2013,-2250,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.9884,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5284,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,58,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.8103,0,0.0,0.0,0.0,0.0,0,0,32668,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.5578,0.0,34.5904,0.0,Two Seaters,2013,-2250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,443,-1,0.0,443.0,20,20.0685,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,59,,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.4704,0,0.0,0.0,0.0,0.0,0,0,32669,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.1,0.0,Two Seaters,2013,-3000,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,3267,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1987,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,515,-1,0.0,515.0,17,17.292,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,32670,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,30.1,0.0,Minicompact Cars,2013,-5750,,,,S,,,,,JCX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.0212,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.2443,0,0.0,0.0,0.0,0.0,0,0,32671,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4283,0.0,30.8503,0.0,Minicompact Cars,2013,-4750,,,,,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,15.8721,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.5914,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,32672,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7312,0.0,32.921,0.0,Minicompact Cars,2013,-3750,,,,,,,,,JCX +18.304342000000002,0.0,0.0,0.0,15,15.1397,0,0.0,0.0,0.0,0.0,508,-1,0.0,508.0,18,17.5194,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,10,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,32673,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8,0.0,30.1,0.0,Minicompact Cars,2013,-4750,,,,S,,,,,JCX +12.657024,0.0,0.0,0.0,24,23.6355,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,26.3554,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,36,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,30.6684,0,0.0,0.0,0.0,0.0,0,0,32674,10,0,Audi,A5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AV-S8),30.1185,0.0,44.4328,0.0,Subcompact Cars,2013,500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,20,20.3576,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.7508,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,38,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8271,0,0.0,0.0,0.0,0.0,0,0,32675,12,0,Audi,A5 quattro,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6856,0.0,40.5676,0.0,Subcompact Cars,2013,-500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,20,20.3576,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.7508,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,39,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8271,0,0.0,0.0,0.0,0.0,0,0,32676,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6856,0.0,40.5676,0.0,Subcompact Cars,2013,-500,,,T,,,,,,ADX +10.283832,0.0,0.0,0.0,28,28.2983,0,0.0,0.0,0.0,0.0,279,-1,0.0,279.0,32,31.8011,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,294,,8,1700,0,Regular,Regular Gasoline,8,-1,37,37.47,0,0.0,0.0,0.0,0.0,0,0,32677,0,11,Chevrolet,Spark,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.8,0.0,53.2,0.0,Subcompact Cars,2013,3500,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.4442,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,73,SIDI; PZEV(SULEV) emissions,5,2750,0,Premium,Premium Gasoline,5,-1,29,28.8532,0,0.0,0.0,0.0,0.0,0,0,32678,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.8798,0.0,39.3509,0.0,Subcompact Cars,2013,-1750,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.7685,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,74,SIDI; PZEV(SULEV) emissions,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.2041,0,0.0,0.0,0.0,0.0,0,0,32679,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.2709,0.0,40.4208,0.0,Subcompact Cars,2013,-1000,,,,,,,,,MBX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,3268,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +14.964294,4.679378,0.0,0.0,19,18.8433,14,14.141,0.0,0.0,0.0,404,389,389.0,404.0,22,21.9159,16,16.3725,0.0,0.0,0.0,6,3.5,4-Wheel Drive,75,SIDI; FFV,5,2750,2850,Premium or E85,Premium Gasoline,5,5,27,27.3708,20,20.2849,0.0,0.0,0.0,0,0,32680,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6784,17.5337,38.3206,28.1348,Subcompact Cars,2013,-1750,,,,,FFV,E85,280,,MBX +14.327048,4.404708,0.0,0.0,20,19.5134,15,14.6796,0.0,0.0,0.0,390,373,373.0,390.0,23,22.7116,17,17.0771,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,79,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,28,28.4009,21,21.336,0.0,0.0,0.0,0,0,32681,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.5949,18.244,39.8155,29.5929,Subcompact Cars,2013,-1000,,,,,FFV,E85,290,,MBX +14.964294,4.679378,0.0,0.0,19,19.1415,13,13.4457,0.0,0.0,0.0,398,403,403.0,398.0,22,22.2963,16,15.53,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,82,SIDI; FFV,5,2750,2850,Premium or E85,Premium Gasoline,5,5,28,27.9206,19,19.1604,0.0,0.0,0.0,0,0,32682,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0576,16.5677,39.0902,26.508,Subcompact Cars,2013,-1750,,,,,FFV,E85,280,,MBX +15.689436,0.0,0.0,0.0,17,17.2142,0,0.0,0.0,0.0,0.0,431,-1,0.0,431.0,21,20.5613,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,132,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.9708,0,0.0,0.0,0.0,0.0,0,0,32683,11,0,Mercedes-Benz,E550 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.69,0.0,36.9977,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,16.4501,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.391,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,142,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.8127,0,0.0,0.0,0.0,0.0,0,0,32684,6,0,Mercedes-Benz,E550 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.4837,0.0,35.6565,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,MBX +11.924172,0.0,0.0,0.0,28,27.8088,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4203,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,84,,8,1850,0,Diesel,Diesel,7,-1,41,40.6616,0,0.0,0.0,0.0,0.0,15,85,32685,0,0,Volkswagen,Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.066,0.0,57.9978,0.0,Compact Cars,2013,2750,,,T,,Diesel,,,,VWX +11.924172,0.0,0.0,0.0,28,27.8088,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4203,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,85,,8,1850,0,Diesel,Diesel,7,-1,41,40.6616,0,0.0,0.0,0.0,0.0,0,0,32686,7,0,Volkswagen,Beetle Convertible,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.066,0.0,57.9978,0.0,Subcompact Cars,2013,2750,,,T,,Diesel,,,,VWX +12.657024,0.0,0.0,0.0,24,23.6355,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,26.3554,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,35,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,30.6684,0,0.0,0.0,0.0,0.0,0,0,32687,0,12,Audi,A4,N,false,0,91,0,0.0,0.0,0.0,0.0,Auto(AV-S8),30.1185,0.0,44.4328,0.0,Compact Cars,2013,500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,20,20.3576,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.7508,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,37,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8271,0,0.0,0.0,0.0,0.0,0,0,32688,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6856,0.0,40.5676,0.0,Compact Cars,2013,-500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.0905,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,160,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,32689,0,14,Buick,Verano,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,43.8,0.0,Compact Cars,2013,500,,,T,,,,,,GMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,3269,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.045,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,176,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.5588,0,0.0,0.0,0.0,0.0,0,0,32690,0,10,Cadillac,ATS,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,45.9,0.0,Compact Cars,2013,1500,,,,,,,,,GMX +10.987,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5152,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,285,,8,1850,0,Regular,Regular Gasoline,8,-1,35,34.7875,0,0.0,0.0,0.0,0.0,0,0,32691,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,49.2,0.0,Compact Cars,2013,2750,,,,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4552,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,289,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,32692,0,14,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,50.0,0.0,Compact Cars,2013,2250,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.7627,0,0.0,0.0,0.0,0.0,498,-1,0.0,498.0,18,17.777,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,213,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.6888,0,0.0,0.0,0.0,0.0,0,0,32693,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.8932,0.0,31.612,0.0,Compact Cars,2013,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.8966,0,0.0,0.0,0.0,0.0,506,-1,0.0,506.0,18,17.528,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,215,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.3541,0,0.0,0.0,0.0,0.0,0,0,32694,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9592,0.0,29.6373,0.0,Compact Cars,2013,-4750,,,T,,,,,,MBX +16.4805,0.0,0.0,0.0,17,16.6548,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5292,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,319,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.75,0,0.0,0.0,0.0,0.0,0,0,32695,0,11,Mercedes-Benz,CLS550,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.0313,0.0,36.0373,0.0,Compact Cars,2013,-3000,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,16.4977,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3651,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,320,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5883,0,0.0,0.0,0.0,0.0,0,0,32696,0,11,Mercedes-Benz,CLS550 4matic,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.5145,0.0,33.6744,0.0,Compact Cars,2013,-3750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9445,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,19,18.9658,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,321,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6822,0,0.0,0.0,0.0,0.0,0,0,32697,0,11,Mercedes-Benz,CLS63 AMG,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.183,0.0,32.0357,0.0,Compact Cars,2013,-3750,,,T,,,,,,MBX +11.236239000000001,0.0,0.0,0.0,30,29.8946,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.2046,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,72,,9,1750,0,Diesel,Diesel,8,-1,42,41.5209,0,0.0,0.0,0.0,0.0,15,94,32698,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),39.0935,0.0,59.3437,0.0,Compact Cars,2013,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,81,,9,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,15,94,32699,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.747,0.0,59.8138,0.0,Compact Cars,2013,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,327,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Compact Cars,1985,3250,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,84,3270,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1987,1500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,24.5044,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.5721,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,65,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.5529,0,0.0,0.0,0.0,0.0,0,0,32700,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AV-S8),31.4,0.0,46.9,0.0,Midsize Cars,2013,1250,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,20,20.3576,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.7508,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,70,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8271,0,0.0,0.0,0.0,0.0,0,0,32701,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6856,0.0,40.5676,0.0,Midsize Cars,2013,-500,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.8058,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1758,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,76,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5484,0,0.0,0.0,0.0,0.0,25,94,32702,0,0,Audi,A7 quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5575,0.0,37.3745,0.0,Midsize Cars,2013,-2250,,,,S,,,,,ADX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,22,21.5408,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,77,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,32703,0,16,Audi,A6 quattro,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),23.1369,0.0,38.1,0.0,Midsize Cars,2013,-1750,,,,S,,,,,ADX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,159,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,32704,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,43.8,0.0,Midsize Cars,2013,-500,,,T,,,,,,GMX +16.4805,5.348574,0.0,0.0,17,16.5871,12,12.0196,0.0,0.0,0.0,452,445,445.0,452.0,20,19.6482,14,14.1295,0.0,0.0,0.0,6,3.6,All-Wheel Drive,228,SIDI; FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,4,25,25.3707,18,17.9888,0.0,0.0,0.0,0,0,32705,0,16,Buick,LaCrosse AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),20.7,15.0,35.4,25.1,Midsize Cars,2013,-1750,,,,,FFV,E85,270,,GMX +14.327048,4.404708,0.0,0.0,19,19.4391,15,14.5992,0.0,0.0,0.0,379,361,361.0,379.0,23,23.3584,17,17.2531,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,331,SIDI; FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,31,30.9969,22,22.1813,0.0,0.0,0.0,0,0,32706,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,18.4,43.6,31.2,Midsize Cars,2013,0,,,,,FFV,E85,320,,GMX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.3584,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,339,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.9969,0,0.0,0.0,0.0,0.0,0,0,32707,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,43.6,0.0,Midsize Cars,2013,0,,,,,,,,,GMX +10.987,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5152,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,286,,8,1850,0,Regular,Regular Gasoline,8,-1,35,34.7875,0,0.0,0.0,0.0,0.0,0,0,32708,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,49.2,0.0,Midsize Cars,2013,2750,,,,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4552,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,290,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,32709,0,19,Chevrolet,Sonic 5,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,50.0,0.0,Midsize Cars,2013,2250,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,3271,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1987,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.7212,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.3596,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,15,,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.0159,0,0.0,0.0,0.0,0.0,0,0,32710,0,15,Lexus,ES 350,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2329,0.0,43.628,0.0,Midsize Cars,2013,500,,,,,,,,,TYX +8.24025,0.0,0.0,0.0,40,40.329,0,0.0,0.0,0.0,0.0,224,-1,0.0,224.0,40,39.6307,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,10,1400,0,Regular,Regular Gasoline,10,-1,39,38.8094,0,0.0,0.0,0.0,0.0,0,0,32711,0,12,Lexus,ES 300h,Y,false,0,100,0,0.0,0.0,0.0,0.0,Auto(AV-S6),56.1,0.0,54.2,0.0,Midsize Cars,2013,5000,,,,,Hybrid,,,245V Ni-MH,TYX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.3287,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,77,SIDI; PZEV(SULEV) emissions,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.6518,0,0.0,0.0,0.0,0.0,0,0,32712,0,13,Mercedes-Benz,E350 4matic,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.2722,0.0,40.2399,0.0,Midsize Cars,2013,-1750,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,23,22.814,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,78,SIDI; PZEV(SULEV) emissions,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.371,0,0.0,0.0,0.0,0.0,0,0,32713,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.3377,0.0,42.7428,0.0,Midsize Cars,2013,-1000,,,,,,,,,MBX +16.4805,0.0,0.0,0.0,16,16.3785,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5292,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,307,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,25.5321,0,0.0,0.0,0.0,0.0,0,0,32714,0,13,Mercedes-Benz,E550 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.3219,0.0,34.7374,0.0,Midsize Cars,2013,-3000,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.6903,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6281,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,322,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.1561,0,0.0,0.0,0.0,0.0,0,0,32715,0,13,Mercedes-Benz,E63 AMG,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2491,0.0,31.4864,0.0,Midsize Cars,2013,-3750,,,T,,,,,,MBX +11.236239000000001,0.0,0.0,0.0,30,29.8946,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.2046,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,71,,9,1750,0,Diesel,Diesel,8,-1,42,41.5209,0,0.0,0.0,0.0,0.0,0,0,32716,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S6),39.0935,0.0,59.3437,0.0,Compact Cars,2013,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,80,,9,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,0,0,32717,0,16,Volkswagen,Jetta,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.747,0.0,59.8138,0.0,Compact Cars,2013,3250,,,T,,Diesel,,,,VWX +12.657024,0.0,0.0,0.0,22,21.8993,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,25.5642,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,82,,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.1378,0,0.0,0.0,0.0,0.0,0,0,32718,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1361,0.0,42.9279,0.0,Midsize Cars,2013,1500,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,22.1078,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,25.2814,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,83,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.6611,0,0.0,0.0,0.0,0.0,0,0,32719,0,16,Volkswagen,Passat,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0219,0.0,40.7879,0.0,Midsize Cars,2013,1000,,,,,,,,,VWX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,84,3272,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,23.1009,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,25,25.4822,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,86,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.1554,0,0.0,0.0,0.0,0.0,0,0,32720,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1,0.0,41.499,0.0,Compact Cars,2013,1000,,,,,,,,,VWX +11.75609,0.0,0.0,0.0,24,24.3944,0,0.0,0.0,0.0,0.0,316,-1,0.0,316.0,28,27.8344,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,87,,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.6309,0,0.0,0.0,0.0,0.0,0,0,32721,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,46.2,0.0,Compact Cars,2013,2250,,,,,,,,,VWX +14.327048,0.0,0.0,0.0,19,19.3544,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,22.5568,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,11,,6,2400,0,Regular,Regular Gasoline,6,-1,28,28.2748,0,0.0,0.0,0.0,0.0,0,0,32722,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3861,0.0,39.6162,0.0,Midsize Cars,2013,0,,,,,,,,,VVX +14.964294,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5961,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,206,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,29,28.7436,0,0.0,0.0,0.0,0.0,0,0,32723,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.5,0.0,40.3,0.0,Large Cars,2013,-500,,,,,,,,,GMX +14.964294,4.679378,0.0,0.0,18,17.7948,13,13.4857,0.0,0.0,0.0,408,379,379.0,408.0,22,21.6949,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,251,SIDI; FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,30,29.633,22,22.296,0.0,0.0,0.0,0,0,32724,0,19,Chevrolet,Impala,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Large Cars,2013,-500,,,,,FFV,E85,280,,GMX +17.337486000000002,0.0,0.0,0.0,15,15.3736,0,0.0,0.0,0.0,0.0,479,-1,0.0,479.0,19,18.5317,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,202,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.7443,0,0.0,0.0,0.0,0.0,0,0,32725,0,16,Mercedes-Benz,S550,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.5549,0.0,33.2649,0.0,Large Cars,2013,-3750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.912,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7089,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,205,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.976,0,0.0,0.0,0.0,0.0,0,0,32726,0,16,Mercedes-Benz,S63 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.0072,0.0,30.5142,0.0,Large Cars,2013,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.709,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7253,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,207,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.654,0,0.0,0.0,0.0,0.0,0,0,32727,0,16,Mercedes-Benz,S550 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7941,0.0,32.1822,0.0,Large Cars,2013,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,95,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,32728,0,25,Porsche,Panamera Turbo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5,0.0,32.0,0.0,Large Cars,2013,-4750,,,T,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,96,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,32729,0,25,Porsche,Panamera Turbo S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.5,0.0,32.0,0.0,Large Cars,2013,-4750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3273,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.891,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,24,23.6187,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,60,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.1035,0,0.0,0.0,0.0,0.0,0,0,32730,0,20,Audi,A3 quattro,N,false,0,89,0,0.0,0.0,0.0,0.0,Auto(AM-S6),27.2,0.0,37.1,0.0,Small Station Wagons,2013,-500,,,T,,,,,,ADX +11.236239000000001,0.0,0.0,0.0,30,29.8946,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.2046,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,73,,9,1750,0,Diesel,Diesel,8,-1,42,41.5209,0,0.0,0.0,0.0,0.0,0,0,32731,20,0,Audi,A3,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),39.0935,0.0,59.3437,0.0,Small Station Wagons,2013,3250,,,T,,Diesel,,,,ADX +11.567466000000001,0.0,0.0,0.0,29,28.8556,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,33,32.8278,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,74,,8,1800,0,Diesel,Diesel,7,-1,39,39.4682,0,0.0,0.0,0.0,0.0,0,0,32732,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.6,0.0,56.2,0.0,Small Station Wagons,2013,3000,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,79,,9,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,0,0,32733,0,33,Volkswagen,Jetta SportWagen,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.747,0.0,59.8138,0.0,Small Station Wagons,2013,3250,,,T,,Diesel,,,,VWX +18.304342000000002,0.0,0.0,0.0,15,15.3787,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.1956,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,323,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.4441,0,0.0,0.0,0.0,0.0,0,0,32734,0,36,Mercedes-Benz,E63 AMG (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9965,0.0,30.9373,0.0,Midsize Station Wagons,2013,-4750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,16.8,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.1,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,1,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.8,0,0.0,0.0,0.0,0.0,0,0,32735,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.9316,0.0,32.5972,0.0,Standard Sport Utility Vehicle 4WD,2013,-3750,,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,513,-1,0.0,513.0,17,17.3,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,2,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.5,0,0.0,0.0,0.0,0.0,0,0,32736,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5,0.0,29.8,0.0,Standard Sport Utility Vehicle 4WD,2013,-5750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4655,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,75,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,32737,0,0,Volkswagen,Touareg Hybrid,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,33.1,0.0,Standard Sport Utility Vehicle 4WD,2013,-2250,,,,S,Hybrid,,,288V Ni-MH,VWX +17.337486000000002,0.0,0.0,0.0,17,17.0411,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2048,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,78,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,32738,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.3,0.0,31.6,0.0,Standard Sport Utility Vehicle 4WD,2013,-3750,,,,,,,,,VWX +16.4805,4.679378,0.0,0.0,17,17.0,13,13.4857,0.0,0.0,0.0,443,379,379.0,443.0,20,20.0,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,104,SIDI; FFV,5,2750,2850,Gasoline or E85,Regular Gasoline,5,6,24,24.0,22,22.296,0.0,0.0,0.0,0,0,32739,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,FFV,E85,330,,GMX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41020,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3274,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Compact Cars,1987,-4750,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,179,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,32740,0,0,Chevrolet,Equinox FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,20.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,205,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.0,0,0.0,0.0,0.0,0.0,0,0,32741,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.5,0.0,40.3,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,GMX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,344,356,356.0,344.0,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,235,SIDI; FFV,7,2100,2550,Gasoline or E85,Regular Gasoline,7,6,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,32742,0,0,Chevrolet,Equinox FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2013,1500,,,,,FFV,E85,340,,GMX +14.327048,4.160002,0.0,0.0,20,20.0,15,15.1089,0.0,0.0,0.0,386,356,356.0,386.0,23,23.0,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,320,SIDI; FFV,6,2400,2550,Gasoline or E85,Regular Gasoline,6,6,28,28.0,22,21.7572,0.0,0.0,0.0,0,0,32743,0,0,Chevrolet,Captiva FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2013,0,,,,,FFV,E85,350,,GMX +17.337486000000002,5.348574,0.0,0.0,17,16.5871,12,11.8594,0.0,0.0,0.0,462,458,458.0,462.0,19,19.2198,14,13.6703,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,342,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,24,23.8457,17,16.8069,0.0,0.0,0.0,0,0,32744,0,0,Chevrolet,Captiva FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,14.8,33.2,23.4,Small Sport Utility Vehicle 2WD,2013,-2500,,,,,FFV,E85,270,,GMX +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,180,SIDI;,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,32745,0,0,GMC,Terrain FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,20.0,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,207,SIDI;,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.0,0,0.0,0.0,0.0,0.0,0,0,32746,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.5,0.0,40.3,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,GMX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,344,356,356.0,344.0,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,237,SIDI; FFV,7,2100,2550,Gasoline or E85,Regular Gasoline,7,6,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,32747,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2013,1500,,,,,FFV,E85,340,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.9794,11,11.4024,0.0,0.0,0.0,482,480,480.0,482.0,18,18.4245,13,13.109,0.0,0.0,0.0,6,3.0,All-Wheel Drive,343,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.6628,16,16.0438,0.0,0.0,0.0,0,0,32748,0,0,Chevrolet,Captiva AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,14.2,31.5,22.3,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,FFV,E85,220,,GMX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,491,-1,0.0,491.0,18,18.0451,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,22,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.266,0,0.0,0.0,0.0,0.0,0,0,32749,0,0,Subaru,Tribeca AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,29.5,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41020,"(FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3275,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1987,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,18.1158,0,0.0,0.0,0.0,0.0,427,-1,0.0,427.0,20,20.498,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.4233,0,0.0,0.0,0.0,0.0,0,0,32750,0,37,Volvo,XC70 AWD,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5841,0.0,34.0437,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,VVX +16.4805,0.0,0.0,0.0,18,17.6338,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,19.9916,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.897,0,0.0,0.0,0.0,0.0,0,0,32751,0,34,Volvo,XC60 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0859,0.0,33.2738,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,VVX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,560,-1,0.0,560.0,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,533,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,32752,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Standard Sport Utility Vehicle 2WD,2013,-6000,,,,,,,,,CRX +17.337486000000002,5.348574,0.0,0.0,16,16.2835,12,12.3574,0.0,0.0,0.0,473,453,453.0,473.0,19,18.7918,14,14.1017,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,592,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.1504,17,17.0421,0.0,0.0,0.0,0,0,32753,0,0,Dodge,Durango 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.3,15.2,32.2,23.5,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,FFV,E85,350,,CRX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,560,-1,0.0,560.0,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,535,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,32754,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Standard Sport Utility Vehicle 2WD,2013,-6000,,,,,,,,,CRX +17.337486000000002,5.348574,0.0,0.0,16,16.1315,12,12.2793,0.0,0.0,0.0,479,458,458.0,479.0,19,18.5353,14,13.936,0.0,0.0,0.0,6,3.6,4-Wheel Drive,594,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.6628,17,16.6879,0.0,0.0,0.0,0,0,32755,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,15.1,31.5,23.0,Standard Sport Utility Vehicle 4WD,2013,-2500,,,,,FFV,E85,350,,CRX +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,584,-1,0.0,584.0,15,15.2156,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,632,,3,3850,0,Midgrade,Midgrade Gasoline,3,-1,20,19.9339,0,0.0,0.0,0.0,0.0,0,0,32756,0,0,Dodge,Durango 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7,0.0,27.6,0.0,Standard Sport Utility Vehicle 4WD,2013,-7250,,,,,,,,,CRX +21.974,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.0013,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,532,,3,3850,0,Midgrade,Midgrade Gasoline,3,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,32757,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.5,0.0,27.1,0.0,Standard Sport Utility Vehicle 4WD,2013,-7250,,,,,,,,,CRX +23.534154,0.0,0.0,0.0,12,12.3962,0,0.0,0.0,0.0,0.0,619,-1,0.0,619.0,14,14.2801,0,0.0,0.0,0.0,0.0,8,6.4,4-Wheel Drive,756,,2,4300,0,Premium,Premium Gasoline,2,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,32758,0,0,Jeep,Grand Cherokee SRT8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.2498,0.0,24.2,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,,,,,,,CRX +21.974,0.0,0.0,0.0,13,12.6691,0,0.0,0.0,0.0,0.0,613,-1,0.0,613.0,15,14.5208,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,5,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,18,17.6789,0,0.0,0.0,0.0,0.0,0,0,32759,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.5845,0.0,24.4333,0.0,Standard Sport Utility Vehicle 4WD,2013,-8000,,,,,,,,,LRX +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41030,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3276,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Compact Cars,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,514,-1,0.0,514.0,17,17.0267,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,20,,4,3550,0,Premium,Premium Gasoline,4,-1,20,20.4252,0,0.0,0.0,0.0,0.0,0,0,32760,0,0,Lexus,GX 460,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,28.3,0.0,Standard Sport Utility Vehicle 4WD,2013,-5750,,,,,,,,,TYX +16.4805,4.994,0.0,0.0,18,17.7948,13,13.2907,0.0,0.0,0.0,451,431,431.0,451.0,20,19.7225,15,14.728,0.0,0.0,0.0,6,3.5,4-Wheel Drive,821,SIDI; FFV,5,3000,3050,Premium or E85,Premium Gasoline,5,5,23,22.7325,17,16.9713,0.0,0.0,0.0,0,0,32761,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2857,16.3865,31.5529,23.4489,Standard Sport Utility Vehicle 4WD,2013,-3000,,,,,FFV,E85,370,,MBX +12.657024,0.0,0.0,0.0,23,22.6723,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.2804,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,232,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.6265,0,0.0,0.0,0.0,0.0,0,0,32762,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,28.9492,0.0,45.988,0.0,Two Seaters,2013,500,,,T,,,,,,MBX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,24.1117,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,236,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,29,28.949,0,0.0,0.0,0.0,0.0,0,0,32763,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,26.8851,0.0,40.5697,0.0,Two Seaters,2013,-500,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,270,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,32764,0,0,Mercedes-Benz,SLS AMG Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.9748,0.0,25.9165,0.0,Two Seaters,2013,-8000,G,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,271,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,32765,0,0,Mercedes-Benz,SLS AMG Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.9748,0.0,25.9165,0.0,Two Seaters,2013,-8000,G,,,,,,,,MBX +20.589638,0.0,0.0,0.0,13,12.937,0,0.0,0.0,0.0,0.0,574,-1,0.0,574.0,16,15.552,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,21,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.656,0,0.0,0.0,0.0,0.0,0,0,32766,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.9438,0.0,28.6291,0.0,Subcompact Cars,2013,-6750,G,,,,,,,,MAX +21.974,0.0,0.0,0.0,13,12.924,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.4271,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,25,,3,4000,0,Premium,Premium Gasoline,3,-1,20,20.212,0,0.0,0.0,0.0,0.0,0,0,32767,5,0,Maserati,GranTurismo Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.9275,0.0,27.996,0.0,Subcompact Cars,2013,-8000,G,,,,,,,,MAX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,353,-1,0.0,353.0,25,25.0794,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,102,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,32768,12,0,Mercedes-Benz,C250 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.3353,0.0,44.2918,0.0,Subcompact Cars,2013,0,,,T,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.2131,0,0.0,0.0,0.0,0.0,578,-1,0.0,578.0,15,15.3988,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,109,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,32769,0,12,Mercedes-Benz,C63 AMG Coupe,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.265,0.0,26.6604,0.0,Subcompact Cars,2013,-8000,G,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41030,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3277,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,13.2907,0,0.0,0.0,0.0,0.0,576,-1,0.0,576.0,15,15.4769,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,110,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.3715,0,0.0,0.0,0.0,0.0,0,0,32770,0,12,Mercedes-Benz,C63 AMG Black Series Coupe,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.4102,0.0,26.8007,0.0,Subcompact Cars,2013,-8000,G,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.2711,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,111,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,32771,12,0,Mercedes-Benz,C350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.4649,0.0,37.8511,0.0,Subcompact Cars,2013,-1750,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.1353,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,112,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,32772,12,0,Mercedes-Benz,C350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2654,0.0,40.0299,0.0,Subcompact Cars,2013,-1000,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.5134,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.7116,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,131,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.4009,0,0.0,0.0,0.0,0.0,0,0,32773,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.5949,0.0,39.8155,0.0,Subcompact Cars,2013,-1000,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,21.9159,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,133,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,32774,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6784,0.0,38.3206,0.0,Subcompact Cars,2013,-1750,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.1415,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.2963,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,32775,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0576,0.0,39.0902,0.0,Subcompact Cars,2013,-1750,,,,,,,,,MBX +13.73375,0.0,0.0,0.0,21,20.5408,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.8517,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,90,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.7034,0,0.0,0.0,0.0,0.0,0,0,32776,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2999,0.0,41.4024,0.0,Subcompact Cars,2013,-500,,,T,,,,,,VWX +10.283832,0.0,0.0,0.0,29,29.2722,0,0.0,0.0,0.0,0.0,281,-1,0.0,281.0,32,31.62,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,10,,8,1700,0,Regular,Regular Gasoline,8,-1,35,35.0567,0,0.0,0.0,0.0,0.0,13,87,32777,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.2,0.0,49.6,0.0,Compact Cars,2013,3500,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,20,19.5476,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.8655,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,85,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.8506,0,0.0,0.0,0.0,0.0,0,0,32778,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6,0.0,39.0,0.0,Compact Cars,2013,-1000,,,,,,,,,MBX +14.327048,4.404708,0.0,0.0,20,19.9584,15,14.7564,0.0,0.0,0.0,382,361,361.0,382.0,23,23.1212,17,17.1544,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,87,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,29,28.6751,21,21.4059,0.0,0.0,0.0,0,0,32779,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.1823,18.2692,40.2332,29.6543,Compact Cars,2013,-1000,,,,,FFV,E85,290,,MBX +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41050,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3278,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,35.0,0.0,Compact Cars,1987,-1000,,,T,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,352,-1,0.0,352.0,25,25.1341,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,101,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,32780,0,12,Mercedes-Benz,C250,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.4151,0.0,44.2558,0.0,Compact Cars,2013,0,,,T,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1212,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,103,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.6751,0,0.0,0.0,0.0,0.0,0,0,32781,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.1823,0.0,40.2332,0.0,Compact Cars,2013,-1000,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.2131,0,0.0,0.0,0.0,0.0,578,-1,0.0,578.0,15,15.3988,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,108,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,32782,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.265,0.0,26.6604,0.0,Compact Cars,2013,-8000,G,,,,,,,,MBX +23.534154,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,638,-1,0.0,638.0,14,13.9015,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,214,,2,4300,0,Premium,Premium Gasoline,2,-1,18,17.9616,0,0.0,0.0,0.0,0.0,0,0,32783,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4007,0.0,24.8436,0.0,Compact Cars,2013,-9500,G,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,3,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,32784,11,0,Rolls-Royce,Phantom Drophead Coupe,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Compact Cars,2013,-9500,G,,,,,,,,RRG +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,4,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,32785,13,0,Rolls-Royce,Phantom Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Compact Cars,2013,-9500,G,,,,,,,,RRG +13.73375,0.0,0.0,0.0,21,20.5408,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.8517,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,89,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.7034,0,0.0,0.0,0.0,0.0,15,85,32786,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2999,0.0,41.4024,0.0,Compact Cars,2013,-500,,,T,,,,,,VWX +11.924172,0.0,0.0,0.0,29,28.6469,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,94,,8,1850,0,Diesel,Diesel,7,-1,39,38.87,0,0.0,0.0,0.0,0.0,15,85,32787,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.3,0.0,55.3,0.0,Compact Cars,2013,2750,,,T,,Diesel,,,,VWX +14.327048,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.2264,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,301,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,32788,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.7909,0.0,41.8822,0.0,Midsize Cars,2013,-1000,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,18.918,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.3008,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,306,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,32789,0,13,Mercedes-Benz,E350 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.7948,0.0,39.979,0.0,Midsize Cars,2013,-1750,,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41040,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3279,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.2357,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6396,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,173,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,32790,0,20,Ford,Taurus FWD,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3,0.0,44.4,0.0,Large Cars,2013,1500,,,T,,,,,,FMX +14.964294,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,33,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,32791,0,16,Hyundai,Genesis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.5,0.0,40.1,0.0,Large Cars,2013,-500,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,495,-1,0.0,495.0,18,18.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,34,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,32792,0,16,Hyundai,Genesis R-Spec,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.9,0.0,34.0,0.0,Large Cars,2013,-4750,,,,,,,,,HYX +23.534154,0.0,0.0,0.0,12,11.8336,0,0.0,0.0,0.0,0.0,628,-1,0.0,628.0,14,14.1123,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,16,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.4556,0,0.0,0.0,0.0,0.0,0,0,32794,0,8,Maserati,Quattroporte,N,false,0,121,0,0.0,0.0,0.0,0.0,Automatic 6-spd,14.5278,0.0,25.4659,0.0,Large Cars,2013,-9500,G,,,,,,,,MAX +15.689436,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.0651,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,203,,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.0939,0,0.0,0.0,0.0,0.0,0,0,32795,0,16,Mercedes-Benz,S400 Hybrid,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.4385,0.0,35.0216,0.0,Large Cars,2013,-2250,,,,,Hybrid,,,126V Li-Ion,MBX +23.534154,0.0,0.0,0.0,12,11.8885,0,0.0,0.0,0.0,0.0,625,-1,0.0,625.0,14,14.1737,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,204,,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5262,0,0.0,0.0,0.0,0.0,0,0,32796,0,16,Mercedes-Benz,S600,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.6319,0.0,25.5737,0.0,Large Cars,2013,-9500,G,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.2012,0,0.0,0.0,0.0,0.0,614,-1,0.0,614.0,14,14.4732,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,208,,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,32797,0,16,Mercedes-Benz,S65 AMG,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9911,0.0,25.8793,0.0,Large Cars,2013,-9500,G,,T,,,,,,MBX +13.1844,0.0,0.0,0.0,22,22.3,0,0.0,0.0,0.0,0.0,364,-1,0.0,364.0,25,25.3,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,97,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.3,0,0.0,0.0,0.0,0.0,0,0,32798,0,25,Porsche,Panamera S Hybrid,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 8-spd,30.4,0.0,40.9,0.0,Large Cars,2013,0,,,,S,Hybrid,,,288V Ni-MH,PRX +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,1,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,32799,0,14,Rolls-Royce,Phantom,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Large Cars,2013,-9500,G,,,,,,,,RRG +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3311,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,328,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,36.0,0.0,Compact Cars,1985,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41040,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3280,0,11,Peugeot,505 Sedan,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,2,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,32800,0,14,Rolls-Royce,Phantom EWB,N,false,0,125,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Large Cars,2013,-9500,G,,,,,,,,RRG +11.75609,0.0,0.0,0.0,26,26.0,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,28,28.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,31,31.0,0,0.0,0.0,0.0,0.0,0,0,32801,0,24,Kia,Soul Eco,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,37.5,0.0,51.6,0.0,Small Station Wagons,2013,2250,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,27.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,32802,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.9,0.0,49.5,0.0,Small Station Wagons,2013,1750,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,331,-1,0.0,331.0,27,27.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,30,30.0,0,0.0,0.0,0.0,0.0,0,0,32803,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2,0.0,49.6,0.0,Small Station Wagons,2013,1750,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,26.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,32,,7,2100,0,Regular,Regular Gasoline,7,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,32804,0,24,Kia,Soul Eco,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.4954,0.0,49.4,0.0,Small Station Wagons,2013,1500,,,,,,,,,KMX +13.1844,0.0,0.0,0.0,23,23.0,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,25.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,33,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,32805,0,24,Kia,Soul,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.2,0.0,47.3,0.0,Small Station Wagons,2013,1000,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,24,24.0,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,26.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,34,,7,2100,0,Regular,Regular Gasoline,7,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,32806,0,24,Kia,Soul,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.1,0.0,47.8,0.0,Small Station Wagons,2013,1500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5943,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,316,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0268,0,0.0,0.0,0.0,0.0,0,0,32807,0,36,Mercedes-Benz,E350 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.297,0.0,37.7796,0.0,Midsize Station Wagons,2013,-1750,,,,,,,,,MBX +16.4805,5.348574,0.0,0.0,17,16.7386,12,11.9667,0.0,0.0,0.0,453,455,455.0,453.0,20,19.6113,14,14.0226,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,541,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,4,25,24.8169,18,17.7496,0.0,0.0,0.0,0,0,32808,0,0,Chrysler,Town and Country,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,14.7,34.6,24.5,Minivan - 2WD,2013,-1750,,,,,FFV,E85,280,,CRX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.974,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,504,,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0939,0,0.0,0.0,0.0,0.0,0,0,32809,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.0,0.0,Minivan - 2WD,2013,-1750,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3281,0,16,Plymouth,Horizon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Compact Cars,1987,-500,,,,,,,,, +16.4805,5.348574,0.0,0.0,17,17.1,12,12.3,0.0,0.0,0.0,444,440,440.0,444.0,20,19.974,14,14.3,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,540,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,25.1,18,18.0,0.0,0.0,0.0,0,0,32810,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2013,-1750,,,,,FFV,E85,280,,CRX +16.4805,5.348574,0.0,0.0,17,17.1,12,12.3,0.0,0.0,0.0,444,440,440.0,444.0,20,19.974,14,14.3,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,543,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,25.1,18,18.0,0.0,0.0,0.0,0,0,32811,0,0,Ram,C/V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2013,-1750,,,,,FFV,E85,280,,CRX +16.4805,5.348574,0.0,0.0,17,16.7386,12,11.9667,0.0,0.0,0.0,453,455,455.0,453.0,20,19.6113,14,14.0226,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,542,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,4,25,24.8169,18,17.7496,0.0,0.0,0.0,0,0,32812,0,0,Volkswagen,Routan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,14.7,34.6,24.5,Minivan - 2WD,2013,-1750,,,,,FFV,E85,280,,CRX +15.689436,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4726,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,9,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.7958,0,0.0,0.0,0.0,0.0,0,0,32813,0,0,Porsche,Cayenne S Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,25.1,0.0,33.1,0.0,Standard Sport Utility Vehicle 4WD,2013,-2250,,,,S,Hybrid,,,288V Ni-MH,PRX +16.4805,4.994,0.0,0.0,17,16.6628,12,12.4354,0.0,0.0,0.0,452,439,439.0,452.0,20,19.6498,15,14.535,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,508,FFV,5,2750,3050,Gasoline or E85,Regular Gasoline,5,5,25,25.1631,18,18.3146,0.0,0.0,0.0,0,0,32814,0,0,Dodge,Journey FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8,15.3,35.1,25.3,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,FFV,E85,310,,CRX +15.689436,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.3018,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,530,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.8545,0,0.0,0.0,0.0,0.0,0,0,32815,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4,0.0,36.1,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.0,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,24.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,29,29.0,0,0.0,0.0,0.0,0.0,35,108,32816,0,0,Hyundai,Santa Fe Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.5,0.0,46.1,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,23.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0,0,0.0,0.0,0.0,0.0,35,108,32817,0,0,Hyundai,Santa Fe Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.8,0.0,43.0,0.0,Small Sport Utility Vehicle 2WD,2013,0,,,T,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.2901,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,581,,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,32818,0,0,Infiniti,FX37 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9,0.0,33.0,0.0,Small Sport Utility Vehicle 2WD,2013,-3750,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,23,22.7448,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.8878,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,515,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.1264,0,0.0,0.0,0.0,0.0,0,0,32819,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.4,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2310,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3282,0,16,Plymouth,Horizon,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,44.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,22.7448,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.8878,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,516,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.1264,0,0.0,0.0,0.0,0.0,0,0,32820,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.4,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.4317,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.6097,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,546,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,32821,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.7,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.4317,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.6097,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,547,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,32822,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.2,0.0,37.7,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,22.1628,0,0.0,0.0,0.0,0.0,365,-1,0.0,365.0,24,24.3106,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,712,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.577,0,0.0,0.0,0.0,0.0,0,0,32823,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.2,0.0,38.6,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,22.1628,0,0.0,0.0,0.0,0.0,365,-1,0.0,365.0,24,24.3106,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,713,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.577,0,0.0,0.0,0.0,0.0,0,0,32824,0,0,Jeep,Patriot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.2,0.0,38.6,0.0,Small Sport Utility Vehicle 2WD,2013,500,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6867,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,714,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0427,0,0.0,0.0,0.0,0.0,0,0,32825,0,0,Jeep,Compass 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,42.2,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6867,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,715,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0427,0,0.0,0.0,0.0,0.0,0,0,32826,0,0,Jeep,Patriot 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,42.2,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,19,19.3648,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.483,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,86,SIDI; PZEV (SULEV) emissions,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7984,0,0.0,0.0,0.0,0.0,0,0,32827,0,0,Mercedes-Benz,GLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.4094,0.0,35.8441,0.0,Small Sport Utility Vehicle 2WD,2013,-2250,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,416,-1,0.0,416.0,21,21.3321,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,802,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.9555,0,0.0,0.0,0.0,0.0,0,0,32828,0,0,Mercedes-Benz,GLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0489,0.0,34.8009,0.0,Small Sport Utility Vehicle 2WD,2013,-2250,,,,,,,,,MBX +13.1844,0.0,0.0,0.0,23,22.8746,0,0.0,0.0,0.0,0.0,355,-1,0.0,355.0,25,25.0407,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.3181,0,0.0,0.0,0.0,0.0,0,0,32829,0,0,Nissan,Rogue FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.1787,0.0,39.6793,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3283,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Compact Cars,1987,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.0991,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,13,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,32830,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.4,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.0991,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,18,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,32831,0,37,Volvo,XC70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,35.4,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,VVX +17.337486000000002,0.0,0.0,0.0,16,16.3594,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,19.1308,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,531,,4,2900,0,Regular,Regular Gasoline,4,-1,24,24.1235,0,0.0,0.0,0.0,0.0,0,0,32832,0,0,Dodge,Journey AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.4,0.0,33.6,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,16,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.0,0,0.0,0.0,0.0,0.0,35,108,32833,0,0,Hyundai,Santa Fe Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0,0.0,39.7,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,21.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,19,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,24,24.0,0,0.0,0.0,0.0,0.0,35,108,32834,0,0,Hyundai,Santa Fe Sport 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.1,0.0,37.4,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,T,,,,,,HYX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,549,-1,0.0,549.0,16,16.2262,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,391,,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7934,0,0.0,0.0,0.0,0.0,0,0,32835,0,0,Infiniti,FX50 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.5,0.0,27.4,0.0,Small Sport Utility Vehicle 4WD,2013,-6750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.2352,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.3963,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,582,,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.9707,0,0.0,0.0,0.0,0.0,0,0,32836,0,0,Infiniti,FX37 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.2364,0.0,30.508,0.0,Small Sport Utility Vehicle 4WD,2013,-4750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,22,22.3813,0,0.0,0.0,0.0,0.0,363,-1,0.0,363.0,24,24.479,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,513,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,32837,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,22.3813,0,0.0,0.0,0.0,0.0,363,-1,0.0,363.0,24,24.479,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,514,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,32838,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.7,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,520,Off Road Package,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,32839,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.8999,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3284,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Compact Cars,1987,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,521,Off Road Package,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,32840,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.8999,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,20.8462,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.862,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,536,,6,2400,0,Regular,Regular Gasoline,6,-1,26,25.926,0,0.0,0.0,0.0,0.0,0,0,32841,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.4,0.0,36.2,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,20.8462,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.862,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,537,,6,2400,0,Regular,Regular Gasoline,6,-1,26,25.926,0,0.0,0.0,0.0,0.0,0,0,32842,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),26.4,0.0,36.2,0.0,Small Sport Utility Vehicle 4WD,2013,0,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,19,19.1415,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.9895,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,84,SIDI; PZEV (SULEV) emissions,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.7974,0,0.0,0.0,0.0,0.0,0,0,32843,0,0,Mercedes-Benz,GLK350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0776,0.0,33.6642,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,19,18.918,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.9761,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,804,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,24.1929,0,0.0,0.0,0.0,0.0,0,0,32844,0,0,Mercedes-Benz,GLK350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.8448,0.0,33.7425,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,,,,,,,MBX +13.73375,0.0,0.0,0.0,22,21.8457,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.7875,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,82,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.6867,0,0.0,0.0,0.0,0.0,0,0,32845,0,0,Nissan,Rogue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.7656,0.0,37.3062,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,18.0136,0,0.0,0.0,0.0,0.0,443,-1,0.0,443.0,20,20.0662,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,401,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,23,23.3131,0,0.0,0.0,0.0,0.0,0,0,32846,0,0,Mercedes-Benz,ML350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.5913,0.0,32.4339,0.0,Standard Sport Utility Vehicle 2WD,2013,-3000,,,,,,,,,MBX +17.351199,0.0,0.0,0.0,19,18.74,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,22,21.9099,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,53,,5,2700,0,Diesel,Diesel,4,-1,28,27.62,0,0.0,0.0,0.0,0.0,0,0,32847,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.8,0.0,39.1,0.0,Standard Sport Utility Vehicle 4WD,2013,-1500,,,T,,Diesel,,,,ADX +14.327048,0.0,0.0,0.0,20,19.7289,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.823,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,91,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2351,0,0.0,0.0,0.0,0.0,0,0,32848,0,0,Audi,Q5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.8,0.0,35.9,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,451,-1,0.0,451.0,20,19.7225,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,402,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,32849,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2857,0.0,31.5529,0.0,Standard Sport Utility Vehicle 4WD,2013,-3000,,,,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3285,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1987,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,14.4465,0,0.0,0.0,0.0,0.0,541,-1,0.0,541.0,16,16.3955,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,405,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.6329,0,0.0,0.0,0.0,0.0,0,0,32850,0,0,Mercedes-Benz,ML550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.1687,0.0,27.8817,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,T,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.0729,0,0.0,0.0,0.0,0.0,611,-1,0.0,611.0,15,14.5414,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,406,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,17,16.8556,0,0.0,0.0,0.0,0.0,0,0,32851,0,0,Mercedes-Benz,ML63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.1235,0.0,24.4357,0.0,Standard Sport Utility Vehicle 4WD,2013,-8000,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,17.9695,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,412,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,21,21.196,0,0.0,0.0,0.0,0.0,0,0,32852,0,0,Mercedes-Benz,R350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.9462,0.0,29.3803,0.0,Standard Sport Utility Vehicle 4WD,2013,-4750,,,,,,,,,MBX +25.336022,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,686,-1,0.0,686.0,13,12.9281,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,435,,2,4650,0,Premium,Premium Gasoline,2,-1,15,14.7687,0,0.0,0.0,0.0,0.0,0,0,32853,0,0,Mercedes-Benz,G550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.4246,0.0,20.3206,0.0,Standard Sport Utility Vehicle 4WD,2013,-11250,,,,,,,,,MBX +25.336022,0.0,0.0,0.0,12,11.8014,0,0.0,0.0,0.0,0.0,696,-1,0.0,696.0,13,12.7719,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,440,SIDI,2,4650,0,Premium,Premium Gasoline,2,-1,14,14.1992,0,0.0,0.0,0.0,0.0,0,0,32854,0,0,Mercedes-Benz,G63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.8983,0.0,20.7109,0.0,Standard Sport Utility Vehicle 4WD,2013,-11250,,,T,,,,,,MBX +12.657024,0.0,0.0,0.0,22,21.9803,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,25.9308,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,428,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2305,0,0.0,0.0,0.0,0.0,0,0,32855,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,27.9499,0.0,46.8923,0.0,Two Seaters,2013,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2841,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.3746,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,429,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.0033,0,0.0,0.0,0.0,0.0,0,0,32856,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.3664,0.0,48.0364,0.0,Two Seaters,2013,500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.352,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,32857,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Two Seaters,2013,-2250,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.8973,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3682,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.5833,0,0.0,0.0,0.0,0.0,0,0,32858,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.1097,0.0,32.8224,0.0,Two Seaters,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.8973,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3682,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,438,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.5833,0,0.0,0.0,0.0,0.0,0,0,32859,0,0,BMW,Z4 sDrive35is,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.1097,0.0,32.8224,0.0,Two Seaters,2013,-3750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2022,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3286,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1987,-500,,,,,,,,, +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0845,0,0.0,0.0,0.0,0.0,0,0,32860,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Two Seaters,2013,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,0,0,32861,0,0,MINI,Cooper Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Two Seaters,2013,2000,,,,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.697,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,30.8944,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,40,,8,1950,0,Premium,Premium Gasoline,8,-1,36,35.9696,0,0.0,0.0,0.0,0.0,0,0,32862,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9405,0.0,50.9588,0.0,Two Seaters,2013,2250,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3588,0,0.0,0.0,0.0,0.0,274,-1,0.0,274.0,32,32.3779,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,41,,8,1900,0,Premium,Premium Gasoline,8,-1,37,37.0325,0,0.0,0.0,0.0,0.0,0,0,32863,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.325,0.0,52.5455,0.0,Two Seaters,2013,2500,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,50,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32864,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,51,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32865,0,0,MINI,Cooper S Roadster,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,52,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32866,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,53,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32867,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,25,25.4739,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6289,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,70,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,33.7358,0,0.0,0.0,0.0,0.0,0,0,32868,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.7945,0.0,47.6401,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,71,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32869,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3287,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0256,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,72,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32870,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,73,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32871,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.697,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,30.8944,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,32,,8,1950,0,Premium,Premium Gasoline,8,-1,36,35.9696,0,0.0,0.0,0.0,0.0,0,0,32872,6,0,MINI,Cooper,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9405,0.0,50.9588,0.0,Minicompact Cars,2013,2250,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3588,0,0.0,0.0,0.0,0.0,274,-1,0.0,274.0,32,32.3779,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,33,,8,1900,0,Premium,Premium Gasoline,8,-1,37,37.0325,0,0.0,0.0,0.0,0.0,0,0,32873,6,0,MINI,Cooper,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.325,0.0,52.5455,0.0,Minicompact Cars,2013,2500,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,36,,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0845,0,0.0,0.0,0.0,0.0,0,0,32874,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Minicompact Cars,2013,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,37,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,0,0,32875,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Minicompact Cars,2013,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,54,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32876,6,0,MINI,Cooper S,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,55,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32877,6,0,MINI,Cooper S,Y,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,58,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32878,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32879,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2022,,-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3288,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,76,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32880,6,0,MINI,John Cooper Works,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,77,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32881,6,0,MINI,John Cooper Works,N,false,74,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,78,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,0,0,32882,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,79,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,32883,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Minicompact Cars,2013,1500,,,T,,,,,,BMX +8.89947,0.0,0.0,0.0,36,35.9924,0,0.0,0.0,0.0,0.0,238,-1,0.0,238.0,37,36.6122,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,22,,9,1500,0,Regular,Regular Gasoline,9,-1,37,37.3994,0,0.0,0.0,0.0,0.0,4,74,32884,0,0,Scion,iQ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),48.0,0.0,58.7,0.0,Minicompact Cars,2013,4500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,17.8369,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5309,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,135,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.179,0,0.0,0.0,0.0,0.0,0,0,32885,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.356,0.0,35.1229,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,17.7045,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,20,20.4595,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,137,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2645,0,0.0,0.0,0.0,0.0,0,0,32886,8,0,BMW,135i Convertible,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.1799,0.0,35.2465,0.0,Subcompact Cars,2013,-3000,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8508,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.0249,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,138,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.732,0,0.0,0.0,0.0,0.0,0,0,32887,8,0,BMW,135i Convertible,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.71,0.0,38.8255,0.0,Subcompact Cars,2013,-1750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.2031,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.4179,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,337,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,27.3138,0,0.0,0.0,0.0,0.0,0,0,32888,11,0,BMW,335i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8439,0.0,38.2171,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8508,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.0249,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,338,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.732,0,0.0,0.0,0.0,0.0,0,0,32889,11,0,BMW,335i Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.71,0.0,38.8255,0.0,Subcompact Cars,2013,-1750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3289,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1987,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,18.1579,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1892,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,341,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.621,0,0.0,0.0,0.0,0.0,0,0,32890,11,0,BMW,335i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7836,0.0,37.2109,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.6761,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,23,22.6893,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,342,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.9139,0,0.0,0.0,0.0,0.0,0,0,32891,11,0,BMW,335i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8192,0.0,39.0903,0.0,Subcompact Cars,2013,-1000,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.8973,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3682,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,345,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.5833,0,0.0,0.0,0.0,0.0,0,0,32892,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.1097,0.0,32.8224,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.7835,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.822,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,346,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3178,0,0.0,0.0,0.0,0.0,0,0,32893,0,9,BMW,335is Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.285,0.0,36.7711,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.2031,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.4179,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,347,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,27.3138,0,0.0,0.0,0.0,0.0,0,0,32894,0,9,BMW,335i Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8439,0.0,38.2171,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8508,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.0249,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,348,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.732,0,0.0,0.0,0.0,0.0,0,0,32895,0,9,BMW,335i Convertible,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.71,0.0,38.8255,0.0,Subcompact Cars,2013,-1750,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,34,,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0845,0,0.0,0.0,0.0,0.0,9,80,32896,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Subcompact Cars,2013,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,9,80,32897,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Subcompact Cars,2013,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,9,80,32898,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Subcompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,9,80,32899,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Subcompact Cars,2013,1500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3310,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,329,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1985,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2390,(TURBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3290,13,14,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Compact Cars,1987,-3000,,,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,26.0366,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,29,29.2581,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,74,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,34,34.4709,0,0.0,0.0,0.0,0.0,9,80,32900,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.5861,0.0,48.7298,0.0,Subcompact Cars,2013,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,75,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,9,80,32901,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Subcompact Cars,2013,1500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,21,21.2302,0,0.0,0.0,0.0,0.0,378,-1,0.0,378.0,23,23.4804,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,18,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.9749,0,0.0,0.0,0.0,0.0,0,0,32902,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4935,0.0,37.7702,0.0,Subcompact Cars,2013,0,,,,,,,,,VWX +13.73375,0.0,0.0,0.0,21,21.1383,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9738,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,29,28.6751,0,0.0,0.0,0.0,0.0,0,0,32903,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),26.8,0.0,40.2092,0.0,Subcompact Cars,2013,-500,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,23,23.3325,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,300,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.0,0,0.0,0.0,0.0,0.0,0,0,32904,0,13,BMW,328i,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),29.8109,0.0,50.2787,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2841,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.3746,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,301,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.0033,0,0.0,0.0,0.0,0.0,0,0,32905,0,13,BMW,328i,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.3664,0.0,48.0364,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.4292,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,26,26.1641,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,304,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.8499,0,0.0,0.0,0.0,0.0,0,0,32906,0,13,BMW,328i xDrive,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),28.5657,0.0,46.3298,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.5267,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.0773,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,336,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.6715,0,0.0,0.0,0.0,0.0,0,0,32907,0,13,BMW,335i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6179,0.0,41.6564,0.0,Compact Cars,2013,-1000,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.1009,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.6625,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,339,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.2035,0,0.0,0.0,0.0,0.0,0,0,32908,0,13,BMW,335i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),25.3925,0.0,42.4357,0.0,Compact Cars,2013,-500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.6761,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,23,22.6893,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,340,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.9139,0,0.0,0.0,0.0,0.0,0,0,32909,0,13,BMW,335i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8192,0.0,39.0903,0.0,Compact Cars,2013,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3291,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,34.0,0.0,Compact Cars,1987,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8973,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3682,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,343,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.5833,0,0.0,0.0,0.0,0.0,0,0,32910,0,11,BMW,335is Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.1097,0.0,32.8224,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.7835,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.822,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,344,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3178,0,0.0,0.0,0.0,0.0,0,0,32911,0,11,BMW,335is Coupe,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.285,0.0,36.7711,0.0,Subcompact Cars,2013,-2250,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.2634,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.781,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,641,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.1854,0,0.0,0.0,0.0,0.0,0,0,32912,12,0,BMW,640i Convertible,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6124,0.0,42.4092,0.0,Subcompact Cars,2013,-500,,,T,,,,,,BMX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3367,16,16.3576,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,7,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8805,21,21.056,0.0,0.0,0.0,0,0,32913,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Compact Cars,2013,-500,,,,,FFV,E85,270,,CRX +15.689436,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9664,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,16,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,32914,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.1,0.0,38.1,0.0,Compact Cars,2013,-1000,,,,,,,,,CRX +10.613442000000001,0.0,0.0,0.0,27,26.7645,0,0.0,0.0,0.0,0.0,290,-1,0.0,290.0,31,30.7348,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,189,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,38,37.5412,0,0.0,0.0,0.0,0.0,23,90,32915,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),34.6148,0.0,53.3066,0.0,Compact Cars,2013,3000,,,,,,,,,FMX +10.613442000000001,0.0,0.0,0.0,27,26.7655,0,0.0,0.0,0.0,0.0,290,-1,0.0,290.0,31,30.7363,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,190,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,38,37.5437,0,0.0,0.0,0.0,0.0,23,90,32916,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),34.6162,0.0,53.3103,0.0,Compact Cars,2013,3000,,,,,,,,,FMX +10.987,0.0,0.0,0.0,26,25.9755,0,0.0,0.0,0.0,0.0,300,-1,0.0,300.0,30,29.5716,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,191,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.5945,0,0.0,0.0,0.0,0.0,23,90,32917,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,50.4,0.0,Compact Cars,2013,2750,,,,,,,,,FMX +12.657024,0.0,0.0,0.0,23,23.1075,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3734,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,194,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.8805,0,0.0,0.0,0.0,0.0,23,90,32918,0,13,Ford,Focus FWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.5,0.0,44.9,0.0,Compact Cars,2013,1500,,,T,,,,,,FMX +10.613442000000001,3.256088,0.0,0.0,27,26.8599,20,19.8479,0.0,0.0,0.0,287,273,273.0,287.0,31,30.9275,23,22.9243,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,235,SIDI; FFV,8,1800,2000,Gasoline or E85,Regular Gasoline,8,8,38,37.9521,28,28.2822,0.0,0.0,0.0,23,90,32919,0,13,Ford,Focus FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),34.75,25.6782,53.9223,40.1833,Compact Cars,2013,3000,,,,,FFV,E85,290,,FMX +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3292,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Compact Cars,1987,-1750,,,T,,,,,, +10.613442000000001,3.256088,0.0,0.0,27,26.8614,20,19.8488,0.0,0.0,0.0,287,273,273.0,287.0,31,30.9292,23,22.9256,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,236,SIDI; FFV,8,1800,2000,Gasoline or E85,Regular Gasoline,8,8,38,37.9542,28,28.2844,0.0,0.0,0.0,23,90,32920,0,13,Ford,Focus FWD FFV,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),34.7522,25.6796,53.9254,40.1866,Compact Cars,2013,3000,,,,,FFV,E85,290,,FMX +10.987,3.400914,0.0,0.0,26,25.9045,19,19.3896,0.0,0.0,0.0,300,284,284.0,300.0,30,29.5417,22,21.98,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,237,SIDI; FFV,8,1850,2050,Gasoline or E85,Regular Gasoline,8,8,36,35.6616,26,26.2695,0.0,0.0,0.0,23,90,32921,0,13,Ford,Focus FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.4,25.0,50.5,37.2,Compact Cars,2013,2750,,,,,FFV,E85,270,,FMX +9.976196,3.256088,0.0,0.0,28,28.0188,20,19.6286,0.0,0.0,0.0,273,277,277.0,273.0,33,32.5001,23,22.5916,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,238,SIDI; FFV,8,1650,2000,Gasoline or E85,Regular Gasoline,8,8,40,40.3967,28,27.7026,0.0,0.0,0.0,23,90,32922,0,13,Ford,Focus SFE FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),36.4,25.5,57.6,39.5,Compact Cars,2013,3750,,,,,FFV,E85,280,,FMX +10.987,0.0,0.0,0.0,28,28.1586,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.4858,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,11,,8,1850,0,Regular,Regular Gasoline,8,-1,34,33.9113,0,0.0,0.0,0.0,0.0,13,87,32923,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.6,0.0,47.9,0.0,Compact Cars,2013,2750,,,,,,,,,TKX +10.613442000000001,0.0,0.0,0.0,27,26.5242,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.9096,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,39,38.7375,0,0.0,0.0,0.0,0.0,0,0,32924,0,12,Mazda,3 DI 4-Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.2746,0.0,55.1009,0.0,Compact Cars,2013,3000,,,,,,,,,TKX +9.976196,0.0,0.0,0.0,28,28.2447,0,0.0,0.0,0.0,0.0,273,-1,0.0,273.0,33,32.5952,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,13,SIDI,8,1650,0,Regular,Regular Gasoline,8,-1,40,40.1546,0,0.0,0.0,0.0,0.0,0,0,32925,0,12,Mazda,3 DI 4-Door,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),36.7232,0.0,57.2346,0.0,Compact Cars,2013,3750,,,,,,,,,TKX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,28,28.2714,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,16,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.2357,0,0.0,0.0,0.0,0.0,17,95,32926,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.4,0.0,46.9,0.0,Compact Cars,2013,2250,,,,,,,,,TKX +12.19557,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,27,27.1101,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,17,,7,2050,0,Regular,Regular Gasoline,7,-1,33,33.1004,0,0.0,0.0,0.0,0.0,17,95,32927,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),30.2,0.0,46.7,0.0,Compact Cars,2013,1750,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2147,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,18,,6,2400,0,Regular,Regular Gasoline,6,-1,28,28.2637,0,0.0,0.0,0.0,0.0,17,95,32928,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.6,0.0,39.6,0.0,Compact Cars,2013,0,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,22,22.2357,0,0.0,0.0,0.0,0.0,353,-1,0.0,353.0,25,24.781,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,19,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.8121,0,0.0,0.0,0.0,0.0,17,95,32929,0,12,Mazda,3,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),28.3,0.0,40.4,0.0,Compact Cars,2013,1000,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3293,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Compact Cars,1987,0,,,,,,,,, +13.73375,0.0,0.0,0.0,20,20.3933,0,0.0,0.0,0.0,0.0,378,-1,0.0,378.0,24,23.5061,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,83,SIDI; PZEV (SULEV) Emissions,6,2500,0,Premium,Premium Gasoline,6,-1,29,28.8973,0,0.0,0.0,0.0,0.0,0,0,32930,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.7882,0.0,40.4148,0.0,Compact Cars,2013,-500,,,,,,,,,MBX +14.964294,4.679378,0.0,0.0,20,19.7361,14,14.2181,0.0,0.0,0.0,393,377,377.0,393.0,22,22.4842,16,16.3456,0.0,0.0,0.0,6,3.5,4-Wheel Drive,106,SIDI; FFV,5,2750,2850,Premium or E85,Premium Gasoline,5,6,27,27.0956,20,20.0041,0.0,0.0,0.0,0,0,32931,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.898,17.648,37.9038,27.7157,Compact Cars,2013,-1750,,,,,FFV,E85,280,,MBX +23.534154,0.0,0.0,0.0,12,12.2258,0,0.0,0.0,0.0,0.0,617,-1,0.0,617.0,14,14.3766,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,218,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.3146,0,0.0,0.0,0.0,0.0,0,0,32932,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0315,0.0,25.2915,0.0,Compact Cars,2013,-9500,G,,T,,,,,,MBX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,16,87,32933,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2013,750,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,39,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,16,87,32934,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Compact Cars,2013,2000,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,60,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,0,0,32935,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2013,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,61,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,32,32.2876,0,0.0,0.0,0.0,0.0,0,0,32936,0,16,MINI,Cooper S Countryman,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2013,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.4448,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1488,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,62,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4397,0,0.0,0.0,0.0,0.0,0,0,32937,0,16,MINI,Cooper S Countryman All4,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9662,0.0,42.782,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.9259,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.325,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,63,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9679,0,0.0,0.0,0.0,0.0,0,0,32938,0,16,MINI,Cooper S Countryman All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0267,0.0,43.5575,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,64,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,0,0,32939,0,16,MINI,Cooper S Countryman Coupe,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2013,1250,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4150,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3294,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Compact Cars,1987,0,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,23.4448,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1488,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,66,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4397,0,0.0,0.0,0.0,0.0,0,0,32940,0,16,MINI,Cooper S Countryman Coupe All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9662,0.0,42.782,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.9259,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.325,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,67,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9679,0,0.0,0.0,0.0,0.0,0,0,32941,0,16,MINI,Cooper S Countryman Coupe All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0267,0.0,43.5575,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.561,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.0979,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,111,,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.0997,0,0.0,0.0,0.0,0.0,0,0,32942,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.517,0.0,48.1793,0.0,Compact Cars,2013,2250,,,,,,,,,MTX +11.360558000000001,0.0,0.0,0.0,26,25.5956,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.7995,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,112,,8,1900,0,Regular,Regular Gasoline,8,-1,34,34.0015,0,0.0,0.0,0.0,0.0,0,0,32943,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.9655,0.0,48.0338,0.0,Compact Cars,2013,2500,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,22,22.4717,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6389,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,113,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.9745,0,0.0,0.0,0.0,0.0,0,0,32944,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6242,0.0,43.5672,0.0,Compact Cars,2013,1500,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,23,22.9698,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.7316,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,114,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.1645,0,0.0,0.0,0.0,0.0,0,0,32945,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.31,0.0,42.3785,0.0,Compact Cars,2013,1500,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,17.5397,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.2547,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,115,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.9809,0,0.0,0.0,0.0,0.0,0,0,32946,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),21.9609,0.0,34.8367,0.0,Compact Cars,2013,-3000,,,T,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3028,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7407,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,116,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5558,0,0.0,0.0,0.0,0.0,0,0,32947,0,12,Mitsubishi,Lancer AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3921,0.0,40.026,0.0,Compact Cars,2013,1000,,,,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.8053,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,19.0922,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,131,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.9013,0,0.0,0.0,0.0,0.0,0,0,32948,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9881,0.0,31.8423,0.0,Compact Cars,2013,-3750,,,T,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.5949,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7802,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,132,,4,3150,0,Premium,Premium Gasoline,4,-1,22,22.3827,0,0.0,0.0,0.0,0.0,0,0,32949,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),20.7103,0.0,31.0983,0.0,Compact Cars,2013,-3750,,,T,,,,,,MTX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3295,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,35.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,25.8316,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.9234,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,25,,8,1900,0,Regular,Regular Gasoline,8,-1,34,33.8797,0,0.0,0.0,0.0,0.0,0,0,32950,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.2973,0.0,47.8533,0.0,Compact Cars,2013,2500,,,,,,,,,TYX +10.987,0.0,0.0,0.0,27,27.0554,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,29.8815,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26,,8,1850,0,Regular,Regular Gasoline,8,-1,34,34.2547,0,0.0,0.0,0.0,0.0,0,0,32951,0,12,Toyota,Corolla,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0274,0.0,48.4091,0.0,Compact Cars,2013,2750,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,24,23.6446,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,26,26.486,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,16,,7,2100,0,Regular,Regular Gasoline,7,-1,31,31.0458,0,0.0,0.0,0.0,0.0,15,94,32952,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0549,0.0,42.473,0.0,Compact Cars,2013,1500,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,22.2864,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7338,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,17,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5683,0,0.0,0.0,0.0,0.0,15,85,32953,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.3832,0.0,39.0128,0.0,Compact Cars,2013,1000,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,22.0202,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,24.8746,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.5574,0,0.0,0.0,0.0,0.0,15,85,32954,0,0,Volkswagen,Beetle,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),26.5,0.0,42.0656,0.0,Compact Cars,2013,0,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,21,21.2839,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7304,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,23,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,30.8324,0,0.0,0.0,0.0,0.0,15,94,32955,0,0,Volkswagen,GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.0527,0.0,41.2042,0.0,Compact Cars,2013,0,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7343,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3594,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26,,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.7402,0,0.0,0.0,0.0,0.0,15,94,32956,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5088,0.0,Compact Cars,2013,1500,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.7201,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.0054,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,27,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.6767,0,0.0,0.0,0.0,0.0,15,85,32957,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4199,0.0,42.8586,0.0,Compact Cars,2013,1000,,,,,,,,,VWX +16.4805,0.0,0.0,0.0,17,16.761,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,20.2022,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,47,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,26.9697,0,0.0,0.0,0.0,0.0,25,94,32958,0,0,Audi,S7,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),20.7539,0.0,35.335,0.0,Midsize Cars,2013,-3000,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,17,16.761,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,20.2022,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,48,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,26.9697,0,0.0,0.0,0.0,0.0,0,0,32959,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AM-S7),20.7539,0.0,35.335,0.0,Midsize Cars,2013,-3000,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,84,3296,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Compact Cars,1987,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,22.4292,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,26,26.1641,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,150,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.8499,0,0.0,0.0,0.0,0.0,25,98,32960,0,0,BMW,X1 xDrive28i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.5657,0.0,46.3298,0.0,Large Cars,2013,500,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,24,23.7315,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5176,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,152,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,34.1832,0,0.0,0.0,0.0,0.0,25,98,32961,0,0,BMW,X1 sDrive28i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),30.3633,0.0,48.3031,0.0,Large Cars,2013,1250,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.1579,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1892,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,154,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.621,0,0.0,0.0,0.0,0.0,25,98,32962,0,0,BMW,X1 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7836,0.0,37.2109,0.0,Large Cars,2013,-2250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,24,23.7315,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5176,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,528,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,34.1832,0,0.0,0.0,0.0,0.0,0,0,32963,0,14,BMW,528i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),30.3633,0.0,48.3031,0.0,Midsize Cars,2013,1250,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.4292,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,26,26.1641,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,530,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.8499,0,0.0,0.0,0.0,0.0,0,0,32964,0,14,BMW,528i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.5657,0.0,46.3298,0.0,Midsize Cars,2013,500,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.2634,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.781,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,535,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.1854,0,0.0,0.0,0.0,0.0,0,0,32965,0,14,BMW,535i,Y,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6124,0.0,42.4092,0.0,Midsize Cars,2013,-500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.5267,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.0773,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,536,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.6715,0,0.0,0.0,0.0,0.0,0,0,32966,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.6179,0.0,41.6564,0.0,Midsize Cars,2013,-1000,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,21,20.9177,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,24.1257,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,537,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.6913,0,0.0,0.0,0.0,0.0,0,0,32967,0,14,BMW,535i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),26.4998,0.0,41.6853,0.0,Midsize Cars,2013,-500,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.5623,0,0.0,0.0,0.0,0.0,453,-1,0.0,453.0,20,19.6017,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,550,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2692,0,0.0,0.0,0.0,0.0,0,0,32968,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.6674,0.0,35.2533,0.0,Midsize Cars,2013,-3000,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6206,0,0.0,0.0,0.0,0.0,511,-1,0.0,511.0,17,17.2958,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,551,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,22.278,0,0.0,0.0,0.0,0.0,0,0,32969,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1231,0.0,30.9483,0.0,Midsize Cars,2013,-5750,G,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,84,3297,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,22.2652,0,0.0,0.0,0.0,0.0,338,-1,0.0,338.0,26,26.3863,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,174,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,34,34.1008,0,0.0,0.0,0.0,0.0,0,0,32970,0,16,Chevrolet,Malibu,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),28.3405,0.0,48.1809,0.0,Midsize Cars,2013,1500,,,,,,,,,GMX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3367,16,16.3576,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,6,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8805,21,21.056,0.0,0.0,0.0,0,0,32971,0,14,Chrysler,200,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2013,-500,,,,,FFV,E85,270,,CRX +14.327048,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,23,23.3698,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,168,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.5883,0,0.0,0.0,0.0,0.0,0,0,32972,0,14,Chrysler,200,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.7,0.0,43.0,0.0,Midsize Cars,2013,0,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.6269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,181,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.7435,0,0.0,0.0,0.0,0.0,0,0,32973,0,14,Chrysler,200,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1,0.0,40.3,0.0,Midsize Cars,2013,500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3367,16,16.3576,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,8,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8805,21,21.056,0.0,0.0,0.0,0,0,32974,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2013,-500,,,,,FFV,E85,270,,CRX +19.381068,0.0,0.0,0.0,14,14.0638,0,0.0,0.0,0.0,0.0,520,-1,0.0,520.0,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,32,,4,3550,0,Premium,Premium Gasoline,4,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,32975,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Midsize Cars,2013,-5750,G,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,60,,4,3050,0,Midgrade,Midgrade Gasoline,4,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,32976,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Midsize Cars,2013,-3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9129,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,73,,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.8201,0,0.0,0.0,0.0,0.0,0,0,32977,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,37.5,0.0,Midsize Cars,2013,-1000,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,495,-1,0.0,495.0,18,17.9468,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,154,,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.4287,0,0.0,0.0,0.0,0.0,0,0,32978,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,32.6,0.0,Midsize Cars,2013,-4750,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,524,-1,0.0,524.0,17,16.8804,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,158,,4,3550,0,Premium,Premium Gasoline,4,-1,23,22.5931,0,0.0,0.0,0.0,0.0,0,0,32979,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,31.4,0.0,Midsize Cars,2013,-5750,G,,,,,,,,CRX +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4201,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,3298,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,40.0,0.0,Compact Cars,1987,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,23,23.3698,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,171,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.5883,0,0.0,0.0,0.0,0.0,0,0,32980,0,13,Dodge,Avenger,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.7,0.0,43.0,0.0,Midsize Cars,2013,0,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.6269,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,183,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.7435,0,0.0,0.0,0.0,0.0,0,0,32981,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.1,0.0,40.3,0.0,Midsize Cars,2013,500,,,,,,,,,CRX +10.613442000000001,0.0,0.0,0.0,27,26.5574,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,31,30.7167,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,14,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,38,37.9883,0,0.0,0.0,0.0,0.0,17,95,32982,0,0,Mazda,3 DI 5-Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.3216,0.0,53.9765,0.0,Midsize Cars,2013,3000,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,28,27.971,0,0.0,0.0,0.0,0.0,278,-1,0.0,278.0,32,31.9511,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,15,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,39,38.6778,0,0.0,0.0,0.0,0.0,17,95,32983,0,0,Mazda,3 DI 5-Door,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),36.3317,0.0,55.0112,0.0,Midsize Cars,2013,3500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.6818,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,20,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.8862,0,0.0,0.0,0.0,0.0,17,95,32984,0,0,Mazda,Speed 3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.8,0.0,34.7,0.0,Midsize Cars,2013,-2250,,,T,,,,,,TKX +14.327048,4.404708,0.0,0.0,20,19.6619,14,14.2951,0.0,0.0,0.0,382,361,361.0,382.0,23,23.2264,17,17.1256,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,80,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,30,29.8379,23,22.5931,0.0,0.0,0.0,0,0,32985,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.7909,17.6886,41.8822,31.4357,Midsize Cars,2013,-1000,,,,,FFV,E85,360,,MBX +14.964294,4.679378,0.0,0.0,19,18.918,14,13.9096,0.0,0.0,0.0,398,378,378.0,398.0,22,22.3008,16,16.3201,0.0,0.0,0.0,6,3.5,4-Wheel Drive,81,SIDI; FFV,5,2750,2850,Premium or E85,Premium Gasoline,5,6,29,28.538,21,20.7057,0.0,0.0,0.0,0,0,32986,0,13,Mercedes-Benz,E350 4Matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.7948,17.1861,39.979,28.7449,Midsize Cars,2013,-1750,,,,,FFV,E85,340,,MBX +12.657024,0.0,0.0,0.0,23,23.4448,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1488,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,82,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4397,0,0.0,0.0,0.0,0.0,0,0,32987,0,16,MINI,JCW Countryman All4,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9662,0.0,42.782,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.9259,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.325,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,83,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9679,0,0.0,0.0,0.0,0.0,0,0,32988,0,16,MINI,JCW Countryman All4,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0267,0.0,43.5575,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.4448,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1488,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,84,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4397,0,0.0,0.0,0.0,0.0,0,0,32989,0,16,MINI,JCW Countryman Coupe All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic (S6),29.9662,0.0,42.782,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,3299,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,25,24.9259,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.325,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,85,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9679,0,0.0,0.0,0.0,0.0,0,0,32990,0,16,MINI,JCW Countryman Coupe All4,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0267,0.0,43.5575,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,24,23.6446,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,26,26.486,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,15,,7,2100,0,Regular,Regular Gasoline,7,-1,31,31.0458,0,0.0,0.0,0.0,0.0,0,0,32991,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0549,0.0,42.473,0.0,Compact Cars,2013,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7343,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3594,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,25,,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.7402,0,0.0,0.0,0.0,0.0,0,0,32992,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5088,0.0,Compact Cars,2013,1500,,,,,,,,,VWX +13.73375,0.0,0.0,0.0,20,20.2634,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.781,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,540,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.1854,0,0.0,0.0,0.0,0.0,0,0,32993,0,10,BMW,535i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),25.6124,0.0,42.4092,0.0,Large Cars,2013,-500,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,14.0638,0,0.0,0.0,0.0,0.0,520,-1,0.0,520.0,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,31,,4,3550,0,Premium,Premium Gasoline,4,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,32994,0,16,Chrysler,300 SRT8,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2013,-5750,G,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6411,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.6141,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,56,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,23,23.4285,0,0.0,0.0,0.0,0.0,0,0,32995,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2013,-4000,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,58,,4,3050,0,Midgrade,Midgrade Gasoline,4,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,32996,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2013,-3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4842,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,74,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,32997,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,0.0,38.1,0.0,Large Cars,2013,-1000,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.9756,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,76,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,32998,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,0.0,43.1,0.0,Large Cars,2013,0,,,,,,,,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,413,398,398.0,413.0,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,83,FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,5,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,32999,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2013,-1000,,,,,FFV,E85,310,,CRX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,62001,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,33,0,0,TVR Engineering Ltd,TVR 280i Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Two Seaters,1985,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3312,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,330,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1985,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,84,3300,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1987,1500,,SIL,,,,,,, +14.327048,4.404708,0.0,0.0,19,19.067,14,13.9867,0.0,0.0,0.0,386,375,375.0,386.0,23,22.9756,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,85,FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,33000,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,17.3,43.1,31.7,Large Cars,2013,0,,,,,FFV,E85,330,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6411,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.6141,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,57,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,23,23.4285,0,0.0,0.0,0.0,0.0,0,0,33001,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2013,-4000,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6507,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,59,,4,3050,0,Midgrade,Midgrade Gasoline,4,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,33002,0,16,Dodge,Charger,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.3,0.0,34.5,0.0,Large Cars,2013,-3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9129,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,72,,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.8201,0,0.0,0.0,0.0,0.0,0,0,33003,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,0.0,37.5,0.0,Large Cars,2013,-1000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4842,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,75,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,33004,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,0.0,38.1,0.0,Large Cars,2013,-1000,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.9756,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,77,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,33005,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,0.0,43.1,0.0,Large Cars,2013,0,,,,,,,,,CRX +15.689436,4.994,0.0,0.0,18,17.7196,13,12.8248,0.0,0.0,0.0,425,420,420.0,425.0,21,20.9129,15,14.9474,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,79,FFV,5,2600,3050,Gasoline or E85,Regular Gasoline,5,5,27,26.82,19,18.7377,0.0,0.0,0.0,0,0,33006,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2,15.8,37.5,25.9,Large Cars,2013,-1000,,,,,FFV,E85,290,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,413,398,398.0,413.0,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,84,FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,5,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,33007,0,16,Dodge,Charger AWD,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2013,-1000,,,,,FFV,E85,310,,CRX +14.327048,4.404708,0.0,0.0,19,19.067,14,13.9867,0.0,0.0,0.0,386,375,375.0,386.0,23,22.9756,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,86,FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,33008,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.0,17.3,43.1,31.7,Large Cars,2013,0,,,,,FFV,E85,330,,CRX +19.381068,0.0,0.0,0.0,14,14.0638,0,0.0,0.0,0.0,0.0,520,-1,0.0,520.0,17,17.012,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,121,,4,3550,0,Premium,Premium Gasoline,4,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,33009,0,16,Dodge,Charger SRT8,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2013,-5750,G,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1014,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,88,3301,13,13,Renault,Alliance,Y,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.7436,0.0,Compact Cars,1987,1000,,,,,,,,, +7.646952,0.0,0.0,0.0,45,45.0,0,0.0,0.0,0.0,0.0,207,-1,0.0,207.0,43,43.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,148,,10,1300,0,Regular,Regular Gasoline,10,-1,40,40.0,0,0.0,0.0,0.0,0.0,0,0,33010,0,24,Ford,C-MAX Hybrid FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),65.1335,0.0,67.3794,0.0,Large Cars,2013,5500,,,,,Hybrid,,,280V Li-Ion,FMX +12.19557,0.0,0.0,0.0,24,24.4211,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,27,27.4415,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,122,,7,2050,0,Regular,Regular Gasoline,7,-1,32,32.3283,0,0.0,0.0,0.0,0.0,0,0,33011,0,14,Mitsubishi,Lancer Sportback,N,false,0,95,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.322,0.0,45.56,0.0,Small Station Wagons,2013,1750,,,,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3028,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7407,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,124,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5558,0,0.0,0.0,0.0,0.0,0,0,33012,0,14,Mitsubishi,Lancer Sportback,N,false,0,95,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3921,0.0,40.026,0.0,Small Station Wagons,2013,1000,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,24,23.6446,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,26,26.486,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,14,,7,2100,0,Regular,Regular Gasoline,7,-1,31,31.0458,0,0.0,0.0,0.0,0.0,0,0,33013,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),28.0549,0.0,42.473,0.0,Small Station Wagons,2013,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7343,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3594,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,24,,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.7402,0,0.0,0.0,0.0,0.0,0,0,33014,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.3044,0.0,44.5088,0.0,Small Station Wagons,2013,1500,,,,,,,,,VWX +14.327048,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.1671,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,250,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.8202,0,0.0,0.0,0.0,0.0,0,0,33015,0,0,Ford,Transit Connect Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.4,0.0,37.5,0.0,Special Purpose Vehicle 2WD,2013,0,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.6107,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,251,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,33016,0,0,Ford,Transit Connect Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.4,0.0,37.3,0.0,Special Purpose Vehicle 2WD,2013,500,,,,,,,,,FMX +12.657024,0.0,0.0,0.0,23,22.6258,0,0.0,0.0,0.0,0.0,338,-1,0.0,338.0,26,26.2125,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,121,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.5115,0,0.0,0.0,0.0,0.0,0,0,33017,0,0,Ford,Escape FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.836,0.0,45.8302,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,T,,,,,,FMX +16.4805,4.679378,0.0,0.0,17,17.0,13,13.4857,0.0,0.0,0.0,443,379,379.0,443.0,20,20.0,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,106,SIDI; FFV,5,2750,2850,Gasoline or E85,Regular Gasoline,5,6,24,24.0,22,22.296,0.0,0.0,0.0,0,0,33018,0,0,GMC,Terrain FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,FFV,E85,330,,GMX +18.304342000000002,0.0,0.0,0.0,17,16.7,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,500,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.1,0,0.0,0.0,0.0,0.0,0,0,33019,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,29.3,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,CRX +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1014,(FFS) (SPFI),-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,16,88,3302,13,13,Renault,Alliance,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,52.0,0.0,Compact Cars,1987,3500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.9,0,0.0,0.0,0.0,0.0,505,-1,0.0,505.0,18,17.5,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,501,,4,3050,0,Regular,Regular Gasoline,4,-1,20,20.1,0,0.0,0.0,0.0,0.0,0,0,33020,0,0,Jeep,Wrangler Unlimited 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,27.8,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,481,-1,0.0,481.0,18,18.4283,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,505,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,33021,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,29.8,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.7,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.6,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,506,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.7,0,0.0,0.0,0.0,0.0,0,0,33022,0,0,Jeep,Wrangler Unlimited 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.7,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1729,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,24,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,33023,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.2,0.0,36.0,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,TYX +0.192,0.0,0.0,4.0,110,110.048,0,0.0,0.0,31.0,0.0,0,-1,0.0,0.0,105,104.7587,0,0.0,32.0,0.0,0.0,,,Front-Wheel Drive,242,,10,600,0,Electricity,Electricity,10,-1,99,98.9461,0,0.0,0.0,34.0,0.0,23,90,33024,0,13,Ford,Focus Electric,Y,false,0,90,76,79.7573,0.0,71.5259,0.0,Automatic (A1),157.2114,0.0,141.3516,0.0,Compact Cars,2013,9000,,,,,EV,,,107 kW AC PMSM,FMX +25.336022,0.0,0.0,0.0,11,10.6055,0,0.0,0.0,0.0,0.0,676,-1,0.0,676.0,13,13.1199,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,92,,2,4650,0,Premium,Premium Gasoline,2,-1,18,18.4729,0,0.0,0.0,0.0,0.0,0,0,33025,0,0,Lamborghini,Aventador Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),12.6,0.0,25.2,0.0,Two Seaters,2013,-11250,G,,,,,,,,NLX +21.974,0.0,0.0,0.0,13,13.4554,0,0.0,0.0,0.0,0.0,576,-1,0.0,576.0,15,15.4285,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7976,0,0.0,0.0,0.0,0.0,0,0,33026,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6125,0.0,25.985,0.0,Minicompact Cars,2013,-8000,G,,,,,,,,FEX +10.613442000000001,0.0,0.0,0.0,28,28.4,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.8,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,2,,8,1950,0,Premium,Premium Gasoline,8,-1,34,34.3,0,0.0,0.0,0.0,0.0,7,76,33027,0,0,Fiat,500,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.9,0.0,48.5,0.0,Minicompact Cars,2013,2250,,,T,,,,,,CRX +10.613442000000001,0.0,0.0,0.0,28,28.4,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.8,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,123,,8,1950,0,Premium,Premium Gasoline,8,-1,34,34.3,0,0.0,0.0,0.0,0.0,7,76,33028,0,0,Fiat,500 Abarth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.9,0.0,48.5,0.0,Minicompact Cars,2013,2250,,,T,,,,,,CRX +10.987,0.0,0.0,0.0,27,27.1,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.9,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,191,,8,2000,0,Premium,Premium Gasoline,8,-1,34,34.2,0,0.0,0.0,0.0,0.0,7,76,33029,0,0,Fiat,500,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.1,0.0,48.3,0.0,Minicompact Cars,2013,2000,,,,,,,,,CRX +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1014,(FFS) (SPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,3303,13,13,Renault,Alliance,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,48.7179,0.0,Compact Cars,1987,2750,,,,,,,,, +9.690534,0.0,0.0,0.0,31,30.8,0,0.0,0.0,0.0,0.0,260,-1,0.0,260.0,34,34.2,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,192,,9,1750,0,Premium,Premium Gasoline,9,-1,40,39.6,0,0.0,0.0,0.0,0.0,7,76,33030,0,0,Fiat,500,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.3816,0.0,56.3684,0.0,Minicompact Cars,2013,3250,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,18,18.1019,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5377,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,128,,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.0431,0,0.0,0.0,0.0,0.0,0,0,33031,10,0,BMW,128i,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.709,0.0,39.2785,0.0,Subcompact Cars,2013,-1750,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.604,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.8936,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,129,,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.9298,0,0.0,0.0,0.0,0.0,0,0,33032,10,0,BMW,128i,Y,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3795,0.0,39.1134,0.0,Subcompact Cars,2013,-1750,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.742,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.9082,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,130,,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.7407,0,0.0,0.0,0.0,0.0,0,0,33033,8,0,BMW,128ci Convertible,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2298,0.0,37.3846,0.0,Subcompact Cars,2013,-2250,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.604,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.8936,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,131,,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.9298,0,0.0,0.0,0.0,0.0,0,0,33034,8,0,BMW,128ci Convertible,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3795,0.0,39.1134,0.0,Subcompact Cars,2013,-1750,,,,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.0201,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,136,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.3323,0,0.0,0.0,0.0,0.0,0,0,33035,10,0,BMW,135i,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,39.7,0.0,Subcompact Cars,2013,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.261,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.1372,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,306,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2872,0,0.0,0.0,0.0,0.0,0,0,33036,11,0,BMW,328i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.5912,0.0,35.2793,0.0,Subcompact Cars,2013,-3000,,,,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.3001,0,0.0,0.0,0.0,0.0,461,-1,0.0,461.0,19,19.298,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,307,,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.8939,0,0.0,0.0,0.0,0.0,0,0,33037,11,0,BMW,328i Coupe xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.3218,0.0,34.7111,0.0,Subcompact Cars,2013,-3750,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.742,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.9082,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,312,,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.7407,0,0.0,0.0,0.0,0.0,0,0,33038,11,0,BMW,328i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2298,0.0,37.3846,0.0,Subcompact Cars,2013,-2250,,,,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.7092,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.9631,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,313,,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.1989,0,0.0,0.0,0.0,0.0,0,0,33039,11,0,BMW,328i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8612,0.0,36.5988,0.0,Subcompact Cars,2013,-3000,,,,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1014,(FFS) (SPFI),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,88,3304,13,13,Renault,Alliance,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,51.2821,0.0,Compact Cars,1987,3000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,13.8324,0,0.0,0.0,0.0,0.0,546,-1,0.0,546.0,16,16.2027,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,362,,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.4954,0,0.0,0.0,0.0,0.0,0,0,33040,11,0,BMW,M3 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.1,0.0,28.4,0.0,Subcompact Cars,2013,-6750,G,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.7438,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,16.051,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,363,,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.1945,0,0.0,0.0,0.0,0.0,0,0,33041,11,0,BMW,M3 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.9853,0.0,27.9711,0.0,Subcompact Cars,2013,-6750,G,,,,,,,,BMX +20.589638,0.0,0.0,0.0,13,13.4457,0,0.0,0.0,0.0,0.0,565,-1,0.0,565.0,16,15.6933,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,364,,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7231,0,0.0,0.0,0.0,0.0,0,0,33042,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.6,0.0,27.3,0.0,Subcompact Cars,2013,-6750,G,,,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5006,0,0.0,0.0,0.0,0.0,564,-1,0.0,564.0,16,15.7486,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,365,,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7726,0,0.0,0.0,0.0,0.0,0,0,33043,9,0,BMW,M3 Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.671,0.0,27.3704,0.0,Subcompact Cars,2013,-6750,G,,,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.5573,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.4148,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,650,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6047,0,0.0,0.0,0.0,0.0,0,0,33044,13,0,BMW,650i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.6608,0.0,34.2937,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6191,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1115,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,660,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33045,11,0,BMW,M6 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1212,0.0,30.0,0.0,Subcompact Cars,2013,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.6044,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9979,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,661,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3803,0,0.0,0.0,0.0,0.0,0,0,33046,11,0,BMW,M6 Coupe,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.8051,0.0,28.2359,0.0,Subcompact Cars,2013,-6750,G,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.1075,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3315,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.7447,0,0.0,0.0,0.0,0.0,0,0,33047,8,0,Nissan,Altima Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.5,0.0,44.7,0.0,Subcompact Cars,2013,1500,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,22.0914,0,0.0,0.0,0.0,0.0,353,-1,0.0,353.0,25,24.9721,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,51,,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.7066,0,0.0,0.0,0.0,0.0,7,90,33048,0,0,Suzuki,SX4 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1022,0.0,41.7078,0.0,Subcompact Cars,2013,1000,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,23,22.694,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,25.2913,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,52,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.4045,0,0.0,0.0,0.0,0.0,7,90,33049,0,0,Suzuki,SX4 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9299,0.0,41.2658,0.0,Subcompact Cars,2013,1000,,,,,,,,,SKX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1017,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,3305,13,13,Renault,Alliance,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1987,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.0874,0,0.0,0.0,0.0,0.0,351,-1,0.0,351.0,25,25.1066,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,,6,2200,0,Regular,Regular Gasoline,6,-1,30,30.1424,0,0.0,0.0,0.0,0.0,7,90,33050,0,0,Suzuki,SX4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.0966,0.0,42.3461,0.0,Subcompact Cars,2013,1000,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,23.2073,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,25.7089,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.6098,0,0.0,0.0,0.0,0.0,7,90,33051,0,0,Suzuki,SX4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.6378,0.0,41.5661,0.0,Subcompact Cars,2013,1500,,,,,,,,,SKX +14.964294,0.0,0.0,0.0,18,18.1019,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5377,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,302,,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.0431,0,0.0,0.0,0.0,0.0,0,0,33052,0,16,BMW,328i Coupe,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),22.709,0.0,39.2785,0.0,Subcompact Cars,2013,-1750,,,,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.604,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.8936,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.9298,0,0.0,0.0,0.0,0.0,0,0,33053,0,16,BMW,328i Coupe,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3795,0.0,39.1134,0.0,Subcompact Cars,2013,-1750,,,,,,,,,BMX +12.657024,0.0,0.0,0.0,23,22.5689,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.2258,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,335,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.7022,0,0.0,0.0,0.0,0.0,0,0,33054,0,13,BMW,335i,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),28.7578,0.0,46.1117,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,22.5689,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.2258,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,640,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.7022,0,0.0,0.0,0.0,0.0,0,0,33055,13,0,BMW,640i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.7578,0.0,46.1117,0.0,Subcompact Cars,2013,500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3453,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,652,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33056,13,0,BMW,650i Coupe xDrive,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.0,0.0,33.0,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.5573,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.4148,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,654,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6047,0,0.0,0.0,0.0,0.0,0,0,33057,12,0,BMW,650i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.6608,0.0,34.2937,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,656,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33058,12,0,BMW,650i Convertible xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Subcompact Cars,2013,-3750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6191,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1115,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,662,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33059,12,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1212,0.0,30.0,0.0,Subcompact Cars,2013,-5750,G,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1017,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,88,3306,13,13,Renault,Alliance,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,48.0,0.0,Compact Cars,1987,2250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,13.6044,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9979,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,663,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3803,0,0.0,0.0,0.0,0.0,0,0,33060,12,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.8051,0.0,28.2359,0.0,Subcompact Cars,2013,-6750,G,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,65,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,32,32.2876,0,0.0,0.0,0.0,0.0,0,0,33061,0,16,MINI,Cooper S Countryman Coupe,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2013,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,22.8359,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,26,26.4731,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.8723,0,0.0,0.0,0.0,0.0,0,0,33062,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.1254,0.0,46.3629,0.0,Compact Cars,2013,1500,,,,,,,,,SKX +11.75609,0.0,0.0,0.0,25,25.2754,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.9417,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,,7,1950,0,Regular,Regular Gasoline,7,-1,32,32.0774,0,0.0,0.0,0.0,0.0,0,0,33063,0,16,Suzuki,SX4 Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.516,0.0,45.1901,0.0,Compact Cars,2013,2250,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,22.6294,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,25.989,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57,,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.7502,0,0.0,0.0,0.0,0.0,0,0,33064,0,16,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.841,0.0,44.708,0.0,Compact Cars,2013,1500,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,23.0606,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.6096,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,58,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.6098,0,0.0,0.0,0.0,0.0,0,0,33065,0,16,Suzuki,SX4 Sport,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.4352,0.0,41.5661,0.0,Compact Cars,2013,1500,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,23,22.9476,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.7199,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,62,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.1756,0,0.0,0.0,0.0,0.0,0,0,33066,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.2794,0.0,42.3947,0.0,Compact Cars,2013,1500,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,21,21.0716,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5027,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,63,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.5906,0,0.0,0.0,0.0,0.0,0,0,33067,0,13,Suzuki,Kizashi S,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7092,0.0,43.0035,0.0,Compact Cars,2013,1000,,,,,,,,,SKX +13.73375,0.0,0.0,0.0,20,20.4407,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.7165,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,64,,6,2300,0,Regular,Regular Gasoline,6,-1,29,29.4935,0,0.0,0.0,0.0,0.0,0,0,33068,0,13,Suzuki,Kizashi,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.8524,0.0,41.3959,0.0,Compact Cars,2013,500,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,23,22.5314,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.2518,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,65,,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.6233,0,0.0,0.0,0.0,0.0,0,0,33069,0,13,Suzuki,Kizashi S AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.7062,0.0,41.5858,0.0,Compact Cars,2013,1000,,,,,,,,,SKX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1020,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3307,13,0,Renault,GTA,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,22.0712,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.7653,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,66,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.1079,0,0.0,0.0,0.0,0.0,0,0,33070,0,13,Suzuki,Kizashi AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.0744,0.0,40.8321,0.0,Compact Cars,2013,1000,,,,,,,,,SKX +15.689436,0.0,0.0,0.0,17,17.2616,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9695,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,98,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,28.4347,0,0.0,0.0,0.0,0.0,0,0,33071,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),21.7885,0.0,38.4,0.0,Midsize Cars,2013,-2250,,,T,,,,,,ADX +11.75609,0.0,0.0,0.0,25,25.4135,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.3268,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,350,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.9423,0,0.0,0.0,0.0,0.0,0,0,33072,0,10,BMW,ActiveHybrid 3,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),32.7097,0.0,46.4664,0.0,Compact Cars,2013,1250,,,T,,Hybrid,,,374V Li-Ion,BMX +12.657024,0.0,0.0,0.0,23,22.7855,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6519,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,545,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3125,0,0.0,0.0,0.0,0.0,0,0,33073,0,10,BMW,ActiveHybrid 5,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2943,0.0,41.9998,0.0,Midsize Cars,2013,500,,,T,,Hybrid,,,374V Li-Ion,BMX +17.337486000000002,0.0,0.0,0.0,16,15.6701,0,0.0,0.0,0.0,0.0,477,-1,0.0,477.0,19,18.6064,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,552,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.1334,0,0.0,0.0,0.0,0.0,0,0,33074,0,14,BMW,550i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4941,0.0,33.6143,0.0,Midsize Cars,2013,-3750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6191,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1115,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,560,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33075,0,14,BMW,M5,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1212,0.0,30.0,0.0,Midsize Cars,2013,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.6044,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9979,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,561,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3803,0,0.0,0.0,0.0,0.0,0,0,33076,0,14,BMW,M5,Y,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.8051,0.0,28.2359,0.0,Midsize Cars,2013,-6750,G,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.5573,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.4148,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,657,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6047,0,0.0,0.0,0.0,0.0,0,0,33077,0,16,BMW,650i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),20.6608,0.0,34.2937,0.0,Compact Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,658,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33078,0,16,BMW,650i xDrive Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Compact Cars,2013,-3750,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6191,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1115,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,664,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33079,0,16,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1212,0.0,30.0,0.0,Compact Cars,2013,-5750,G,,T,,,,,,BMX +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3308,14,0,Rolls-Royce,Camargue,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Compact Cars,1987,-22500,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,13.6044,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9979,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,665,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3803,0,0.0,0.0,0.0,0.0,0,0,33080,0,16,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.8051,0.0,28.2359,0.0,Compact Cars,2013,-6750,G,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.7345,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,161,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,27,26.7513,0,0.0,0.0,0.0,0.0,0,0,33081,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,37.4,0.0,Midsize Cars,2013,-500,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,27,27.1,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.7203,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,701,,8,1950,0,Premium,Premium Gasoline,8,-1,37,36.7,0,0.0,0.0,0.0,0.0,13,97,33082,0,0,Dodge,Dart,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),35.1,0.0,52.0496,0.0,Midsize Cars,2013,2250,,,T,,,,,,CRX +7.009706,0.0,0.0,0.0,47,46.7654,0,0.0,0.0,0.0,0.0,190,-1,0.0,190.0,47,46.787,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,10,,10,1150,0,Regular,Regular Gasoline,10,-1,47,46.8135,0,0.0,0.0,0.0,0.0,0,0,33083,0,16,Ford,Fusion Hybrid FWD,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),65.1335,0.0,67.3794,0.0,Midsize Cars,2013,6250,,,,,Hybrid,,,280V Li-Ion,FMX +11.360558000000001,0.0,0.0,0.0,25,25.264,0,0.0,0.0,0.0,0.0,302,-1,0.0,302.0,29,29.452,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,13,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,37,36.9352,0,0.0,0.0,0.0,0.0,0,0,33084,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.5,0.0,52.4,0.0,Midsize Cars,2013,2500,,,T,,,,,,FMX +11.75609,0.0,0.0,0.0,23,23.3844,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.6456,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,71,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,36,35.5671,0,0.0,0.0,0.0,0.0,0,0,33085,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8827,0.0,50.3592,0.0,Midsize Cars,2013,2250,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1802,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,77,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,33.0327,0,0.0,0.0,0.0,0.0,0,0,33086,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,46.6,0.0,Midsize Cars,2013,1500,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.2333,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.2162,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,83,,7,2100,0,Regular,Regular Gasoline,7,-1,34,33.5652,0,0.0,0.0,0.0,0.0,0,0,33087,0,16,Ford,Fusion FWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),28.2968,0.0,47.3875,0.0,Midsize Cars,2013,1500,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.7094,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.2041,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,93,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.3775,0,0.0,0.0,0.0,0.0,0,0,33088,0,16,Ford,Fusion AWD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5792,0.0,44.1595,0.0,Midsize Cars,2013,1000,,,T,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,16,16.0273,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3219,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,97,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.8053,0,0.0,0.0,0.0,0.0,0,0,33089,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),19.8586,0.0,33.9,0.0,Large Cars,2013,-3750,,,T,,,,,,ADX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,B202 (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,3309,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,27.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.1387,0,0.0,0.0,0.0,0.0,565,-1,0.0,565.0,16,15.6978,0,0.0,0.0,0.0,0.0,12,6.3,All-Wheel Drive,109,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.6025,0,0.0,0.0,0.0,0.0,0,0,33090,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),15.9,0.0,25.7,0.0,Large Cars,2013,-6750,G,,,,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.8535,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.9128,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,541,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.4531,0,0.0,0.0,0.0,0.0,0,0,33091,0,10,BMW,535i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),22.3781,0.0,36.9673,0.0,Large Cars,2013,-2250,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.6793,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5347,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,554,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8416,0,0.0,0.0,0.0,0.0,0,0,33092,0,10,BMW,550i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5061,0.0,33.194,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,555,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33093,0,10,BMW,550i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.9913,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.3269,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,740,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.43,0,0.0,0.0,0.0,0.0,0,0,33094,0,17,BMW,740i,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),23.8983,0.0,39.8424,0.0,Large Cars,2013,-1750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.9913,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.3269,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,741,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.43,0,0.0,0.0,0.0,0.0,0,0,33095,0,18,BMW,740Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),23.8983,0.0,39.8424,0.0,Large Cars,2013,-1750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,19.0204,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.1959,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,742,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.8862,0,0.0,0.0,0.0,0.0,0,0,33096,0,18,BMW,740Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),23.9374,0.0,39.0499,0.0,Large Cars,2013,-1750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,16.5573,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.4148,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6047,0,0.0,0.0,0.0,0.0,0,0,33097,0,14,BMW,750i,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),20.6608,0.0,34.2937,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.6793,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5347,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8416,0,0.0,0.0,0.0,0.0,0,0,33098,0,14,BMW,750Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5061,0.0,33.194,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,752,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33099,0,14,BMW,750i xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3323,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,17,90,331,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Compact Cars,1985,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47035,"B202 (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,3310,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1987,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,753,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33100,0,14,BMW,750Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.6793,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5347,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,754,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8416,0,0.0,0.0,0.0,0.0,0,0,33101,0,14,BMW,Alpina B7 SWB,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5061,0.0,33.194,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.6793,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5347,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,755,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8416,0,0.0,0.0,0.0,0.0,0,0,33102,0,14,BMW,Alpina B7 LWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5061,0.0,33.194,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,756,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33103,0,14,BMW,Alpina B7 SWB xDrive,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.0492,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7924,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,757,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7551,0,0.0,0.0,0.0,0.0,0,0,33104,0,14,BMW,Alpina B7 LWB xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9917,0.0,33.0696,0.0,Large Cars,2013,-3750,,,T,,,,,,BMX +21.974,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,586,-1,0.0,586.0,15,15.2002,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,760,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,20,20.3551,0,0.0,0.0,0.0,0.0,0,0,33105,0,14,BMW,760Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),15.5,0.0,28.2,0.0,Large Cars,2013,-8000,G,,T,,,,,,BMX +21.974,0.0,0.0,0.0,13,12.5264,0,0.0,0.0,0.0,0.0,580,-1,0.0,580.0,15,15.3013,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,5,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,21,20.9824,0,0.0,0.0,0.0,0.0,0,0,33106,0,14,Rolls-Royce,Ghost,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S8),15.1,0.0,26.4,0.0,Large Cars,2013,-8000,G,,T,,,,,,RRG +21.974,0.0,0.0,0.0,13,12.5264,0,0.0,0.0,0.0,0.0,580,-1,0.0,580.0,15,15.3013,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,6,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,21,20.9824,0,0.0,0.0,0.0,0.0,0,0,33107,0,14,Rolls-Royce,Ghost EWB,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic (S8),15.1,0.0,26.4,0.0,Large Cars,2013,-8000,G,,T,,,,,,RRG +11.75609,0.0,0.0,0.0,25,24.9025,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,28,27.502,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,27,,7,1950,0,Regular,Regular Gasoline,7,-1,32,31.5241,0,0.0,0.0,0.0,0.0,0,0,33108,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.9939,0.0,44.3752,0.0,Small Station Wagons,2013,2250,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,26,26.4664,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.8727,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,28,,8,1900,0,Regular,Regular Gasoline,8,-1,32,32.4824,0,0.0,0.0,0.0,0.0,0,0,33109,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.1928,0.0,45.7873,0.0,Small Station Wagons,2013,2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47015,B201 (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,3311,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1987,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,394,-1,0.0,394.0,22,22.408,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,31,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.9028,0,0.0,0.0,0.0,0.0,0,0,33110,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.5,0.0,36.1699,0.0,Small Station Wagons,2013,-500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.4492,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,23.9575,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,32,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.9526,0,0.0,0.0,0.0,0.0,0,0,33111,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.2238,0.0,39.1467,0.0,Small Station Wagons,2013,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.3445,0,0.0,0.0,0.0,0.0,366,-1,0.0,366.0,24,24.1104,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,33,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.6477,0,0.0,0.0,0.0,0.0,0,0,33112,0,20,Toyota,Matrix,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.081,0.0,40.16,0.0,Small Station Wagons,2013,500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.0121,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.6551,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,45,,4,2900,0,Regular,Regular Gasoline,4,-1,21,21.1518,0,0.0,0.0,0.0,0.0,0,0,33113,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.2616,0.0,29.3369,0.0,Small Pickup Trucks 2WD,2013,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.0109,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,46,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,33114,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,28.9,0.0,Small Pickup Trucks 2WD,2013,-3250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,19.4204,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,21,21.2593,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,62,,5,2600,0,Regular,Regular Gasoline,5,-1,24,24.0418,0,0.0,0.0,0.0,0.0,0,0,33115,0,0,Toyota,Tacoma 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4748,0.0,35.7551,0.0,Small Pickup Trucks 2WD,2013,-1000,,,,,,,,,TYX +14.327048,0.0,0.0,0.0,21,20.9361,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.5185,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,63,,6,2400,0,Regular,Regular Gasoline,6,-1,25,24.8105,0,0.0,0.0,0.0,0.0,0,0,33116,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.5249,0.0,36.6373,0.0,Small Pickup Trucks 2WD,2013,0,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8087,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,47,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,33117,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,28.7,0.0,Small Pickup Trucks 4WD,2013,-3250,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,16,15.5034,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.0043,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,48,,4,3250,0,Regular,Regular Gasoline,4,-1,19,19.2863,0,0.0,0.0,0.0,0.0,0,0,33118,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2757,0.0,26.6789,0.0,Small Pickup Trucks 4WD,2013,-4250,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,18,18.0883,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.2976,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,64,,4,2900,0,Regular,Regular Gasoline,4,-1,21,21.0147,0,0.0,0.0,0.0,0.0,0,0,33119,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.6909,0.0,31.4862,0.0,Small Pickup Trucks 4WD,2013,-2500,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47031,"B202 (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,3312,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Compact Cars,1987,-3000,,SIL,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,18.1387,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.1684,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,65,,4,2900,0,Regular,Regular Gasoline,4,-1,21,20.5975,0,0.0,0.0,0.0,0.0,0,0,33120,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.758,0.0,30.7868,0.0,Small Pickup Trucks 4WD,2013,-2500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,19.0113,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,20.9355,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,37,,5,2600,0,Regular,Regular Gasoline,5,-1,24,23.8909,0,0.0,0.0,0.0,0.0,0,0,33121,0,0,Toyota,Sienna 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,37.0,0.0,Minivan - 2WD,2013,-1000,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.0697,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6084,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,38,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8807,0,0.0,0.0,0.0,0.0,0,0,33122,0,0,Toyota,Sienna 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6661,0.0,34.692,0.0,Minivan - 2WD,2013,-1000,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,466,-1,0.0,466.0,19,18.7504,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,39,,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,33123,0,0,Toyota,Sienna AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3,0.0,32.0,0.0,Minivan - 4WD,2013,-2500,,,,,,,,,TYX +16.612308000000002,0.0,0.0,0.0,19,19.1,0,0.0,0.0,0.0,0.0,449,-1,0.0,449.0,23,22.6,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,5,,6,2600,0,Diesel,Diesel,4,-1,29,29.2,0,0.0,0.0,0.0,0.0,0,0,33124,0,0,Porsche,Cayenne Diesel,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,41.0,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,T,,Diesel,,,,PRX +12.657024,0.0,0.0,0.0,24,23.5105,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,25.9535,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,221,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.7292,0,0.0,0.0,0.0,0.0,0,0,33125,0,20,Mitsubishi,Outlander Sport 2WD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0571,0.0,41.7408,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,MTX +12.19557,0.0,0.0,0.0,24,24.3007,0,0.0,0.0,0.0,0.0,329,-1,0.0,329.0,27,26.7916,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,222,,7,2050,0,Regular,Regular Gasoline,7,-1,31,30.6289,0,0.0,0.0,0.0,0.0,0,0,33126,0,20,Mitsubishi,Outlander Sport 2WD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.1543,0.0,43.0596,0.0,Small Sport Utility Vehicle 2WD,2013,1750,,,,,,,,,MTX +14.964294,0.0,0.0,0.0,19,19.155,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.6198,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,91,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.6544,0,0.0,0.0,0.0,0.0,0,0,33127,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.1181,0.0,35.8103,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,SKX +15.689436,0.0,0.0,0.0,19,19.1164,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.2469,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,93,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.5973,0,0.0,0.0,0.0,0.0,0,0,33128,0,0,Suzuki,Grand Vitara,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0663,0.0,34.2831,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,SKX +12.657024,0.0,0.0,0.0,24,23.6038,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.7625,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,224,,7,2100,0,Regular,Regular Gasoline,7,-1,29,29.0047,0,0.0,0.0,0.0,0.0,0,0,33129,0,20,Mitsubishi,Outlander Sport 4WD,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.1864,0.0,40.6814,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,B202 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,3313,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Compact Cars,1987,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,431,-1,0.0,431.0,20,20.3,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,94,,5,2750,0,Regular,Regular Gasoline,5,-1,23,22.9,0,0.0,0.0,0.0,0.0,0,0,33130,0,0,Suzuki,Grand Vitara 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.4214,0.0,32.2765,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,SKX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,570,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33131,0,0,Buick,Enclave FWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,571,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33132,0,0,Chevrolet,Traverse FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,572,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33133,0,0,GMC,Acadia FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,494,-1,0.0,494.0,18,18.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,573,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,33134,0,0,Buick,Enclave AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.2,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6801,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,574,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,33135,0,0,Chevrolet,Traverse AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.2,0.0,Standard Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,15.7509,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.2565,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,575,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.6628,0,0.0,0.0,0.0,0.0,0,0,33136,0,0,GMC,Acadia AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6,0.0,31.5,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,GMX +23.534154,0.0,0.0,0.0,13,12.6858,0,0.0,0.0,0.0,0.0,622,-1,0.0,622.0,14,14.4216,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,142,SIDI;,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.3136,0,0.0,0.0,0.0,0.0,0,0,33137,0,0,Ferrari,458 Italia,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.6214,0.0,23.3642,0.0,Two Seaters,2013,-9500,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,12.9143,0,0.0,0.0,0.0,0.0,612,-1,0.0,612.0,15,14.59,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,143,SIDI; with Stop-Start Option,3,4000,0,Premium,Premium Gasoline,3,-1,17,17.3179,0,0.0,0.0,0.0,0.0,0,0,33138,0,0,Ferrari,458 Italia,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.928,0.0,23.627,0.0,Two Seaters,2013,-8000,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,13,12.6858,0,0.0,0.0,0.0,0.0,622,-1,0.0,622.0,14,14.4216,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,144,SIDI;,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.3136,0,0.0,0.0,0.0,0.0,0,0,33139,0,0,Ferrari,458 Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.6214,0.0,23.3642,0.0,Two Seaters,2013,-9500,G,,,,,,,,FEX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,"B202 (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,3314,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Compact Cars,1987,-1000,,SIL,T,,,,,, +21.974,0.0,0.0,0.0,13,12.9143,0,0.0,0.0,0.0,0.0,612,-1,0.0,612.0,15,14.59,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,145,SIDI; with Stop-Start Option,3,4000,0,Premium,Premium Gasoline,3,-1,17,17.3179,0,0.0,0.0,0.0,0.0,0,0,33140,0,0,Ferrari,458 Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.928,0.0,23.627,0.0,Two Seaters,2013,-8000,G,,,,,,,,FEX +20.589638,0.0,0.0,0.0,14,13.7283,0,0.0,0.0,0.0,0.0,569,-1,0.0,569.0,16,15.6292,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,150,SIDI; with Stop-Start Option,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8129,0,0.0,0.0,0.0,0.0,0,0,33141,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.9653,0.0,26.0068,0.0,Minicompact Cars,2013,-6750,G,,,,,,,,FEX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1043,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.407,0.0,0.0,0.0,4,2.0,All-Wheel Drive,103,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.4969,0.0,0.0,0.0,0,0,33142,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.8291,17.8558,40.6029,28.7473,Subcompact Cars,2013,-500,,,T,,FFV,E85,270,,ADX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1043,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.407,0.0,0.0,0.0,4,2.0,All-Wheel Drive,104,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.4969,0.0,0.0,0.0,0,0,33143,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.8291,17.8558,40.6029,28.7473,Subcompact Cars,2013,-500,,,T,,FFV,E85,270,,ADX +11.360558000000001,0.0,0.0,0.0,27,26.6835,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.3517,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29,,8,1900,0,Regular,Regular Gasoline,8,-1,33,33.4385,0,0.0,0.0,0.0,0.0,11,84,33144,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,47.2,0.0,Subcompact Cars,2013,2500,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,27,26.8246,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,29,29.3744,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,30,,8,1900,0,Regular,Regular Gasoline,8,-1,33,33.2357,0,0.0,0.0,0.0,0.0,11,84,33145,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2013,2500,,,,,,,,,TYX +11.75609,0.0,0.0,0.0,24,23.6858,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.7528,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,,7,2150,0,Premium,Premium Gasoline,7,-1,35,35.124,0,0.0,0.0,0.0,0.0,0,0,33146,0,12,Acura,ILX,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),30.3,0.0,49.7,0.0,Compact Cars,2013,1250,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,21.8,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,25.3358,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.0,0,0.0,0.0,0.0,0.0,0,0,33147,0,12,Acura,ILX,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7,0.0,42.9,0.0,Compact Cars,2013,0,,,,,,,,,HNX +8.657756000000001,0.0,0.0,0.0,39,38.6811,0,0.0,0.0,0.0,0.0,228,-1,0.0,228.0,38,38.3669,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,5,,9,1600,0,Premium,Premium Gasoline,9,-1,38,37.9898,0,0.0,0.0,0.0,0.0,0,0,33148,0,12,Acura,ILX Hybrid,Y,false,0,89,0,0.0,0.0,0.0,0.0,Auto(AV-S7),52.2498,0.0,58.4359,0.0,Compact Cars,2013,4000,,,,,Hybrid,,,144V Li-Ion,HNX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,23.9644,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,23,,6,2500,0,Premium,Premium Gasoline,6,-1,29,29.1543,0,0.0,0.0,0.0,0.0,0,0,33149,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,40.9,0.0,Compact Cars,2013,-500,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,B201 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,3315,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Compact Cars,1987,-1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.5126,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,24,,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,33150,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),28.1,0.0,44.3,0.0,Compact Cars,2013,500,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.597,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,30,,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.1951,0,0.0,0.0,0.0,0.0,0,0,33151,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,39.5,0.0,Compact Cars,2013,-1000,,,,,,,,,HNX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1043,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.407,0.0,0.0,0.0,4,2.0,All-Wheel Drive,102,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.4969,0.0,0.0,0.0,0,0,33152,0,12,Audi,A4 quattro,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S8),25.8291,17.8558,40.6029,28.7473,Compact Cars,2013,-500,,,T,,FFV,E85,270,,ADX +13.73375,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9168,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,162,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,33153,0,14,Buick,Verano,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,42.0,0.0,Compact Cars,2013,500,,,T,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.8731,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,118,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.2687,0,0.0,0.0,0.0,0.0,0,0,33154,0,10,Cadillac,ATS AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,36.7,0.0,Compact Cars,2013,-1000,,,,,,,,,GMX +15.689436,4.679378,0.0,0.0,18,17.8699,13,13.4024,0.0,0.0,0.0,426,403,403.0,426.0,21,20.8731,16,15.6088,0.0,0.0,0.0,6,3.6,All-Wheel Drive,249,SIDI; FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,5,26,26.2687,20,19.5405,0.0,0.0,0.0,0,0,33155,0,10,Cadillac,ATS AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,16.8,36.7,27.3,Compact Cars,2013,-1000,,,,,FFV,E85,260,,GMX +14.964294,4.679378,0.0,0.0,19,18.7687,14,14.0765,0.0,0.0,0.0,406,380,380.0,406.0,22,21.9582,16,16.4281,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,313,SIDI; FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,28,27.7145,21,20.643,0.0,0.0,0.0,0,0,33156,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,17.7,38.8,28.9,Compact Cars,2013,-500,,,,,FFV,E85,260,,GMX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,21.9582,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,362,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,33157,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.8,0.0,Compact Cars,2013,-500,,,,,,,,,GMX +7.844718,0.0,0.0,0.0,41,40.7482,0,0.0,0.0,0.0,0.0,209,-1,0.0,209.0,42,42.2284,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,8,,10,1300,0,Regular,Regular Gasoline,10,-1,44,44.1904,0,0.0,0.0,0.0,0.0,0,0,33158,0,16,Honda,Insight,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.4695,0.0,63.3594,0.0,Compact Cars,2013,5500,,,,,Hybrid,,,101V Ni-MH,HNX +7.844718,0.0,0.0,0.0,41,40.8313,0,0.0,0.0,0.0,0.0,209,-1,0.0,209.0,42,42.3367,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,9,,10,1300,0,Regular,Regular Gasoline,10,-1,44,44.3345,0,0.0,0.0,0.0,0.0,0,0,33159,0,16,Honda,Insight,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AV-S7),55.6,0.0,63.5794,0.0,Compact Cars,2013,5500,,,,,Hybrid,,,101V Ni-MH,HNX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66033,"(A-ENGINE) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,83,3316,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0,0.0,Compact Cars,1987,-1000,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.1654,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,28,,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,33160,0,13,Acura,TL 2WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,40.7,0.0,Midsize Cars,2013,-1000,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.1311,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,35,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,33161,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.4,0.0,Midsize Cars,2013,-3000,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,419,-1,0.0,419.0,21,21.1672,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,36,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,33162,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,36.5,0.0,Midsize Cars,2013,-2250,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,15,15.2801,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6574,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,99,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.5632,0,0.0,0.0,0.0,0.0,0,0,33163,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),19.0,0.0,33.3,0.0,Midsize Cars,2013,-3750,,,T,,,,,,ADX +25.336022,0.0,0.0,0.0,11,10.5402,0,0.0,0.0,0.0,0.0,688,-1,0.0,688.0,13,12.8889,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,96,,2,4650,0,Premium,Premium Gasoline,2,-1,18,17.7129,0,0.0,0.0,0.0,0.0,0,0,33164,0,11,Bentley,Mulsanne,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),12.9,0.0,21.8,0.0,Midsize Cars,2013,-11250,G,,T,,,,,,BEX +13.73375,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9168,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,163,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,33165,0,16,Chevrolet,Malibu,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,42.0,0.0,Midsize Cars,2013,500,,,T,,,,,,GMX +10.283832,0.0,0.0,0.0,28,27.8786,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.1924,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,236,,8,1900,0,Premium,Premium Gasoline,8,-1,40,39.7005,0,0.0,0.0,0.0,0.0,13,97,33166,0,0,Dodge,Dart Aero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),36.1997,0.0,56.55,0.0,Midsize Cars,2013,2500,,,T,,,,,,CRX +10.283832,0.0,0.0,0.0,28,27.7387,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.3679,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,730,,8,1900,0,Premium,Premium Gasoline,8,-1,41,40.6616,0,0.0,0.0,0.0,0.0,13,97,33167,0,0,Dodge,Dart Aero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.0,0.0,58.0,0.0,Midsize Cars,2013,2500,,,T,,,,,,CRX +25.336022,0.0,0.0,0.0,11,10.7864,0,0.0,0.0,0.0,0.0,697,-1,0.0,697.0,13,12.763,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,151,SIDI;,2,4650,0,Premium,Premium Gasoline,2,-1,16,16.4467,0,0.0,0.0,0.0,0.0,22,90,33168,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),13.1973,0.0,22.66,0.0,Midsize Cars,2013,-11250,G,,,,,,,,FEX +25.336022,0.0,0.0,0.0,11,11.0659,0,0.0,0.0,0.0,0.0,684,-1,0.0,684.0,13,13.0,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,152,SIDI; with Stop-Start Option,2,4650,0,Premium,Premium Gasoline,2,-1,17,16.5531,0,0.0,0.0,0.0,0.0,22,90,33169,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),13.552,0.0,22.7818,0.0,Midsize Cars,2013,-11250,G,,,,,,,,FEX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,3317,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Compact Cars,1987,-500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,26.1047,0,0.0,0.0,0.0,0.0,303,-1,0.0,303.0,29,29.3514,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,20,SIDI,8,1900,0,Regular,Regular Gasoline,8,-1,35,34.613,0,0.0,0.0,0.0,0.0,0,0,33170,14,16,Honda,Accord,Y,false,92,103,0,0.0,0.0,0.0,0.0,Auto(AV-S7),33.6821,0.0,48.9408,0.0,Midsize Cars,2013,2500,,,,,,,,,HNX +11.75609,0.0,0.0,0.0,24,23.6162,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.508,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.336,0,0.0,0.0,0.0,0.0,0,0,33171,14,16,Honda,Accord,Y,false,92,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.2036,0.0,48.6929,0.0,Midsize Cars,2013,2250,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,21,21.0229,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.4445,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,31,,6,2200,0,Regular,Regular Gasoline,6,-1,34,34.2485,0,0.0,0.0,0.0,0.0,0,0,33172,14,16,Honda,Accord,Y,false,92,103,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.643,0.0,48.3999,0.0,Midsize Cars,2013,1000,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,21,20.6013,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,25,24.5532,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,32,,6,2200,0,Regular,Regular Gasoline,6,-1,32,32.0729,0,0.0,0.0,0.0,0.0,0,0,33173,14,16,Honda,Accord,Y,false,92,103,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0702,0.0,45.1834,0.0,Midsize Cars,2013,1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,18,18.1326,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5562,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0231,0,0.0,0.0,0.0,0.0,0,0,33174,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7499,0.0,39.2494,0.0,Midsize Cars,2013,-500,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.1745,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.6979,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,5,2750,0,Premium,Premium Gasoline,5,-1,26,25.8569,0,0.0,0.0,0.0,0.0,0,0,33175,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Auto(AV-S6),24.1442,0.0,36.1035,0.0,Midsize Cars,2013,-1750,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,20.2838,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,23.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,36,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,29.0,0,0.0,0.0,0.0,0.0,0,0,33176,0,16,Hyundai,Azera,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.6399,0.0,41.6798,0.0,Large Cars,2013,0,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.6697,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,33177,0,31,Acura,TSX Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4,0.0,42.0,0.0,Small Station Wagons,2013,0,,,,,,,,,HNX +14.327048,4.994,0.0,0.0,20,19.9584,14,13.5432,0.0,0.0,0.0,394,404,404.0,394.0,23,22.5112,15,15.3409,0.0,0.0,0.0,4,2.0,All-Wheel Drive,101,SIDI; FFV,6,2600,3050,Premium or E85,Premium Gasoline,6,5,27,26.6824,18,18.3117,0.0,0.0,0.0,0,0,33178,0,28,Audi,allroad quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2,17.1,37.3,25.6,Small Station Wagons,2013,-1000,,,T,,FFV,E85,250,,ADX +11.360558000000001,0.0,0.0,0.0,27,26.8238,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.9524,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,121,,8,2100,0,Premium,Premium Gasoline,8,-1,32,32.0622,0,0.0,0.0,0.0,0.0,0,0,33179,0,10,Nissan,Juke,N,false,0,87,0,0.0,0.0,0.0,0.0,Auto(AV-S6),34.6988,0.0,45.1676,0.0,Small Station Wagons,2013,1500,,,T,,,,,,NSX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,83,3318,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Compact Cars,1987,0,,,T,,,,,, +12.19557,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,27.2747,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,122,,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,33180,0,10,Nissan,Juke,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,43.4,0.0,Small Station Wagons,2013,750,,,T,,,,,,NSX +12.19557,0.0,0.0,0.0,25,25.264,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.1104,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,123,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,33181,0,10,Nissan,Juke AWD,N,false,0,87,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.5,0.0,41.8,0.0,Small Station Wagons,2013,750,,,T,,,,,,NSX +19.381068,5.758082,0.0,0.0,15,14.9543,11,11.0646,0.0,0.0,0.0,521,499,499.0,521.0,17,17.0717,13,12.5953,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,218,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.6442,15,15.1583,0.0,0.0,0.0,0,0,33182,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.558,13.731,28.6122,21.0089,Standard Pickup Trucks 2WD,2013,-4250,,,,,FFV,E85,340/470,,FMX +19.381068,5.758082,0.0,0.0,15,14.964,11,11.0713,0.0,0.0,0.0,520,499,499.0,520.0,17,17.083,13,12.6034,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,219,FFV,4,3250,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.6584,15,15.1689,0.0,0.0,0.0,0,0,33183,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5706,13.7397,28.6325,21.0241,Standard Pickup Trucks 2WD,2013,-4250,,,,,FFV,E85,360/500,,FMX +21.974,0.0,0.0,0.0,13,12.8248,0,0.0,0.0,0.0,0.0,601,-1,0.0,601.0,15,14.7826,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,224,,3,3650,0,Regular,Regular Gasoline,3,-1,18,18.1734,0,0.0,0.0,0.0,0.0,0,0,33184,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8,0.0,25.1,0.0,Standard Pickup Trucks 2WD,2013,-6250,,,,,,,,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.5779,12,12.2133,0.0,0.0,0.0,471,449,449.0,471.0,19,18.8699,14,13.9321,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,227,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.7069,17,16.8263,0.0,0.0,0.0,0,0,33185,0,0,Ford,F150 Pickup 2WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6879,15.2412,31.5633,23.3891,Standard Pickup Trucks 2WD,2013,-2500,,,,,FFV,E85,360/500,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.6249,12,12.2452,0.0,0.0,0.0,470,448,448.0,470.0,19,18.9232,14,13.9718,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,228,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.7706,17,16.8811,0.0,0.0,0.0,0,0,33186,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.75,15.2836,31.6547,23.4674,Standard Pickup Trucks 2WD,2013,-2500,,,,,FFV,E85,360/500,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.2178,0,0.0,0.0,0.0,0.0,481,-1,0.0,481.0,18,18.4749,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,229,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.2615,0,0.0,0.0,0.0,0.0,0,0,33187,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2135,0.0,30.9246,0.0,Standard Pickup Trucks 2WD,2013,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.2032,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4623,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,230,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.2547,0,0.0,0.0,0.0,0.0,0,0,33188,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.1943,0.0,30.9149,0.0,Standard Pickup Trucks 2WD,2013,-3250,,,T,,,,,,FMX +21.974,0.0,0.0,0.0,13,12.9488,0,0.0,0.0,0.0,0.0,601,-1,0.0,601.0,15,14.8009,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,284,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.9364,0,0.0,0.0,0.0,0.0,0,0,33189,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.9596,0.0,24.7643,0.0,Standard Pickup Trucks 2WD,2013,-6250,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,83,3319,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1987,1000,,,,,,,,, +21.974,6.806822,0.0,0.0,13,12.8125,9,9.4053,0.0,0.0,0.0,605,583,583.0,605.0,15,14.6882,11,10.8166,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.889,13,13.2459,0.0,0.0,0.0,0,0,33190,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.7843,11.5869,24.6972,18.2871,Standard Pickup Trucks 2WD,2013,-6250,,,,,FFV,E85,310,,NSX +20.589638,6.806822,0.0,0.0,14,14.0639,10,9.7598,0.0,0.0,0.0,551,584,584.0,551.0,16,16.085,11,10.8214,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,622,FFV,3,3450,4150,Gasoline or E85,Regular Gasoline,3,3,20,19.5122,12,12.4806,0.0,0.0,0.0,0,0,33191,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.4,11.9,27.0,17.1,Standard Pickup Trucks 2WD,2013,-5250,,,,,FFV,E85,290/350,,CRX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,560,-1,0.0,560.0,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,628,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,33192,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2013,-6000,,,,,,,,,CRX +16.4805,5.348574,0.0,0.0,17,16.956,12,12.2094,0.0,0.0,0.0,449,444,444.0,449.0,20,19.7599,14,14.1064,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,657,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,24.7651,17,17.4131,0.0,0.0,0.0,0,0,33193,0,0,Ram,1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1874,15.0105,34.5252,24.0241,Standard Pickup Trucks 2WD,2013,-1750,,,,,FFV,E85,360/450,,CRX +19.381068,0.0,0.0,0.0,16,15.7201,0,0.0,0.0,0.0,0.0,507,-1,0.0,507.0,17,17.2804,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,52,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.6661,0,0.0,0.0,0.0,0.0,0,0,33194,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5596,0.0,27.2189,0.0,Standard Pickup Trucks 2WD,2013,-4250,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,14.8364,0,0.0,0.0,0.0,0.0,529,-1,0.0,529.0,17,16.7891,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,53,,4,3250,0,Regular,Regular Gasoline,4,-1,20,20.0078,0,0.0,0.0,0.0,0.0,0,0,33195,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4042,0.0,27.7052,0.0,Standard Pickup Trucks 2WD,2013,-4250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.3175,0,0.0,0.0,0.0,0.0,588,-1,0.0,588.0,15,15.0942,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,57,,3,3650,0,Regular,Regular Gasoline,3,-1,18,18.035,0,0.0,0.0,0.0,0.0,0,0,33196,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.4346,0.0,24.9039,0.0,Standard Pickup Trucks 2WD,2013,-6250,,,,,,,,,TYX +25.336022,0.0,0.0,0.0,11,11.4966,0,0.0,0.0,0.0,0.0,680,-1,0.0,680.0,13,13.0696,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,199,,2,4250,0,Regular,Regular Gasoline,2,-1,16,15.694,0,0.0,0.0,0.0,0.0,0,0,33197,0,0,Ford,F150 Raptor Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.1,0.0,21.6,0.0,Standard Pickup Trucks 4WD,2013,-9250,,,,,,,,,FMX +25.336022,0.0,0.0,0.0,12,11.6208,0,0.0,0.0,0.0,0.0,668,-1,0.0,668.0,13,13.2968,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,200,,2,4250,0,Regular,Regular Gasoline,2,-1,16,16.1421,0,0.0,0.0,0.0,0.0,0,0,33198,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.2584,0.0,22.2307,0.0,Standard Pickup Trucks 4WD,2013,-9250,,,,,,,,,FMX +20.589638,6.242500000000001,0.0,0.0,14,14.0658,10,10.3988,0.0,0.0,0.0,559,537,537.0,559.0,16,15.8883,12,11.7046,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,220,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.8777,14,13.8266,0.0,0.0,0.0,0,0,33199,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.4024,12.8655,26.0987,19.1155,Standard Pickup Trucks 4WD,2013,-5250,,,,,FFV,E85,310/430,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3320,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,90,332,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66033,"(A-ENGINE) (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,19,83,3320,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Compact Cars,1987,-2500,,,T,,,,,, +20.589638,6.242500000000001,0.0,0.0,14,14.0379,10,10.3672,0.0,0.0,0.0,561,539,539.0,561.0,16,15.8393,12,11.6614,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,221,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.7856,14,13.7609,0.0,0.0,0.0,0,0,33200,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.3662,12.8252,25.968,19.0222,Standard Pickup Trucks 4WD,2013,-5250,,,,,FFV,E85,360/500,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.6721,11,11.4767,0.0,0.0,0.0,506,486,486.0,506.0,18,17.5592,13,12.9058,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,225,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.5894,15,15.2226,0.0,0.0,0.0,0,0,33201,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.4967,14.2774,28.5341,21.0964,Standard Pickup Trucks 4WD,2013,-3250,,,,,FFV,E85,340/470,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.6732,11,11.4774,0.0,0.0,0.0,506,486,486.0,506.0,18,17.5604,13,12.9066,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,226,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.5907,15,15.2235,0.0,0.0,0.0,0,0,33202,0,0,Ford,F150 Pickup 4WD FFV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4981,14.2784,28.536,21.0978,Standard Pickup Trucks 4WD,2013,-3250,,,,,FFV,E85,340/470,,FMX +19.381068,0.0,0.0,0.0,15,14.994,0,0.0,0.0,0.0,0.0,520,-1,0.0,520.0,17,17.1541,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,232,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.82,0,0.0,0.0,0.0,0.0,0,0,33203,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6098,0.0,28.8631,0.0,Standard Pickup Trucks 4WD,2013,-4250,,,T,,,,,,FMX +19.381068,0.0,0.0,0.0,15,14.9866,0,0.0,0.0,0.0,0.0,520,-1,0.0,520.0,17,17.1413,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,233,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.7956,0,0.0,0.0,0.0,0.0,0,0,33204,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6001,0.0,28.8283,0.0,Standard Pickup Trucks 4WD,2013,-4250,,,T,,,,,,FMX +23.534154,0.0,0.0,0.0,12,12.0825,0,0.0,0.0,0.0,0.0,643,-1,0.0,643.0,14,13.8092,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,285,,2,3950,0,Regular,Regular Gasoline,2,-1,17,16.7317,0,0.0,0.0,0.0,0.0,0,0,33205,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.848,0.0,23.0618,0.0,Standard Pickup Trucks 4WD,2013,-7750,,,,,,,,,NSX +23.534154,7.4910000000000005,0.0,0.0,12,12.1384,9,8.9478,0.0,0.0,0.0,639,620,620.0,639.0,14,13.9141,10,10.1726,0.0,0.0,0.0,8,5.6,4-Wheel Drive,294,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.9436,12,12.2165,0.0,0.0,0.0,0,0,33206,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9196,10.9979,23.3609,16.8435,Standard Pickup Trucks 4WD,2013,-7750,,,,,FFV,E85,280,,NSX +20.589638,6.806822,0.0,0.0,14,13.8324,10,9.7598,0.0,0.0,0.0,564,584,584.0,564.0,16,15.7675,11,10.8214,0.0,0.0,0.0,8,4.7,4-Wheel Drive,621,FFV,3,3450,4150,Gasoline or E85,Regular Gasoline,3,3,19,19.0195,12,12.4806,0.0,0.0,0.0,0,0,33207,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,11.9,26.3,17.1,Standard Pickup Trucks 4WD,2013,-5250,,,,,FFV,E85,290/350,,CRX +21.974,0.0,0.0,0.0,13,13.3682,0,0.0,0.0,0.0,0.0,582,-1,0.0,582.0,15,15.283,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,625,,3,3850,0,Midgrade,Midgrade Gasoline,3,-1,19,18.5262,0,0.0,0.0,0.0,0.0,0,0,33208,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.5,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2013,-7250,,,,,,,,,CRX +17.337486000000002,5.758082,0.0,0.0,16,16.1315,11,11.4966,0.0,0.0,0.0,474,476,476.0,474.0,19,18.7408,13,13.2218,0.0,0.0,0.0,6,3.6,4-Wheel Drive,656,FFV,4,2900,3500,Gasoline or E85,Regular Gasoline,4,4,23,23.3591,16,16.1913,0.0,0.0,0.0,0,0,33209,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.1,14.1,32.5,22.3,Standard Pickup Trucks 4WD,2013,-2500,,,,,FFV,E85,340/420,,CRX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,83,3321,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Compact Cars,1987,-1000,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,13.9096,0,0.0,0.0,0.0,0.0,562,-1,0.0,562.0,16,15.8006,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,54,,3,3450,0,Regular,Regular Gasoline,3,-1,19,18.9491,0,0.0,0.0,0.0,0.0,0,0,33210,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.2,0.0,26.2,0.0,Standard Pickup Trucks 4WD,2013,-5250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.018,0,0.0,0.0,0.0,0.0,609,-1,0.0,609.0,15,14.5318,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,58,,3,3650,0,Regular,Regular Gasoline,3,-1,17,16.9393,0,0.0,0.0,0.0,0.0,0,0,33211,0,0,Toyota,Tundra 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0486,0.0,23.3548,0.0,Standard Pickup Trucks 4WD,2013,-6250,,,,,,,,,TYX +21.974,6.806822,0.0,0.0,13,13.1393,9,9.4085,0.0,0.0,0.0,596,575,575.0,596.0,15,14.834,11,10.5755,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,60,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.61,12,12.4652,0.0,0.0,0.0,0,0,33212,0,0,Toyota,Tundra 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.2049,11.6037,24.3025,17.2025,Standard Pickup Trucks 4WD,2013,-6250,,,,,FFV,E85,290,,TYX +21.974,7.4910000000000005,0.0,0.0,13,13.1355,9,9.4868,0.0,0.0,0.0,613,600,600.0,613.0,15,14.5028,10,10.4895,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,123,FFV,3,3650,4550,Gasoline or E85,Regular Gasoline,3,2,17,16.617,12,12.0455,0.0,0.0,0.0,0,0,33213,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,11.7,22.9,16.6,"Vans, Cargo Type",2013,-6250,,,,,FFV,E85,460,,FMX +21.974,7.4910000000000005,0.0,0.0,13,13.1355,9,9.4868,0.0,0.0,0.0,613,600,600.0,613.0,15,14.5028,10,10.4895,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,125,FFV,3,3650,4550,Gasoline or E85,Regular Gasoline,3,2,17,16.617,12,12.0455,0.0,0.0,0.0,0,0,33214,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.2,11.7,22.9,16.6,"Vans, Cargo Type",2013,-6250,,,,,FFV,E85,330,,FMX +23.534154,7.4910000000000005,0.0,0.0,12,12.2793,9,9.4331,0.0,0.0,0.0,647,602,602.0,647.0,14,13.7307,10,10.4565,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,127,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,16.0493,12,12.0551,0.0,0.0,0.0,0,0,33215,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,11.6,22.1,16.6,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,330,,FMX +23.534154,7.4910000000000005,0.0,0.0,12,12.235,9,9.3959,0.0,0.0,0.0,650,604,604.0,650.0,14,13.6849,10,10.4201,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,129,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,16.0026,12,12.0218,0.0,0.0,0.0,0,0,33216,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0432,11.5525,22.0343,16.5531,"Vans, Cargo Type",2013,-7750,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.0409,0.0,0.0,0.0,671,625,625.0,671.0,13,13.2441,10,10.0709,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,130,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,16,15.5518,12,11.7002,0.0,0.0,0.0,0,0,33217,0,0,Ford,E350 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Cargo Type",2013,-9250,,,,,FFV,E85,330,,FMX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,763,-1,0.0,763.0,12,11.6593,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,134,,1,4600,0,Regular,Regular Gasoline,1,-1,14,13.6979,0,0.0,0.0,0.0,0.0,0,0,33218,0,0,Ford,E350 Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.7,0.0,18.8,0.0,"Vans, Cargo Type",2013,-11000,,,,,,,,,FMX +23.534154,7.4910000000000005,0.0,0.0,13,12.6691,9,9.0958,0.0,0.0,0.0,634,623,623.0,634.0,14,14.0198,10,10.1052,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,124,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,16.1203,12,11.6908,0.0,0.0,0.0,0,0,33219,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,11.2,22.2,16.1,"Vans, Passenger Type",2013,-7750,,,,,FFV,E85,330,,FMX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3322,0,15,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,39.7436,0.0,Compact Cars,1987,500,,2MODE 2LKUP,,,,,,, +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.0409,0.0,0.0,0.0,671,625,625.0,671.0,13,13.2441,10,10.0709,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,128,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,16,15.5518,12,11.7002,0.0,0.0,0.0,0,0,33220,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,330,,FMX +25.336022,7.4910000000000005,0.0,0.0,11,11.4181,9,8.7267,0.0,0.0,0.0,692,645,645.0,692.0,13,12.8334,10,9.7616,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,131,FFV,2,4250,4550,Gasoline or E85,Regular Gasoline,2,2,15,15.1248,11,11.4163,0.0,0.0,0.0,0,0,33221,0,0,Ford,E350 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,10.7,20.8,15.7,"Vans, Passenger Type",2013,-9250,,,,,FFV,E85,330,,FMX +29.950562,0.0,0.0,0.0,10,9.9849,0,0.0,0.0,0.0,0.0,790,-1,0.0,790.0,11,11.2558,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,135,,1,5000,0,Regular,Regular Gasoline,1,-1,13,13.3294,0,0.0,0.0,0.0,0.0,0,0,33222,0,0,Ford,E350 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.1836,0.0,18.2848,0.0,"Vans, Passenger Type",2013,-13000,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.1199,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.3708,0,0.0,0.0,0.0,0.0,0,0,33223,0,0,Honda,Odyssey,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,38.3,0.0,Minivan - 2WD,2013,-1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.1815,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,42,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,33224,0,0,Honda,Odyssey,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,0.0,38.8,0.0,Minivan - 2WD,2013,-500,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,19,19.0353,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.2332,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,96,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.7221,0,0.0,0.0,0.0,0.0,0,0,33225,0,0,Nissan,Quest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.9574,0.0,34.4632,0.0,Minivan - 2WD,2013,-1000,,,,,,,,,NSX +11.75609,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,28.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,304,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.0,0,0.0,0.0,0.0,0.0,0,0,33226,0,0,Buick,Encore,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,53.45,0.0,Small Sport Utility Vehicle 2WD,2013,2250,,,T,,,,,,GMX +12.657024,0.0,0.0,0.0,23,22.7957,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.8463,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.9003,0,0.0,0.0,0.0,0.0,0,0,33227,0,0,Honda,CR-V 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.07,0.0,43.4581,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,17.7423,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5186,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,43,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,33228,0,0,Honda,Pilot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2302,0.0,35.4,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,22.4684,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7023,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,211,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.1193,0,0.0,0.0,0.0,0.0,0,0,33229,0,36,Mitsubishi,Outlander 2WD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.6196,0.0,39.3895,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3323,0,15,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1987,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.2714,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.7443,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,213,,5,2750,0,Premium,Premium Gasoline,5,-1,26,25.7889,0,0.0,0.0,0.0,0.0,0,0,33230,0,36,Mitsubishi,Outlander 2WD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),24.2744,0.0,36.005,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,MTX +14.964294,0.0,0.0,0.0,20,19.6204,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,21.6959,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,34,,5,2500,0,Regular,Regular Gasoline,5,-1,25,24.9175,0,0.0,0.0,0.0,0.0,0,0,33231,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,37.8,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.2298,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,35,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.1235,0,0.0,0.0,0.0,0.0,0,0,33232,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),22.4,0.0,33.6,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8144,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,66,,4,3050,0,Regular,Regular Gasoline,4,-1,20,20.4178,0,0.0,0.0,0.0,0.0,0,0,33233,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,29.3,0.0,Small Sport Utility Vehicle 2WD,2013,-3250,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,501,-1,0.0,501.0,18,17.7566,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,46,,4,3350,0,Premium,Premium Gasoline,4,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,33234,0,0,Acura,MDX 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,28.7,0.0,Small Sport Utility Vehicle 4WD,2013,-4750,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6686,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,219,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,33235,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,33.0,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,16,15.9033,12,11.7267,0.0,0.0,0.0,476,461,461.0,476.0,19,18.6492,14,13.6578,0.0,0.0,0.0,6,3.6,All-Wheel Drive,334,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.0,17,17.0993,0.0,0.0,0.0,0,0,33236,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,14.6,32.9,23.8,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,FFV,E85,290,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6686,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,220,SIDI;,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,33237,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,0.0,33.0,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,16,15.9033,12,11.7267,0.0,0.0,0.0,476,461,461.0,476.0,19,18.6492,14,13.6578,0.0,0.0,0.0,6,3.6,All-Wheel Drive,335,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.0,17,17.0993,0.0,0.0,0.0,0,0,33238,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,14.6,32.9,23.8,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,FFV,E85,290,,GMX +13.1844,0.0,0.0,0.0,22,22.1743,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.0081,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,39,,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.6372,0,0.0,0.0,0.0,0.0,0,0,33239,0,0,Honda,CR-V 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.2158,0.0,41.6062,0.0,Small Sport Utility Vehicle 4WD,2013,1000,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,3324,0,13,Toyota,Corolla,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Compact Cars,1987,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,21.7806,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.836,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,212,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.9436,0,0.0,0.0,0.0,0.0,0,0,33240,0,36,Mitsubishi,Outlander 4WD,Y,false,0,100,0,0.0,0.0,0.0,0.0,Auto(AV-S6),27.6766,0.0,37.6792,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,,,,,,,MTX +15.689436,0.0,0.0,0.0,19,18.5578,0,0.0,0.0,0.0,0.0,422,-1,0.0,422.0,21,20.8513,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,214,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.5612,0,0.0,0.0,0.0,0.0,0,0,33241,0,36,Mitsubishi,Outlander 4WD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3176,0.0,34.2311,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,18.8061,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,36,,4,2900,0,Regular,Regular Gasoline,4,-1,22,22.3141,0,0.0,0.0,0.0,0.0,0,0,33242,0,0,Toyota,Highlander 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.8,0.0,31.0,0.0,Small Sport Utility Vehicle 4WD,2013,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,495,-1,0.0,495.0,18,17.8557,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,67,,4,3050,0,Regular,Regular Gasoline,4,-1,20,19.8291,0,0.0,0.0,0.0,0.0,0,0,33243,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,29.0,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,15,15.2162,0,0.0,0.0,0.0,0.0,534,-1,0.0,534.0,16,16.3416,0,0.0,0.0,0.0,0.0,6,4.0,All-Wheel Drive,68,,3,3450,0,Regular,Regular Gasoline,3,-1,18,17.9657,0,0.0,0.0,0.0,0.0,0,0,33244,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,26.8,0.0,Small Sport Utility Vehicle 4WD,2013,-5250,,,,,,,,,TYX +20.589638,6.242500000000001,0.0,0.0,14,13.794,10,10.1229,0.0,0.0,0.0,556,535,535.0,556.0,16,15.9376,12,11.7043,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,152,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,20,19.6744,14,14.4665,0.0,0.0,0.0,0,0,33245,0,0,Ford,Expedition 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0503,12.5126,27.2307,20.0226,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,340/400,,FMX +20.589638,6.242500000000001,0.0,0.0,14,13.8002,10,10.1276,0.0,0.0,0.0,556,535,535.0,556.0,16,15.9459,12,11.7109,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,153,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,20,19.6871,14,14.4772,0.0,0.0,0.0,0,0,33246,0,0,Lincoln,Navigator 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0583,12.5186,27.2488,20.0378,Standard Sport Utility Vehicle 2WD,2013,-5250,,,,,FFV,E85,340/400,,FMX +21.974,0.0,0.0,0.0,13,12.5521,0,0.0,0.0,0.0,0.0,604,-1,0.0,604.0,15,14.7224,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,282,,3,3650,0,Regular,Regular Gasoline,3,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,33247,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4498,0.0,25.8,0.0,Standard Sport Utility Vehicle 2WD,2013,-6250,,,,,,,,,NSX +21.974,6.806822,0.0,0.0,12,12.4354,9,9.1843,0.0,0.0,0.0,608,589,589.0,608.0,15,14.6142,11,10.7159,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,291,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,19,18.5967,13,13.4591,0.0,0.0,0.0,0,0,33248,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,11.3,25.7,18.6,Standard Sport Utility Vehicle 2WD,2013,-6250,,,,,FFV,E85,310,,NSX +17.337486000000002,0.0,0.0,0.0,17,16.8848,0,0.0,0.0,0.0,0.0,467,-1,0.0,467.0,19,18.9096,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,49,,4,2900,0,Regular,Regular Gasoline,4,-1,22,22.1572,0,0.0,0.0,0.0,0.0,0,0,33249,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.0932,0.0,30.7752,0.0,Standard Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,TYX +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,20,85,3325,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,44.8718,0.0,Compact Cars,1987,1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,12.9967,0,0.0,0.0,0.0,0.0,600,-1,0.0,600.0,15,14.7867,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,55,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.7796,0,0.0,0.0,0.0,0.0,0,0,33250,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0212,0.0,24.5424,0.0,Standard Sport Utility Vehicle 2WD,2013,-6250,,,,,,,,,TYX +21.974,6.806822,0.0,0.0,13,12.7806,9,9.4586,0.0,0.0,0.0,610,585,585.0,610.0,15,14.5492,11,10.7318,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,150,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.511,13,12.8452,0.0,0.0,0.0,0,0,33251,0,0,Ford,Expedition 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7432,11.6511,24.1625,17.7244,Standard Sport Utility Vehicle 4WD,2013,-6250,,,,,FFV,E85,310/370,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.932,0,0.0,0.0,0.0,0.0,484,-1,0.0,484.0,18,18.3621,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,262,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,33252,0,0,Ford,Explorer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8377,0.0,31.3664,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,T,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.2519,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.8595,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,44,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.3597,0,0.0,0.0,0.0,0.0,0,0,33253,0,0,Honda,Pilot 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5791,0.0,33.9405,0.0,Standard Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,HNX +21.974,6.806822,0.0,0.0,13,12.7806,9,9.4586,0.0,0.0,0.0,610,585,585.0,610.0,15,14.5492,11,10.7318,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,151,FFV,3,3650,4150,Gasoline or E85,Regular Gasoline,3,3,18,17.511,13,12.8452,0.0,0.0,0.0,0,0,33254,0,0,Lincoln,Navigator 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.7432,11.6511,24.1625,17.7244,Standard Sport Utility Vehicle 4WD,2013,-6250,,,,,FFV,E85,310/370,,FMX +20.589638,0.0,0.0,0.0,14,13.6943,0,0.0,0.0,0.0,0.0,569,-1,0.0,569.0,16,15.5444,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,421,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.6187,0,0.0,0.0,0.0,0.0,0,0,33255,0,0,Mercedes-Benz,GL450 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.2967,0.0,26.1773,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,T,,,,,,MBX +17.351199,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,22,21.6646,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,422,,5,2700,0,Diesel,Diesel,4,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,33256,0,0,Mercedes-Benz,GL350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0388,0.0,36.339,0.0,Standard Sport Utility Vehicle 4WD,2013,-1500,,,T,,Diesel,,,,MBX +21.974,0.0,0.0,0.0,13,13.447,0,0.0,0.0,0.0,0.0,587,-1,0.0,587.0,15,15.1099,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,423,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,18,17.8002,0,0.0,0.0,0.0,0.0,0,0,33257,0,0,Mercedes-Benz,GL550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.5649,0.0,24.725,0.0,Standard Sport Utility Vehicle 4WD,2013,-8000,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.2793,0,0.0,0.0,0.0,0.0,628,-1,0.0,628.0,14,14.1944,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,283,,2,3950,0,Regular,Regular Gasoline,2,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,33258,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,24.2,0.0,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,,,,,NSX +23.534154,6.806822,0.0,0.0,12,12.3182,9,9.2693,0.0,0.0,0.0,626,593,593.0,626.0,14,14.2123,11,10.6574,0.0,0.0,0.0,8,5.6,4-Wheel Drive,292,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,18,17.5015,13,13.0451,0.0,0.0,0.0,0,0,33259,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1498,11.4,24.1491,18.0,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,FFV,E85,310,,NSX +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,3326,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,47.0,0.0,Compact Cars,1987,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,28,27.5955,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.5591,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,40,,7,1950,0,Regular,Regular Gasoline,7,-1,28,27.5147,0,0.0,0.0,0.0,0.0,0,0,33260,0,0,Toyota,Highlander Hybrid 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.1245,0.0,37.6197,0.0,Standard Sport Utility Vehicle 4WD,2013,2250,,,,,Hybrid,,,288V Ni-MH,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5615,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,18,18.4003,0,0.0,0.0,0.0,0.0,6,4.0,All-Wheel Drive,50,Full Time 4WD,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2891,0,0.0,0.0,0.0,0.0,0,0,33261,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6663,0.0,29.5331,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5615,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,18,18.4003,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,51,Part Time 4WD,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2891,0,0.0,0.0,0.0,0.0,0,0,33262,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6663,0.0,29.5331,0.0,Standard Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,TYX +23.534154,0.0,0.0,0.0,13,12.5171,0,0.0,0.0,0.0,0.0,614,-1,0.0,614.0,14,14.1562,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,56,,2,3950,0,Regular,Regular Gasoline,2,-1,17,16.8536,0,0.0,0.0,0.0,0.0,0,0,33263,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4049,0.0,23.2338,0.0,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,,,,,TYX +23.534154,7.4910000000000005,0.0,0.0,13,12.7017,9,9.0639,0.0,0.0,0.0,613,587,587.0,613.0,14,14.4445,10,10.3474,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,59,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,3,17,17.3549,13,12.5131,0.0,0.0,0.0,0,0,33264,0,0,Toyota,Sequoia 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6418,11.1619,23.9419,17.2624,Standard Sport Utility Vehicle 4WD,2013,-7750,,,,,FFV,E85,260,,TYX +0.17400000000000002,0.0,0.0,4.0,132,131.8861,0,0.0,0.0,26.0,0.0,0,-1,0.0,0.0,118,118.142,0,0.0,29.0,0.0,0.0,,,Front-Wheel Drive,6,,10,500,0,Electricity,Electricity,10,-1,105,104.7943,0,0.0,0.0,32.0,0.0,0,0,33265,0,21,Honda,Fit EV,N,false,0,91,82,89.81,0.0,73.56,0.0,Automatic (A1),188.4087,0.0,149.7062,0.0,Small Station Wagons,2013,9500,,,,,EV,,,92 kW DCPM,HNX +9.404872000000001,0.0,0.0,0.0,31,31.0,0,0.0,0.0,0.0,0.0,254,-1,0.0,254.0,35,35.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,9,1550,0,Regular,Regular Gasoline,9,-1,40,40.0,0,0.0,0.0,0.0,0.0,0,0,33266,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),42.8341,0.0,59.2591,0.0,Compact Cars,2013,4250,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,8,1850,0,Regular,Regular Gasoline,8,-1,36,36.0643,0,0.0,0.0,0.0,0.0,0,0,33267,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.8,0.0,51.1,0.0,Compact Cars,2013,2750,,,,,,,,,NSX +10.987,0.0,0.0,0.0,26,26.0,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.4473,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,103,,8,1850,0,Regular,Regular Gasoline,8,-1,35,35.0,0,0.0,0.0,0.0,0.0,0,0,33268,0,15,Nissan,Versa,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.7,0.0,51.7,0.0,Compact Cars,2013,2750,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,26.5579,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.1241,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,36,36.0389,0,0.0,0.0,0.0,0.0,0,0,33269,14,16,Honda,Accord,Y,false,92,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.3222,0.0,51.0621,0.0,Midsize Cars,2013,2750,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3327,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1987,-4750,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,18.9014,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.7318,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,51,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.6004,0,0.0,0.0,0.0,0.0,0,0,33270,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),23.7778,0.0,37.181,0.0,Midsize Cars,2013,-1750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,16.6217,0,0.0,0.0,0.0,0.0,453,-1,0.0,453.0,20,19.5516,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,52,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.9206,0,0.0,0.0,0.0,0.0,0,0,33271,0,14,Infiniti,G37,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7457,0.0,34.7496,0.0,Midsize Cars,2013,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.7604,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,20.4778,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,53,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.1881,0,0.0,0.0,0.0,0.0,0,0,33272,0,14,Infiniti,G37x,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S7),22.2543,0.0,35.1361,0.0,Midsize Cars,2013,-3000,,,,,,,,,NSX +11.360558000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,10,,8,1900,0,Regular,Regular Gasoline,8,-1,33,33.437,0,0.0,0.0,0.0,0.0,0,0,33273,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.3241,0.0,47.1977,0.0,Small Station Wagons,2013,2500,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,28,28.0,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,31.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,11,,8,1800,0,Regular,Regular Gasoline,8,-1,35,35.0,0,0.0,0.0,0.0,0.0,0,0,33274,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 5-spd,37.2,0.0,51.6,0.0,Small Station Wagons,2013,3000,,,,,,,,,HNX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.0278,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,12,,8,1850,0,Regular,Regular Gasoline,8,-1,33,33.0,0,0.0,0.0,0.0,0.0,0,0,33275,0,21,Honda,Fit,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S5),35.7,0.0,47.7,0.0,Small Station Wagons,2013,2750,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,438,-1,0.0,438.0,20,20.2947,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,156,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2323,0,0.0,0.0,0.0,0.0,0,0,33276,0,19,Infiniti,EX37,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.9,0.0,35.2,0.0,Small Station Wagons,2013,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.2931,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.9019,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,157,,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,33277,0,19,Infiniti,EX37 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6337,0.0,34.0,0.0,Small Station Wagons,2013,-3000,,,,,,,,,NSX +14.327048,4.679378,0.0,0.0,20,19.6619,14,13.7947,0.0,0.0,0.0,393,392,392.0,393.0,23,22.5781,16,15.8444,0.0,0.0,0.0,4,2.0,All-Wheel Drive,105,SIDI; FFV,6,2600,2850,Premium or E85,Premium Gasoline,6,5,28,27.5771,19,19.3602,0.0,0.0,0.0,0,0,33278,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.8,17.4,38.6,27.1,Small Sport Utility Vehicle 4WD,2013,-1000,,,T,,FFV,E85,310,,ADX +16.612308000000002,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,445,-1,0.0,445.0,23,22.834,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,403,,6,2600,0,Diesel,Diesel,4,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,33279,0,0,Mercedes-Benz,ML350 Bluetec 4matic,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2302,0.0,38.833,0.0,Standard Sport Utility Vehicle 4WD,2013,-1000,,,T,,Diesel,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3328,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Compact Cars,1987,-3750,,,,,,,,, +11.75609,0.0,0.0,0.0,24,24.067,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.4352,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,70,SIDI; with Stop/Start Technology,7,1950,0,Regular,Regular Gasoline,7,-1,37,36.5415,0,0.0,0.0,0.0,0.0,0,0,33280,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),30.8291,0.0,51.8119,0.0,Midsize Cars,2013,2250,,,T,,,,,,FMX +21.974,6.806822,0.0,0.0,12,12.0226,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,130,FFV,3,4000,4150,Premium or E85,Premium Gasoline,3,3,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,33281,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Subcompact Cars,2013,-8000,G,,T,,FFV,E85,260,,BEX +18.304342000000002,0.0,0.0,0.0,16,15.7509,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,18,18.3771,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,44, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0807,0,0.0,0.0,0.0,0.0,0,0,33282,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6,0.0,32.1,0.0,Subcompact Cars,2013,-4750,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.6213,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,71, PFI,5,2750,0,Premium,Premium Gasoline,5,-1,26,25.8545,0,0.0,0.0,0.0,0.0,0,0,33283,0,11,Lexus,IS 350 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.0,0.0,36.1,0.0,Subcompact Cars,2013,-1750,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.1218,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,72, PFI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,33284,11,11,Lexus,IS 350/IS 350C,N,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,37.7,0.0,Subcompact Cars,2013,-1750,,,,,,,,,TYX +14.327048,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1008,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,78,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,33285,0,11,Lexus,IS 250 AWD,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,38.1,0.0,Subcompact Cars,2013,-1000,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,20.9651,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.118,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,79,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.5493,0,0.0,0.0,0.0,0.0,0,0,33286,11,11,Lexus,IS 250/IS 250C,N,false,77,88,0,0.0,0.0,0.0,0.0,Automatic (S6),26.5643,0.0,41.4776,0.0,Subcompact Cars,2013,-500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,20,20.1064,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.5649,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,374,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,33287,0,10,Cadillac,ATS AWD,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),25.4,0.0,41.9,0.0,Compact Cars,2013,500,,,T,,,,,,GMX +7.844718,0.0,0.0,0.0,43,43.0,0,0.0,0.0,0.0,0.0,211,-1,0.0,211.0,42,42.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,41,,10,1300,0,Regular,Regular Gasoline,10,-1,40,40.0,0,0.0,0.0,0.0,0.0,14,86,33288,0,0,Lexus,CT 200h,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.6404,0.0,69.442,0.0,Compact Cars,2013,5500,,,,,Hybrid,,,202V Ni-MH,TYX +10.283832,0.0,0.0,0.0,30,30.1704,0,0.0,0.0,0.0,0.0,273,-1,0.0,273.0,32,32.3916,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,69,,8,1700,0,Regular,Regular Gasoline,8,-1,36,35.5945,0,0.0,0.0,0.0,0.0,15,85,33289,0,0,Toyota,Yaris,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,39.5,0.0,50.4,0.0,Compact Cars,2013,3500,,,,,,,,,TYX +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59008,(NO-CAT),-1,1800,0,Diesel,Diesel,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,18,87,3329,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,53.0,0.0,Compact Cars,1987,3000,,SIL,,,Diesel,,,, +9.976196,0.0,0.0,0.0,30,30.4308,0,0.0,0.0,0.0,0.0,266,-1,0.0,266.0,33,33.1919,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,70,,8,1650,0,Regular,Regular Gasoline,8,-1,37,37.3317,0,0.0,0.0,0.0,0.0,15,85,33290,0,0,Toyota,Yaris,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.8785,0.0,52.9931,0.0,Compact Cars,2013,3750,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1802,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,92,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,33.0327,0,0.0,0.0,0.0,0.0,0,0,33291,0,16,Lincoln,MKZ FWD,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,46.6,0.0,Midsize Cars,2013,1500,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.7094,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.2041,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,99,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.3775,0,0.0,0.0,0.0,0.0,0,0,33292,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5792,0.0,44.1595,0.0,Midsize Cars,2013,1000,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9409,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,100,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.9236,0,0.0,0.0,0.0,0.0,0,0,33293,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,36.2,0.0,Midsize Cars,2013,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.7503,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,104,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.5771,0,0.0,0.0,0.0,0.0,0,0,33294,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,38.6,0.0,Midsize Cars,2013,-500,,,,,,,,,FMX +7.317342,0.0,0.0,0.0,45,45.0,0,0.0,0.0,0.0,0.0,198,-1,0.0,198.0,45,45.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,119,,10,1200,0,Regular,Regular Gasoline,10,-1,45,45.0,0,0.0,0.0,0.0,0.0,0,0,33295,0,12,Lincoln,MKZ Hybrid FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),65.1335,0.0,67.3794,0.0,Midsize Cars,2013,6000,,,,,Hybrid,,,275V Ni-MH,FMX +13.1844,0.0,0.0,0.0,22,22.4345,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.4445,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,745,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.4353,0,0.0,0.0,0.0,0.0,0,0,33296,0,10,BMW,ActiveHybrid 7L,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2457,0.0,43.1236,0.0,Large Cars,2013,0,,,T,,Hybrid,,,374V Li-Ion,BMX +19.381068,0.0,0.0,0.0,15,15.4456,0,0.0,0.0,0.0,0.0,506,-1,0.0,506.0,17,17.4616,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,40,,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,33297,0,0,Honda,Ridgeline Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.8,0.0,Standard Pickup Trucks 4WD,2013,-4250,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,456,-1,0.0,456.0,24,23.9973,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,21,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.424,0,0.0,0.0,0.0,0.0,0,0,33298,0,0,Mazda,5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,40.9,0.0,Minivan - 2WD,2013,500,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,22,21.5848,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,24,24.0273,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,22,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.8839,0,0.0,0.0,0.0,0.0,0,0,33299,0,0,Mazda,5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4089,0.0,41.1404,0.0,Minivan - 2WD,2013,500,,,,,,,,,TKX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,87,333,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1985,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,87,3330,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1987,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.8976,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.4542,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,23,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.8677,0,0.0,0.0,0.0,0.0,0,0,33300,0,0,Mazda,CX-9 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1102,0.0,33.2317,0.0,Small Sport Utility Vehicle 2WD,2013,-2500,,,,,,,,,TKX +12.657024,0.0,0.0,0.0,24,24.0075,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3065,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,95,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,29.7936,0,0.0,0.0,0.0,0.0,0,0,33301,0,0,Audi,Q5 Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),30.4,0.0,39.9,0.0,Small Sport Utility Vehicle 4WD,2013,500,,,T,,Hybrid,,,266V Li-Ion,ADX +18.304342000000002,0.0,0.0,0.0,16,16.3916,0,0.0,0.0,0.0,0.0,481,-1,0.0,481.0,18,18.4974,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,24,,4,3050,0,Regular,Regular Gasoline,4,-1,22,21.9429,0,0.0,0.0,0.0,0.0,0,0,33302,0,0,Mazda,CX-9 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4423,0.0,30.4682,0.0,Small Sport Utility Vehicle 4WD,2013,-3250,,,,,,,,,TKX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,562,-1,0.0,562.0,16,15.8723,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,381,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.9441,0,0.0,0.0,0.0,0.0,0,0,33303,0,0,Infiniti,QX56 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.8,0.0,27.6145,0.0,Standard Sport Utility Vehicle 2WD,2013,-6750,,,,,,,,,NSX +20.589638,0.0,0.0,0.0,14,13.5231,0,0.0,0.0,0.0,0.0,566,-1,0.0,566.0,16,15.7229,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,382,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.6246,0,0.0,0.0,0.0,0.0,0,0,33304,0,0,Infiniti,QX56 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.7,0.0,27.1599,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,,,,,,,NSX +0.192,0.0,0.0,6.0,122,121.66,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,107,106.9856,0,0.0,32.0,0.0,0.0,,,Rear-Wheel Drive,705,,10,600,0,Electricity,Electricity,10,-1,93,93.24,0,0.0,0.0,36.0,0.0,0,0,33305,0,0,smart,fortwo electric drive convertible,N,false,0,0,68,75.81,0.0,59.09,0.0,Automatic (A1),173.8,0.0,133.2,0.0,Two Seaters,2013,9000,,,,,EV,,,55 kW DCPM,MBX +0.192,0.0,0.0,6.0,122,121.66,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,107,106.9856,0,0.0,32.0,0.0,0.0,,,Rear-Wheel Drive,704,,10,600,0,Electricity,Electricity,10,-1,93,93.24,0,0.0,0.0,36.0,0.0,0,0,33306,0,0,smart,fortwo electric drive coupe,N,false,0,0,68,75.81,0.0,59.09,0.0,Automatic (A1),173.8,0.0,133.2,0.0,Two Seaters,2013,9000,,,,,EV,,,55 kW DCPM,MBX +0.168,0.0,0.0,4.0,138,138.304,0,0.0,0.0,24.0,0.0,0,-1,0.0,0.0,121,120.913,0,0.0,28.0,0.0,0.0,,,Front-Wheel Drive,21,,10,500,0,Electricity,Electricity,10,-1,105,104.8056,0,0.0,0.0,32.0,0.0,4,73,33307,0,0,Scion,iQ EV,N,false,0,0,38,42.4,0.0,31.62,0.0,Automatic (variable gear ratios),197.5771,0.0,149.7223,0.0,Minicompact Cars,2013,9500,,,,,EV,,,,TYX +0.264,0.0,0.0,6.0,78,78.4283,0,0.0,0.0,43.0,0.0,0,-1,0.0,0.0,76,76.169,0,0.0,44.0,0.0,0.0,,,Front-Wheel Drive,86,,-1,800,0,Electricity,Electricity,-1,-1,74,73.5784,0,0.0,0.0,46.0,0.0,0,0,33308,0,0,Toyota,RAV4 EV,N,false,0,0,103,107.0,0.0,98.9,0.0,Automatic (variable gear ratios),112.0404,0.0,105.112,0.0,Sport Utility Vehicle - 2WD,2012,8000,,,,,EV,,,115 kW AC Induction,TYX +15.689436,0.0,0.0,0.0,18,17.9664,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.0031,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,3,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.4719,0,0.0,0.0,0.0,0.0,0,0,33309,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4739,0.0,34.6744,0.0,Minicompact Cars,2013,-2250,,,,,,,,,LTX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,87,3331,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Compact Cars,1987,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,17.3694,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,20,20.2797,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,4,,5,3000,0,Premium,Premium Gasoline,5,-1,26,25.5023,0,0.0,0.0,0.0,0.0,0,0,33310,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8037,0.0,33.7799,0.0,Minicompact Cars,2013,-3000,,,,S,,,,,LTX +14.327048,0.0,0.0,0.0,20,19.5874,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.6393,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,5,,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.9648,0,0.0,0.0,0.0,0.0,0,0,33311,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6704,0.0,38.4454,0.0,Minicompact Cars,2013,-1000,,,,,,,,,LTX +14.964294,0.0,0.0,0.0,19,18.5699,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,21.9015,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,6,,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.0527,0,0.0,0.0,0.0,0.0,0,0,33312,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4536,0.0,37.5581,0.0,Minicompact Cars,2013,-1750,,,,S,,,,,LTX +21.974,6.806822,0.0,0.0,12,12.4737,9,8.8115,0.0,0.0,0.0,580,576,576.0,580.0,15,15.2827,11,10.8449,0.0,0.0,0.0,12,6.0,All-Wheel Drive,131,FFV,3,4000,4150,Premium or E85,Premium Gasoline,3,3,21,21.0866,15,15.1054,0.0,0.0,0.0,0,0,33313,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),15.4,10.5,28.3,20.8,Compact Cars,2013,-8000,G,,T,,FFV,E85,260,,BEX +13.73375,0.0,0.0,0.0,21,20.7703,0,0.0,0.0,0.0,0.0,363,-1,0.0,363.0,24,24.4294,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,364,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,33314,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2996,0.0,43.8,0.0,Compact Cars,2013,500,,,T,,,,,,GMX +6.5922,0.0,0.0,0.0,53,52.5341,0,0.0,0.0,0.0,0.0,179,-1,0.0,179.0,50,49.5173,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,61,,10,1100,0,Regular,Regular Gasoline,10,-1,46,46.2697,0,0.0,0.0,0.0,0.0,17,87,33315,0,0,Toyota,Prius c,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.7931,0.0,69.5526,0.0,Compact Cars,2013,6500,,,,,Hybrid,,,144V Ni-MH,TYX +10.987,0.0,0.0,0.0,27,27.0361,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,30,29.7736,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,382,,8,1850,0,Regular,Regular Gasoline,8,0,34,33.9787,0,0.0,0.0,0.0,0.0,0,0,33316,0,19,Chevrolet,Sonic RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.0,0.0,48.0,0.0,Midsize Cars,2013,2750,,,T,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.7637,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9939,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,388,,7,1950,0,Regular,Regular Gasoline,7,0,33,33.3033,0,0.0,0.0,0.0,0.0,0,0,33317,0,19,Chevrolet,Sonic RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.8,0.0,47.0,0.0,Midsize Cars,2013,2250,,,T,,,,,,GMX +15.689436,0.0,0.0,0.0,17,17.4185,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.8973,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,252,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,33318,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),21.8,0.0,38.7,0.0,Midsize Cars,2013,-2250,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,461,-1,0.0,461.0,19,19.2612,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,253,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.7164,0,0.0,0.0,0.0,0.0,0,0,33319,0,18,Jaguar,XF AWD,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9,0.0,35.9,0.0,Midsize Cars,2013,-3750,,,,S,,,,,JCX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59018,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,3332,0,0,Volkswagen,GTI 16v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Compact Cars,1987,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9385,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,73, PFI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0541,0,0.0,0.0,0.0,0.0,0,0,33320,0,14,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1,0.0,33.5,0.0,Midsize Cars,2013,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.6132,0,0.0,0.0,0.0,0.0,485,-1,0.0,485.0,18,18.2658,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,74, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0528,0,0.0,0.0,0.0,0.0,0,0,33321,0,14,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4195,0.0,32.0599,0.0,Midsize Cars,2013,-4750,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9385,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,75, PFI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0541,0,0.0,0.0,0.0,0.0,0,0,33322,0,14,Lexus,LS 460 L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1,0.0,33.5,0.0,Midsize Cars,2013,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.6132,0,0.0,0.0,0.0,0.0,485,-1,0.0,485.0,18,18.2658,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,76, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0528,0,0.0,0.0,0.0,0.0,0,0,33323,0,14,Lexus,LS 460 L AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4195,0.0,32.0599,0.0,Midsize Cars,2013,-4750,,,,,,,,,TYX +6.5922,0.0,0.0,0.0,51,50.6659,0,0.0,0.0,0.0,0.0,179,-1,0.0,179.0,50,49.5027,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,42,,10,1100,0,Regular,Regular Gasoline,10,-1,48,48.1516,0,0.0,0.0,0.0,0.0,22,94,33324,0,0,Toyota,Prius,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.6404,0.0,69.442,0.0,Midsize Cars,2013,6500,,,,,Hybrid,,,202V Ni-MH,TYX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,352,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,33325,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2013,-4750,,,,S,,,,,JCX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,353,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,33326,0,18,Jaguar,XJ LWB,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2013,-4750,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9949,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,355,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.4704,0,0.0,0.0,0.0,0.0,0,0,33327,0,18,Jaguar,XJ AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.0,0.0,34.1,0.0,Large Cars,2013,-3750,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,471,-1,0.0,471.0,19,18.9175,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,356,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,33328,0,18,Jaguar,XJ LWB AWD,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9,0.0,34.0,0.0,Large Cars,2013,-3750,,,,S,,,,,JCX +11.75609,0.0,0.0,0.0,27,26.586,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,28,28.4051,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,7,1950,0,Regular,Regular Gasoline,7,-1,31,30.9973,0,0.0,0.0,0.0,0.0,0,0,33329,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.362,0.0,43.6007,0.0,Small Station Wagons,2013,2250,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59017,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,87,3333,0,0,Volkswagen,GTI/Golf GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Compact Cars,1987,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,25.0498,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,26.9237,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,7,2050,0,Regular,Regular Gasoline,7,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,33330,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,41.6,0.0,Small Station Wagons,2013,1750,,,,,,,,,NSX +7.844718,0.0,0.0,0.0,44,43.5398,0,0.0,0.0,0.0,0.0,211,-1,0.0,211.0,42,42.0132,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,10,1300,0,Regular,Regular Gasoline,10,-1,40,40.2867,0,0.0,0.0,0.0,0.0,0,0,33331,0,34,Toyota,Prius v,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),59.898,0.0,57.4339,0.0,Midsize Station Wagons,2013,5500,,,,,Hybrid,,,202V Ni-MH,TYX +16.4805,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,438,-1,0.0,438.0,20,20.4066,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33332,0,0,Nissan,Murano FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0,0.0,33.0,0.0,Small Sport Utility Vehicle 2WD,2013,-1750,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,19.5134,0,0.0,0.0,0.0,0.0,395,-1,0.0,395.0,23,22.5314,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,7,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,33333,0,0,Land Rover,Range Rover Evoque,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.6,0.0,38.9,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,T,,,,,,LRX +16.4805,0.0,0.0,0.0,18,17.9513,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,20.0597,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,92,,5,2750,0,Regular,Regular Gasoline,5,-1,23,23.422,0,0.0,0.0,0.0,0.0,0,0,33334,0,0,Nissan,Murano AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.5083,0.0,32.5904,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,NSX +4.7371439591836735,3.4499180000000003,0.0,1.5,51,50.5282,90,90.2714,0.35,26.0,0.32,133,-1,0.0,133.0,50,49.7021,95,95.3887,29.0,0.1907,0.29,4,1.8,Front-Wheel Drive,43,PHEV,10,1100,0,Regular Gas and Electricity,Regular Gasoline,10,-1,49,48.7284,102,102.4898,0.0,33.0,0.25,22,94,33335,0,0,Toyota,Prius Plug-in Hybrid,Y,true,0,0,0,0.0,12.15,0.0,9.1,Automatic (variable gear ratios),70.9,128.9591,68.4,146.414,Midsize Cars,2013,7250,,,,,Plug-in Hybrid,Electricity,11,18 kW,TYX +4.181064109756098,3.2961,0.0,2.5,44,44.2254,108,107.9814,0.0,31.0,0.5,110,-1,0.0,110.0,43,42.7419,100,99.995,34.0,0.0,0.48,4,2.0,Front-Wheel Drive,149,PHEV,10,1300,0,Regular Gas and Electricity,Regular Gasoline,10,-1,41,41.0585,92,91.7052,0.0,37.0,0.44,0,0,33336,0,19,Ford,C-Max Energi Plug-in Hybrid,Y,true,0,100,0,0.0,23.086,0.0,19.709,Automatic (variable gear ratios),61.0,154.3,58.6,131.0,Midsize Cars,2013,7250,,,,,Plug-in Hybrid,Electricity,21,68 kW,FMX +0.276,0.0,0.0,6.0,77,77.2,0,0.0,0.0,44.0,0.0,0,-1,0.0,0.0,73,72.7,0,0.0,46.0,0.0,0.0,,,Front-Wheel Drive,1,,10,850,0,Electricity,Electricity,10,-1,68,67.9,0,0.0,0.0,50.0,0.0,0,0,33337,0,14,CODA Automotive,CODA,N,false,0,72,88,93.555,0.0,81.298,0.0,Automatic (A1),110.3,0.0,97.0,0.0,Subcompact Cars,2013,7750,,,,,EV,,,100 kW DCPM,CDA +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,539,-1,0.0,539.0,17,16.5347,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,228,,4,3550,0,Premium,Premium Gasoline,4,-1,21,21.056,0,0.0,0.0,0.0,0.0,0,0,33338,0,0,Mercedes-Benz,SL65 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4044,0.0,29.2465,0.0,Two Seaters,2013,-5750,G,,T,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,273,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,33339,0,0,Mercedes-Benz,SLS AMG GT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2013,-8000,G,,,,,,,,MBX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59017,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,87,3334,0,0,Volkswagen,GTI/Golf GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,39.7436,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,274,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,33340,0,0,Mercedes-Benz,SLS AMG GT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2013,-8000,G,,,,,,,,MBX +14.327048,0.0,0.0,0.0,19,19.4756,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,23.0276,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,375,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,33341,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.5491,0.0,41.6,0.0,Compact Cars,2013,0,,,T,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7573,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,251,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,33342,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),18.6437,0.0,31.8935,0.0,Midsize Cars,2013,-4750,,,,S,,,,,JCX +12.657024,0.0,0.0,0.0,24,23.8171,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.4116,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,302,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4682,0,0.0,0.0,0.0,0.0,0,0,33343,0,13,Mercedes-Benz,E400 Hybrid,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,31.3974,0.0,41.9549,0.0,Midsize Cars,2013,500,,,,,Hybrid,,,126V Li-Ion,MBX +15.287400000000002,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,25,25.3271,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,303,,6,2350,0,Diesel,Diesel,5,-1,32,32.3554,0,0.0,0.0,0.0,0.0,0,0,33344,0,14,Mercedes-Benz,E350 Bluetec,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.3,0.0,45.6,0.0,Midsize Cars,2013,250,,,T,,Diesel,,,,MBX +10.987,0.0,0.0,0.0,27,26.9657,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.3545,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,6,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.863,0,0.0,0.0,0.0,0.0,0,0,33345,0,15,Nissan,Sentra,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.9,0.0,50.8,0.0,Midsize Cars,2013,2750,,,,,,,,,NSX +9.690534,0.0,0.0,0.0,30,30.4182,0,0.0,0.0,0.0,0.0,263,-1,0.0,263.0,34,33.9209,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,7,,9,1600,0,Regular,Regular Gasoline,9,-1,39,39.477,0,0.0,0.0,0.0,0.0,0,0,33346,0,15,Nissan,Sentra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8602,0.0,56.2133,0.0,Midsize Cars,2013,4000,,,,,,,,,NSX +9.976196,0.0,0.0,0.0,30,29.599,0,0.0,0.0,0.0,0.0,268,-1,0.0,268.0,33,33.2119,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,9,California Emission Control System,8,1650,0,Regular,Regular Gasoline,8,-1,39,39.0354,0,0.0,0.0,0.0,0.0,0,0,33347,0,15,Nissan,Sentra,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.6721,0.0,55.5488,0.0,Midsize Cars,2013,3750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,21,20.7212,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.3596,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,88,3-mode (Power/Normal/Eco) Transmission,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.0159,0,0.0,0.0,0.0,0.0,0,0,33348,0,16,Toyota,Avalon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2329,0.0,43.628,0.0,Midsize Cars,2013,500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6755,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,351,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.609,0,0.0,0.0,0.0,0.0,0,0,33349,0,18,Jaguar,XJ LWB,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4,0.0,34.3,0.0,Large Cars,2013,-3750,,,,,,,,,JCX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3335,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.0,0.0,Compact Cars,1987,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1609,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,354,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,33350,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5,0.0,37.9,0.0,Large Cars,2013,-2250,,,,S,,,,,JCX +15.287400000000002,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,25,24.617,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,209,,6,2350,0,Diesel,Diesel,5,-1,31,31.405,0,0.0,0.0,0.0,0.0,0,0,33351,0,16,Mercedes-Benz,S350 Bluetec 4matic,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 7-spd,26.5,0.0,44.2,0.0,Large Cars,2013,250,,,T,,Diesel,,,,MBX +16.4805,0.0,0.0,0.0,17,16.9277,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7436,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,682,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.7822,0,0.0,0.0,0.0,0.0,0,0,33352,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1499,0.0,34.5499,0.0,Standard Pickup Trucks 2WD,2013,-1750,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.2448,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.8737,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,875,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3357,0,0.0,0.0,0.0,0.0,0,0,33353,0,0,Ram,1500 HFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,22.8996,0.0,35.3494,0.0,Standard Pickup Trucks 2WD,2013,-1000,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,20,19.7612,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,22.0436,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,591,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.667,0,0.0,0.0,0.0,0.0,0,0,33354,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.9339,0.0,35.8286,0.0,Small Sport Utility Vehicle 2WD,2013,-500,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.8443,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6536,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,106,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.5746,0,0.0,0.0,0.0,0.0,0,0,33355,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.8446,0.0,35.5,0.0,Small Sport Utility Vehicle 4WD,2013,-2250,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,19,19.2558,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.4836,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,592,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.0217,0,0.0,0.0,0.0,0.0,0,0,33356,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.2535,0.0,34.8957,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,NSX +23.534154,0.0,0.0,0.0,12,12.4354,0,0.0,0.0,0.0,0.0,620,-1,0.0,620.0,14,14.223,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,6,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.2545,0,0.0,0.0,0.0,0.0,0,0,33357,0,0,Land Rover,LR4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.3,0.0,23.8,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,,,,,,,LRX +0.18000000000000002,0.0,0.0,7.0,126,126.3678,0,0.0,0.0,27.0,0.0,0,-1,0.0,0.0,112,112.2077,0,0.0,30.0,0.0,0.0,,,Rear-Wheel Drive,141,,10,550,0,Electricity,Electricity,10,-1,99,98.6914,0,0.0,0.0,34.0,0.0,13,85,33358,0,0,Mitsubishi,i-MiEV,N,false,0,0,62,68.5545,0.0,54.8184,0.0,Automatic (A1),180.5254,0.0,140.9876,0.0,Subcompact Cars,2013,9250,,,,,EV,,,49 kW DCPM,MTX +14.964294,0.0,0.0,0.0,19,19.1173,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,22.2475,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,111,SIDI,-1,2750,0,Premium,Premium Gasoline,-1,-1,28,27.8136,0,0.0,0.0,0.0,0.0,0,0,33359,12,0,Mercedes-Benz,C350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0674,0.0,38.9443,0.0,Subcompact Cars,2012,-1750,,,,,,,,,MBX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59007,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3336,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Compact Cars,1987,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,14.8562,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.6129,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,656,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,19,19.4194,0,0.0,0.0,0.0,0.0,0,0,33360,12,0,BMW,650i Convertible xDrive,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),18.7559,0.0,31.5039,0.0,Compact Cars,2012,-5750,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5544,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,15.945,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,663,SIDI,-1,3750,0,Premium,Premium Gasoline,-1,-1,20,20.3265,0,0.0,0.0,0.0,0.0,0,0,33361,12,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.7405,0.0,28.1592,0.0,Compact Cars,2012,-6750,G,,T,,,,,,BMX +10.613442000000001,3.400914,0.0,0.0,28,27.503,19,19.0336,0.0,0.0,0.0,-1,-1,286.1363636363636,286.6774193548387,31,31.2862,22,22.1555,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,31,SIDI; FFV,-1,1800,2050,Gasoline or E85,Regular Gasoline,-1,-1,38,37.6091,28,27.7108,0.0,0.0,0.0,23,90,33362,0,13,Ford,Focus FWD FFV,Y,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM-S6),35.664,24.6814,53.4083,39.3518,Compact Cars,2012,3000,,,,,FFV,E85,270,,FMX +12.657024,0.0,0.0,0.0,23,22.7854,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,25.6524,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,545,SIDI,-1,2300,0,Premium,Premium Gasoline,-1,-1,30,30.3144,0,0.0,0.0,0.0,0.0,0,0,33363,0,10,BMW,ActiveHybrid 5,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2943,0.0,41.9998,0.0,Midsize Cars,2012,500,,,T,,Hybrid,,,374V Li-Ion,BMX +13.73375,0.0,0.0,0.0,21,21.1383,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,24.1019,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,-1,2300,0,Regular,Regular Gasoline,-1,-1,29,29.0859,0,0.0,0.0,0.0,0.0,0,0,33364,0,0,Honda,Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,26.8,0.0,40.8,0.0,Sport Utility Vehicle - 2WD,2012,500,,,,,,,,,HNX +16.4805,4.994,0.0,0.0,18,17.784,13,13.2802,0.0,0.0,0.0,-1,-1,419.6666666666667,444.35,20,19.7042,15,14.7327,0.0,0.0,0.0,6,3.5,4-Wheel Drive,821,SIDI; FFV,-1,3000,3050,Premium or E85,Premium Gasoline,-1,-1,23,22.6997,17,17.0059,0.0,0.0,0.0,0,0,33365,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.2857,16.3865,31.5529,23.4489,Sport Utility Vehicle - 4WD,2012,-3000,,,,,FFV,E85,370,,MBX +7.317342,0.0,0.0,0.0,42,42.0354,0,0.0,0.0,0.0,0.0,200,-1,0.0,200.0,45,44.6144,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,100,SIDI,10,1350,0,Premium,Premium Gasoline,10,-1,48,48.231,0,0.0,0.0,0.0,0.0,0,0,33366,0,16,Volkswagen,Jetta Hybrid,Y,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S7),57.5,0.0,65.3,0.0,Compact Cars,2013,5250,,,T,,Hybrid,,,220V Li-Ion,VWX +0.21000000000000002,0.0,0.0,10.0,94,94.4,0,0.0,0.0,36.0,0.0,0,-1,0.0,0.0,95,95.4,0,0.0,35.0,0.0,0.0,,,Rear-Wheel Drive,2,,10,650,0,Electricity,Electricity,10,-1,97,96.7,0,0.0,0.0,35.0,0.0,26,94,33367,0,0,Tesla,Model S (60 kW-hr battery pack),N,false,0,0,208,205.7,0.0,210.7,0.0,Automatic (A1),118.6,0.0,121.5,0.0,Large Cars,2013,8750,,,,,EV,,,225 kW AC Induction,TSL +0.228,0.0,0.0,12.0,88,87.9,0,0.0,0.0,38.0,0.0,0,-1,0.0,0.0,89,88.8,0,0.0,38.0,0.0,0.0,,,Rear-Wheel Drive,1,,10,700,0,Electricity,Electricity,10,-1,90,90.1,0,0.0,0.0,37.0,0.0,26,94,33368,0,0,Tesla,Model S (85 kW-hr battery pack),Y,false,0,0,265,262.7,0.0,266.8,0.0,Automatic (A1),110.4,0.0,113.2,0.0,Large Cars,2013,8500,,,,,EV,,,270 kW AC Induction,TSL +18.304342000000002,0.0,0.0,0.0,16,15.8793,0,0.0,0.0,0.0,0.0,486,-1,0.0,486.0,18,18.2078,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,52,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.1836,0,0.0,0.0,0.0,0.0,0,0,33369,10,0,Audi,RS 5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.2,0.0,28.9,0.0,Subcompact Cars,2013,-4750,,,,,,,,,ADX +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59018,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3337,17,17,Volkswagen,Jetta GLI 16v,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Compact Cars,1987,0,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,18.9532,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,22.7545,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,254,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.9574,0,0.0,0.0,0.0,0.0,0,0,33370,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,40.1,0.0,Midsize Cars,2013,-1000,,,T,,,,,,JCX +16.4805,0.0,0.0,0.0,19,18.5679,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,20,20.4182,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,77, PFI,5,3000,0,Premium,Premium Gasoline,5,-1,23,23.25,0,0.0,0.0,0.0,0.0,0,0,33371,0,10,Lexus,LS 600h L,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S8),24.7,0.0,30.3,0.0,Midsize Cars,2013,-3000,,,,,Hybrid,,,288V Ni-MH,TYX +11.75609,0.0,0.0,0.0,25,24.6358,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4262,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,82,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.0096,0,0.0,0.0,0.0,0.0,0,0,33372,0,15,Toyota,Camry,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),31.6214,0.0,49.53,0.0,Midsize Cars,2013,2250,,,,,,,,,TYX +8.24025,0.0,0.0,0.0,40,40.329,0,0.0,0.0,0.0,0.0,224,-1,0.0,224.0,40,39.6307,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,84,,10,1400,0,Regular,Regular Gasoline,10,-1,39,38.8094,0,0.0,0.0,0.0,0.0,0,0,33373,0,14,Toyota,Avalon Hybrid,Y,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AV-S6),56.1,0.0,54.2,0.0,Midsize Cars,2013,5000,,,,,Hybrid,,,245V Ni-MH,TYX +8.02051,0.0,0.0,0.0,43,42.6649,0,0.0,0.0,0.0,0.0,215,-1,0.0,215.0,41,41.132,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,85,,10,1350,0,Regular,Regular Gasoline,10,-1,39,39.4018,0,0.0,0.0,0.0,0.0,0,0,33374,0,13,Toyota,Camry Hybrid LE,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),58.5,0.0,56.1,0.0,Midsize Cars,2013,5250,,,,,Hybrid,,,245V Ni-MH,TYX +8.24025,0.0,0.0,0.0,40,40.4894,0,0.0,0.0,0.0,0.0,224,-1,0.0,224.0,40,39.5089,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,86,,10,1400,0,Regular,Regular Gasoline,10,-1,38,38.3733,0,0.0,0.0,0.0,0.0,0,0,33375,0,13,Toyota,Camry Hybrid XLE,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.0636,0.0,54.554,0.0,Midsize Cars,2013,5000,,,,,Hybrid,,,245V Ni-MH,TYX +13.1844,0.0,0.0,0.0,21,21.3584,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7542,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,87,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,33376,0,16,Toyota,Avalon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1,0.0,43.2,0.0,Midsize Cars,2013,1000,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,21,21.3584,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7542,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,89,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,33377,0,15,Toyota,Camry,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1,0.0,43.2,0.0,Midsize Cars,2013,1000,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.4927,0,0.0,0.0,0.0,0.0,581,-1,0.0,581.0,15,15.1178,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,1,,3,3650,0,Regular,Regular Gasoline,3,-1,18,17.7271,0,0.0,0.0,0.0,0.0,0,0,33378,0,0,VPG,MV-1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.63,0.0,24.98,0.0,Special Purpose Vehicle 2WD,2013,-6250,,,,,,,,,TVP +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5222,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,270,Sport Transmission,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.4399,0,0.0,0.0,0.0,0.0,0,0,33379,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,35.5,0.0,Small Sport Utility Vehicle 4WD,2013,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59017,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3338,17,17,Volkswagen,Jetta GLI/Wolfsburg Edition,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,34.0,0.0,Compact Cars,1987,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.4185,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7576,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,1,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,33380,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,32.9,0.0,Small Sport Utility Vehicle 4WD,2013,-3000,,,T,,,,,,LRX +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,595,-1,0.0,595.0,15,14.9091,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,2,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.8082,0,0.0,0.0,0.0,0.0,0,0,33381,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),15.7,0.0,26.0,0.0,Standard Sport Utility Vehicle 4WD,2013,-8000,,,,S,,,,,LRX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,563,-1,0.0,563.0,16,15.8493,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,3,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.8636,0,0.0,0.0,0.0,0.0,0,0,33382,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),16.8,0.0,27.5,0.0,Standard Sport Utility Vehicle 4WD,2013,-6750,,,,,,,,,LRX +0.324,0.0,0.0,6.0,60,60.1785,0,0.0,0.0,56.0,0.0,0,-1,0.0,0.0,62,61.9394,0,0.0,54.0,0.0,0.0,,,Front-Wheel Drive,1,,-1,950,0,Electricity,Electricity,-1,-1,64,64.2368,0,0.0,0.0,52.0,0.0,0,0,33383,0,0,BYD,e6,N,false,0,0,122,120.1,0.0,124.8,0.0,Automatic (A1),85.9694,0.0,91.7668,0.0,Sport Utility Vehicle - 2WD,2012,7250,,,,,EV,,,75 kW AC PMSM,BYD +21.974,0.0,0.0,0.0,13,12.9916,0,0.0,0.0,0.0,0.0,581,-1,0.0,581.0,15,15.1973,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,1,,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.1766,0,0.0,0.0,0.0,0.0,0,0,33384,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2013,-8000,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,551,-1,0.0,551.0,16,16.034,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,2,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,33385,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2013,-6750,G,,,,,,,,ASX +21.974,0.0,0.0,0.0,13,12.9916,0,0.0,0.0,0.0,0.0,581,-1,0.0,581.0,15,15.1973,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,3,,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.1766,0,0.0,0.0,0.0,0.0,0,0,33386,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2013,-8000,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,551,-1,0.0,551.0,16,16.034,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,4,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,33387,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2013,-6750,G,,,,,,,,ASX +21.974,0.0,0.0,0.0,13,13.0796,0,0.0,0.0,0.0,0.0,588,-1,0.0,588.0,15,15.1149,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,5,,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.6649,0,0.0,0.0,0.0,0.0,0,0,33388,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1279,0.0,25.7967,0.0,Minicompact Cars,2013,-8000,G,,,,,,,,ASX +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,526,-1,0.0,526.0,17,16.8566,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,370,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,33389,0,0,Cadillac,XTS Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1,0.0,28.8,0.0,Special Purpose Vehicle 2WD,2013,-4250,G,,,,,,,,GMX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59017,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3339,17,17,Volkswagen,Jetta GLI/Wolfsburg Edition,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,39.7436,0.0,Compact Cars,1987,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,526,-1,0.0,526.0,17,16.8566,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,371,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,33390,0,0,Cadillac,XTS Limo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.1,0.0,28.8,0.0,Special Purpose Vehicle 2WD,2013,-4250,G,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.9856,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5421,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,40,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8612,0,0.0,0.0,0.0,0.0,0,0,33391,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.554,0.0,35.4314,0.0,Small Sport Utility Vehicle 2WD,2013,-1000,,,,,,,,,HYX +12.657024,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,348,-1,0.0,348.0,26,25.5771,0,0.0,0.0,0.0,0.0,4,1.4,All-Wheel Drive,604,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.5646,0,0.0,0.0,0.0,0.0,0,0,33392,0,0,Buick,Encore AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.4,0.0,41.5,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,T,,,,,,GMX +16.4805,0.0,0.0,0.0,18,17.7655,0,0.0,0.0,0.0,0.0,443,-1,0.0,443.0,20,20.0347,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel Drive,39,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.741,0,0.0,0.0,0.0,0.0,0,0,33393,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.261,0.0,34.6679,0.0,Small Sport Utility Vehicle 4WD,2013,-1750,,,,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,19.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,95,,4,3150,0,Premium,Premium Gasoline,4,-1,22,22.4536,0,0.0,0.0,0.0,0.0,0,0,33394,0,0,Nissan,Murano CrossCabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.1,0.0,31.2,0.0,Small Sport Utility Vehicle 4WD,2013,-3750,,,,,,,,,NSX +17.351199,0.0,0.0,0.0,19,19.3623,0,0.0,0.0,0.0,0.0,463,-1,0.0,463.0,22,21.9544,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,570,SIDI,5,2700,0,Diesel,Diesel,4,-1,26,26.2497,0,0.0,0.0,0.0,0.0,0,0,33395,0,0,BMW,X5 xDrive35d,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3966,0.0,36.6724,0.0,Standard Sport Utility Vehicle 4WD,2013,-1500,,,T,,Diesel,,,,BMX +0.17400000000000002,0.0,0.0,4.0,122,122.4,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,116,115.974,0,0.0,29.0,0.0,0.0,,,Front-Wheel Drive,738,,10,500,0,Electricity,Electricity,10,-1,108,108.1,0,0.0,0.0,31.0,0.0,7,76,33396,0,0,Fiat,500e,N,false,0,0,87,91.84,0.0,81.48,0.0,Automatic (A1),174.8555,0.0,154.4591,0.0,Minicompact Cars,2013,9500,,,,,EV,,,82 kW ACIPM,CRX +0.264,0.0,0.0,6.0,78,78.4283,0,0.0,0.0,43.0,0.0,0,-1,0.0,0.0,76,76.169,0,0.0,44.0,0.0,0.0,,,Front-Wheel Drive,93,,10,800,0,Electricity,Electricity,10,-1,74,73.5784,0,0.0,0.0,46.0,0.0,0,0,33397,0,0,Toyota,RAV4 EV,N,false,0,0,103,107.0,0.0,98.9,0.0,Automatic (variable gear ratios),112.0404,0.0,105.112,0.0,Small Sport Utility Vehicle 2WD,2013,8000,,,,,EV,,,115 kW AC Induction,TYX +4.181064109756098,3.2961,0.0,2.5,44,44.2254,108,107.9814,0.0,31.0,0.5,110,-1,0.0,110.0,43,42.7419,100,99.995,34.0,0.0,0.48,4,2.0,Front-Wheel Drive,271,PHEV,10,1300,0,Regular Gas and Electricity,Regular Gasoline,10,-1,41,41.0585,92,91.7052,0.0,37.0,0.44,0,0,33398,0,8,Ford,Fusion Energi Plug-in Hybrid,Y,true,0,103,0,0.0,23.086,0.0,19.709,Automatic (variable gear ratios),61.0,154.3,58.6,131.0,Midsize Cars,2013,7250,,,,,Plug-in Hybrid,Electricity,21,68 kW,FMX +11.360558000000001,0.0,0.0,0.0,25,25.1956,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.4663,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,6,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,37.166,0,0.0,0.0,0.0,0.0,0,0,33399,0,15,Mazda,6,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.4042,0.0,52.7451,0.0,Midsize Cars,2014,2500,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,87,334,13,14,Mazda,626,N,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3340,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Compact Cars,1987,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,26,26.2654,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,30,30.4833,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,7,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,38,37.9447,0,0.0,0.0,0.0,0.0,0,0,33400,0,15,Mazda,6,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9088,0.0,53.9111,0.0,Midsize Cars,2014,2750,,,,,,,,,TKX +12.19557,0.0,0.0,0.0,25,24.6198,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,27,27.354,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,32,31.6501,0,0.0,0.0,0.0,0.0,0,0,33401,0,0,Mazda,CX-5 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5991,0.0,44.5607,0.0,Small Sport Utility Vehicle 2WD,2014,1750,,,,,,,,,TKX +11.360558000000001,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,302,-1,0.0,302.0,29,29.3513,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,35,34.5855,0,0.0,0.0,0.0,0.0,0,0,33402,0,0,Mazda,CX-5 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,48.9,0.0,Small Sport Utility Vehicle 2WD,2014,2500,,,,,,,,,TKX +11.360558000000001,0.0,0.0,0.0,26,26.4348,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.7826,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,32,32.2875,0,0.0,0.0,0.0,0.0,0,0,33403,0,0,Mazda,CX-5 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.1482,0.0,45.4998,0.0,Small Sport Utility Vehicle 2WD,2014,2500,,,,,,,,,TKX +12.657024,0.0,0.0,0.0,24,23.9674,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.3563,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,2,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0125,0,0.0,0.0,0.0,0.0,0,0,33404,0,0,Mazda,CX-5 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.6908,0.0,42.1557,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,,,,,TKX +11.75609,0.0,0.0,0.0,25,25.4066,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,28,27.6017,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,5,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,33405,0,0,Mazda,CX-5 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.7,0.0,43.4,0.0,Small Sport Utility Vehicle 4WD,2014,2250,,,,,,,,,TKX +14.964294,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.1404,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,214,,5,2500,0,Regular,Regular Gasoline,5,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,33406,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,40.7,0.0,Subcompact Cars,2014,-500,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,19,19.201,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.1759,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,215,,6,2400,0,Regular,Regular Gasoline,6,-1,31,31.0262,0,0.0,0.0,0.0,0.0,0,0,33407,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.1798,0.0,43.6431,0.0,Subcompact Cars,2014,0,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,15,15.1268,0,0.0,0.0,0.0,0.0,489,-1,0.0,489.0,18,18.1372,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,217,,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.9668,0,0.0,0.0,0.0,0.0,0,0,33408,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7831,0.0,33.3743,0.0,Subcompact Cars,2014,-4750,,,,S,,,,,FMX +16.4805,0.0,0.0,0.0,18,17.6782,0,0.0,0.0,0.0,0.0,436,-1,0.0,436.0,20,20.4907,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,218,,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.437,0,0.0,0.0,0.0,0.0,0,0,33409,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.1449,0.0,35.4958,0.0,Subcompact Cars,2014,-1750,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3341,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1987,-2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,21.7825,0,0.0,0.0,0.0,0.0,366,-1,0.0,366.0,24,24.3685,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.5046,0,0.0,0.0,0.0,0.0,0,0,33410,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6104,0.0,39.9513,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,,,,,,,FJX +12.19557,0.0,0.0,0.0,24,24.4053,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.1715,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,18,,7,2050,0,Regular,Regular Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,33411,0,0,Subaru,Forester AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),31.3,0.0,44.4,0.0,Small Sport Utility Vehicle 4WD,2014,1750,,,,,,,,,FJX +13.1844,0.0,0.0,0.0,23,23.1075,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.9254,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,20,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,28,27.5771,0,0.0,0.0,0.0,0.0,0,0,33412,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),29.5,0.0,38.6,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,T,,,,,,FJX +27.4675,0.0,0.0,0.0,10,9.7957,0,0.0,0.0,0.0,0.0,742,-1,0.0,742.0,12,11.9264,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,93,,1,5050,0,Premium,Premium Gasoline,1,-1,16,16.2453,0,0.0,0.0,0.0,0.0,0,0,33413,0,0,Lamborghini,Aventador Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),11.5,0.0,21.2,0.0,Two Seaters,2013,-13250,G,,,,,,,,NLX +12.19557,3.9402660000000003,0.0,0.0,24,23.7911,17,16.5112,0.0,0.0,0.0,324,323,323.0,324.0,27,27.391,19,19.2438,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,245,FFV,7,2050,2400,Gasoline or E85,Regular Gasoline,7,7,34,33.6065,24,24.1235,0.0,0.0,0.0,13,97,33414,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.446,20.6,47.4487,33.6,Midsize Cars,2013,1750,,,,,FFV,E85,300,,CRX +9.690534,0.0,0.0,0.0,30,30.195,0,0.0,0.0,0.0,0.0,262,-1,0.0,262.0,34,33.9592,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,8,,9,1600,0,Regular,Regular Gasoline,9,-1,40,40.0636,0,0.0,0.0,0.0,0.0,0,0,33415,0,15,Nissan,Sentra FE,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.5358,0.0,57.0972,0.0,Midsize Cars,2013,4000,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,22,21.7246,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.0418,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,80,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,33416,0,22,Scion,xB,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6,0.0,38.7,0.0,Small Station Wagons,2013,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,365,-1,0.0,365.0,24,23.9429,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,81,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,33417,0,22,Scion,xB,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2013,500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.323,0,0.0,0.0,0.0,0.0,459,-1,0.0,459.0,19,19.396,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,83,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.719,0,0.0,0.0,0.0,0.0,0,0,33418,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6734,0.0,31.5807,0.0,Small Pickup Trucks 2WD,2013,-2500,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,19.393,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.9157,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,84,,5,2600,0,Regular,Regular Gasoline,5,-1,23,23.1361,0,0.0,0.0,0.0,0.0,0,0,33419,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.438,0.0,32.1795,0.0,Small Pickup Trucks 2WD,2013,-1000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3342,0,14,Volvo,240 DL/240 GL,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Compact Cars,1987,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.7159,0,0.0,0.0,0.0,0.0,494,-1,0.0,494.0,18,18.1935,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,181,,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,33420,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5541,0.0,31.318,0.0,Small Pickup Trucks 2WD,2013,-3250,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.2802,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5026,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,182,,4,2900,0,Regular,Regular Gasoline,4,-1,22,22.208,0,0.0,0.0,0.0,0.0,0,0,33421,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2956,0.0,30.848,0.0,Small Pickup Trucks 2WD,2013,-2500,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,15.0302,0,0.0,0.0,0.0,0.0,516,-1,0.0,516.0,17,17.2333,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,183,,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.9945,0,0.0,0.0,0.0,0.0,0,0,33422,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6571,0.0,29.1122,0.0,Small Pickup Trucks 4WD,2013,-4250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.7837,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8568,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,184,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2717,0,0.0,0.0,0.0,0.0,0,0,33423,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6431,0.0,29.5082,0.0,Small Pickup Trucks 4WD,2013,-3250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,489,-1,0.0,489.0,18,18.2092,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,483,,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.3141,0,0.0,0.0,0.0,0.0,0,0,33424,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.0,0.0,Small Sport Utility Vehicle 2WD,2013,-3250,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,24,23.5414,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3541,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,90,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,33425,0,0,Toyota,RAV4 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.1,0.0,43.4,0.0,Small Sport Utility Vehicle 2WD,2013,1500,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,14.6796,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.7426,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,185,,4,3250,0,Regular,Regular Gasoline,4,-1,20,20.2147,0,0.0,0.0,0.0,0.0,0,0,33426,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2,0.0,28.0,0.0,Small Sport Utility Vehicle 4WD,2013,-4250,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,16,15.5051,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.1929,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,186,,4,3250,0,Regular,Regular Gasoline,4,-1,20,19.8314,0,0.0,0.0,0.0,0.0,0,0,33427,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2779,0.0,27.4542,0.0,Small Sport Utility Vehicle 4WD,2013,-4250,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,24.8803,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,91,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.8121,0,0.0,0.0,0.0,0.0,0,0,33428,0,0,Toyota,RAV4 AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,40.4,0.0,Small Sport Utility Vehicle 4WD,2013,1000,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,22,22.2263,0,0.0,0.0,0.0,0.0,355,-1,0.0,355.0,25,24.8506,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,92,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.0418,0,0.0,0.0,0.0,0.0,0,0,33429,0,0,Toyota,RAV4 Limited AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.2871,0.0,40.7355,0.0,Small Sport Utility Vehicle 4WD,2013,1000,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3343,0,14,Volvo,240 DL/240 GL,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Compact Cars,1987,-500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,19.2263,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.8173,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,216,,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.5668,0,0.0,0.0,0.0,0.0,0,0,33430,9,0,Ford,Mustang Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.2139,0.0,41.5031,0.0,Subcompact Cars,2014,0,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,15,15.4452,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,19,18.7791,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,219,,4,2900,0,Regular,Regular Gasoline,4,-1,26,25.509,0,0.0,0.0,0.0,0.0,0,0,33431,13,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.1995,0.0,35.6,0.0,Subcompact Cars,2014,-2500,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,16,16.4644,0,0.0,0.0,0.0,0.0,472,-1,0.0,472.0,19,18.726,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,71,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.5041,0,0.0,0.0,0.0,0.0,0,0,33432,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),20.2688,0.0,30.1556,0.0,Subcompact Cars,2014,-3750,,,T,,,,,,NSX +13.631265,0.0,0.0,0.0,24,23.8727,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,28,28.2271,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,1,,7,2100,0,Diesel,Diesel,6,-1,36,36.3252,0,0.0,0.0,0.0,0.0,0,0,33433,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),29.9399,0.0,51.4,0.0,Large Cars,2014,1500,,,T,,Diesel,,,,ADX +14.964294,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.2049,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,2,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.7471,0,0.0,0.0,0.0,0.0,0,0,33434,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2,0.0,38.8,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4668,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.5875,0,0.0,0.0,0.0,0.0,0,0,33435,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,37.8,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,18,18.3321,0,0.0,0.0,0.0,0.0,427,-1,0.0,427.0,21,20.8179,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,5,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.9536,0,0.0,0.0,0.0,0.0,0,0,33436,0,0,Kia,Sorento 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.0161,0.0,34.7973,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.8873,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,1,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,24,23.788,0,0.0,0.0,0.0,0.0,0,0,33437,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.9,0.0,35.6,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,17.5717,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.8444,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel Drive,4,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.5703,0,0.0,0.0,0.0,0.0,0,0,33438,0,0,Kia,Sorento 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.0035,0.0,32.8037,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,KMX +17.337486000000002,0.0,0.0,0.0,17,17.6444,0,0.0,0.0,0.0,0.0,456,-1,0.0,456.0,19,19.5264,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,95,,4,3150,0,Premium,Premium Gasoline,4,-1,22,22.4536,0,0.0,0.0,0.0,0.0,0,0,33439,0,0,Nissan,Murano CrossCabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.1,0.0,31.2,0.0,Small Sport Utility Vehicle 4WD,2014,-3750,,,,,,,,,NSX +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60060,(GUZZLER) (VOLVO780) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3344,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Compact Cars,1987,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,13,12.9942,0,0.0,0.0,0.0,0.0,557,-1,0.0,557.0,16,15.9766,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,2,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,22,22.2057,0,0.0,0.0,0.0,0.0,0,0,33440,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),15.4,0.0,28.8067,0.0,Two Seaters,2014,-6750,G,,,,,,,,ADX +20.589638,0.0,0.0,0.0,13,12.9942,0,0.0,0.0,0.0,0.0,557,-1,0.0,557.0,16,15.9766,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,3,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,22,22.2057,0,0.0,0.0,0.0,0.0,0,0,33441,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),15.4,0.0,28.8067,0.0,Two Seaters,2014,-6750,G,,,,,,,,ADX +19.381068,0.0,0.0,0.0,14,13.5719,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,17,16.5465,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,4,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,23,22.6008,0,0.0,0.0,0.0,0.0,0,0,33442,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.471,0.0,29.7396,0.0,Two Seaters,2014,-5750,G,,,,,,,,ADX +19.381068,0.0,0.0,0.0,14,13.5719,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,17,16.5465,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,5,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,23,22.6008,0,0.0,0.0,0.0,0.0,0,0,33443,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.471,0.0,29.7396,0.0,Two Seaters,2014,-5750,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,12,11.7089,0,0.0,0.0,0.0,0.0,620,-1,0.0,620.0,14,14.2392,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,6,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,19.3501,0,0.0,0.0,0.0,0.0,0,0,33444,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.384,0.0,Two Seaters,2014,-9500,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,12,11.7089,0,0.0,0.0,0.0,0.0,620,-1,0.0,620.0,14,14.2392,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,7,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,19.3501,0,0.0,0.0,0.0,0.0,0,0,33445,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.7,0.0,23.384,0.0,Two Seaters,2014,-9500,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,11,11.4775,0,0.0,0.0,0.0,0.0,620,-1,0.0,620.0,14,14.2461,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,8,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,20,20.2021,0,0.0,0.0,0.0,0.0,0,0,33446,0,0,Audi,R8 Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6677,0.0,24.536,0.0,Two Seaters,2014,-9500,G,,,,,,,,ADX +23.534154,0.0,0.0,0.0,11,11.4775,0,0.0,0.0,0.0,0.0,620,-1,0.0,620.0,14,14.2461,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,9,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,20,20.2021,0,0.0,0.0,0.0,0.0,0,0,33447,0,0,Audi,R8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.6677,0.0,24.536,0.0,Two Seaters,2014,-9500,G,,,,,,,,ADX +21.974,0.0,0.0,0.0,13,13.0796,0,0.0,0.0,0.0,0.0,588,-1,0.0,588.0,15,15.1149,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,5,,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.6649,0,0.0,0.0,0.0,0.0,0,0,33448,5,0,Aston Martin,DB9,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1279,0.0,25.7967,0.0,Minicompact Cars,2014,-8000,G,,,,,,,,ASX +21.974,0.0,0.0,0.0,13,13.0796,0,0.0,0.0,0.0,0.0,588,-1,0.0,588.0,15,15.1149,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,6,,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.6649,0,0.0,0.0,0.0,0.0,0,0,33449,5,0,Aston Martin,Vanquish,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1279,0.0,25.7967,0.0,Minicompact Cars,2014,-8000,G,,,,,,,,ASX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60042,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3345,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Compact Cars,1987,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,13.0796,0,0.0,0.0,0.0,0.0,588,-1,0.0,588.0,15,15.1149,0,0.0,0.0,0.0,0.0,12,5.9,Rear-Wheel Drive,7,,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.6649,0,0.0,0.0,0.0,0.0,0,0,33450,0,14,Aston Martin,Rapide S,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1279,0.0,25.7967,0.0,Subcompact Cars,2014,-8000,G,,,,,,,,ASX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,531,-1,0.0,531.0,17,16.6647,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.7555,0,0.0,0.0,0.0,0.0,0,0,33451,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,30.2,0.0,Subcompact Cars,2014,-5750,G,,,S,,,,,RII +13.73375,0.0,0.0,0.0,21,21.1733,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.9116,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,506,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.4009,0,0.0,0.0,0.0,0.0,0,0,33452,0,0,Jeep,Compass FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.8477,0.0,39.8,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.1733,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.9116,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,507,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.4009,0,0.0,0.0,0.0,0.0,0,0,33453,0,0,Jeep,Patriot FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.8477,0.0,39.8,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.1382,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.8432,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,508,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.2635,0,0.0,0.0,0.0,0.0,0,0,33454,0,0,Jeep,Compass FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.8,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,21,21.1382,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.8432,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,509,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.2635,0,0.0,0.0,0.0,0.0,0,0,33455,0,0,Jeep,Patriot FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.8,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.8175,0,0.0,0.0,0.0,0.0,355,-1,0.0,355.0,25,24.9839,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,513,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.2635,0,0.0,0.0,0.0,0.0,0,0,33456,0,0,Jeep,Patriot FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.8175,0,0.0,0.0,0.0,0.0,355,-1,0.0,355.0,25,24.9839,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,514,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.2635,0,0.0,0.0,0.0,0.0,0,0,33457,0,0,Jeep,Compass FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.1,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6867,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,520,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0426,0,0.0,0.0,0.0,0.0,0,0,33458,0,0,Jeep,Compass FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,42.2,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.0392,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,515,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,33459,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1,0.0,37.6,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48108,"(FFS,TRBO) (MPFI)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,89,3346,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1987,-3250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,20.6233,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.0392,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,516,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,33460,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1,0.0,37.6,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.7449,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.8635,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,555,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.0578,0,0.0,0.0,0.0,0.0,0,0,33461,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.3,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,23,22.7449,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.8635,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,556,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.0578,0,0.0,0.0,0.0,0.0,0,0,33462,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.3,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,,,,,,,CRX +21.974,0.0,0.0,0.0,13,12.747,0,0.0,0.0,0.0,0.0,595,-1,0.0,595.0,15,14.869,0,0.0,0.0,0.0,0.0,8,6.4,4-Wheel Drive,502,,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,33463,0,0,Jeep,Grand Cherokee SRT8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,15.7,0.0,25.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-8000,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,15,14.8,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.2,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,7,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6,0,0.0,0.0,0.0,0.0,0,0,33464,0,0,Porsche,Cayenne Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.3,0.0,29.9,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,T,,,,,,PRX +9.690534,0.0,0.0,0.0,31,31.1312,0,0.0,0.0,0.0,0.0,261,-1,0.0,261.0,34,34.0077,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,13,,9,1600,0,Regular,Regular Gasoline,9,-1,38,38.3373,0,0.0,0.0,0.0,0.0,0,0,33465,0,0,Honda,CR-Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,40.9,0.0,54.5,0.0,Two Seaters,2013,4000,,,,,Hybrid,,,144V Li-Ion,HNX +10.987,0.0,0.0,0.0,27,26.733,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.9401,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,44,,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0845,0,0.0,0.0,0.0,0.0,0,0,33466,0,0,MINI,Cooper Clubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.5701,0.0,49.6413,0.0,Two Seaters,2013,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,45,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,0,0,33467,0,0,MINI,Cooper Clubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Two Seaters,2013,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.1264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,86,SIDI,8,2100,0,Premium,Premium Gasoline,8,-1,35,34.8751,0,0.0,0.0,0.0,0.0,0,0,33468,0,0,MINI,John Cooper Works GP-2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7127,0.0,49.3301,0.0,Two Seaters,2013,1500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.4183,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,321,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,36,35.7276,0,0.0,0.0,0.0,0.0,0,0,33469,0,13,BMW,320i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.4,0.0,50.5982,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,10301,"(GUZZLER) (FFS,TRBO)",-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3347,16,0,ASC Incorporated,GNX,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,29.0,0.0,Midsize Cars,1987,-6750,T,CLKUP,T,,,,,, +12.19557,0.0,0.0,0.0,23,22.9284,0,0.0,0.0,0.0,0.0,329,-1,0.0,329.0,27,27.156,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,322,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,35,35.0559,0,0.0,0.0,0.0,0.0,0,0,33470,0,13,BMW,320i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),29.2529,0.0,49.5988,0.0,Compact Cars,2013,750,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,21.6,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,24.9542,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,6,2400,0,Premium,Premium Gasoline,6,-1,31,30.8,0,0.0,0.0,0.0,0.0,0,0,33471,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.1,0.0,43.0,0.0,Compact Cars,2013,0,,,,,,,,,HNX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,42,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,16,87,33472,0,0,MINI,Cooper Countryman Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2013,750,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.4433,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.3151,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,43,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7611,0,0.0,0.0,0.0,0.0,16,87,33473,0,0,MINI,Cooper Countryman Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5789,0.0,49.1607,0.0,Compact Cars,2013,2000,,,,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6742,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8457,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,911,,4,3400,0,Midgrade,Midgrade Gasoline,4,-1,21,20.5652,0,0.0,0.0,0.0,0.0,0,0,33474,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.1929,0.0,28.4996,0.0,Standard Pickup Trucks 4WD,2013,-5000,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.9776,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,34,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,33475,0,0,Honda,Crosstour 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.9,0.0,Small Sport Utility Vehicle 4WD,2013,-500,,,,,,,,,HNX +23.534154,0.0,0.0,0.0,13,12.95,0,0.0,0.0,0.0,0.0,615,-1,0.0,615.0,14,14.4291,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,424,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,16.7703,0,0.0,0.0,0.0,0.0,0,0,33476,0,0,Mercedes-Benz,GL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.4118,0.0,24.2187,0.0,Standard Sport Utility Vehicle 4WD,2013,-9500,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.3331,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,17.8709,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,2,,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.4029,0,0.0,0.0,0.0,0.0,0,0,33477,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.1158,0.0,30.7199,0.0,Subcompact Cars,2014,-4750,,,,S,,,,,RII +20.589638,0.0,0.0,0.0,14,13.5,0,0.0,0.0,0.0,0.0,572,-1,0.0,572.0,16,15.8,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,8,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.0,0,0.0,0.0,0.0,0.0,0,0,33478,0,0,Porsche,Cayenne Turbo S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,16.7,0.0,27.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,T,,,,,,PRX +12.657024,0.0,0.0,0.0,22,21.9803,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,25.9308,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,428,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2305,0,0.0,0.0,0.0,0.0,0,0,33479,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.9499,0.0,46.8923,0.0,Two Seaters,2014,500,,,T,,,,,,BMX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64001,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3348,0,17,Audi,5000 CS quattro,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize Cars,1987,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.352,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,33480,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Two Seaters,2014,-2250,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1135,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5071,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.5293,0,0.0,0.0,0.0,0.0,0,0,33481,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.3958,0.0,32.7447,0.0,Two Seaters,2014,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1135,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5071,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,438,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.5293,0,0.0,0.0,0.0,0.0,0,0,33482,0,0,BMW,Z4 sDrive35is,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.3958,0.0,32.7447,0.0,Two Seaters,2014,-3000,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,21.6153,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.4483,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,640,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.4901,0,0.0,0.0,0.0,0.0,0,0,33483,13,0,BMW,640i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.4506,0.0,45.7986,0.0,Subcompact Cars,2014,0,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.8934,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.5426,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,641,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.3465,0,0.0,0.0,0.0,0.0,0,0,33484,11,0,BMW,640i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1122,0.0,42.6454,0.0,Subcompact Cars,2014,-500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.1835,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.9382,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,652,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9133,0,0.0,0.0,0.0,0.0,0,0,33485,13,0,BMW,650i xDrive Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.1683,0.0,33.2973,0.0,Subcompact Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,656,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,33486,11,0,BMW,650i xDrive Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Subcompact Cars,2014,-3750,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.8934,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.5426,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,642,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.3465,0,0.0,0.0,0.0,0.0,0,0,33487,0,12,BMW,640i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1122,0.0,42.6454,0.0,Compact Cars,2014,-500,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,658,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,33488,0,12,BMW,650i xDrive Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Compact Cars,2014,-3750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,24,24.0601,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.1835,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,8,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,36,35.6514,0,0.0,0.0,0.0,0.0,0,0,33489,0,14,Kia,Forte,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.8195,0.0,50.4847,0.0,Midsize Cars,2014,2250,,,,,,,,,KMX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64002,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3349,0,17,Audi,5000 CS Turbo,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1987,-3250,,,T,,,,,, +11.75609,0.0,0.0,0.0,24,24.1538,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9662,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,9,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.6507,0,0.0,0.0,0.0,0.0,0,0,33490,0,14,Kia,Forte,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.9499,0.0,48.9967,0.0,Midsize Cars,2014,2250,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.9509,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,154,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.5446,0,0.0,0.0,0.0,0.0,25,98,33491,0,0,BMW,X1 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.1,0.0,Large Cars,2014,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.5539,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,21.893,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,7,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0665,0,0.0,0.0,0.0,0.0,0,0,33492,0,15,Kia,Cadenza,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.5,0.0,Large Cars,2014,-500,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,456,-1,0.0,456.0,20,19.5212,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,6,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,33493,0,0,Kia,Sedona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,32.8,0.0,Minivan - 2WD,2014,-1750,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,416,-1,0.0,416.0,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,801,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,33494,0,0,Jeep,Compass 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,416,-1,0.0,416.0,21,21.2447,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,802,,5,2600,0,Regular,Regular Gasoline,5,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,33495,0,0,Jeep,Patriot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),25.3,0.0,31.9,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,CRX +16.4805,4.679378,0.0,0.0,17,17.4185,14,13.6778,0.0,0.0,0.0,443,405,405.0,443.0,20,20.0968,16,15.5479,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,521,FFV,5,2750,2850,Gasoline or E85,Regular Gasoline,5,5,25,24.7476,19,18.6672,0.0,0.0,0.0,0,0,33496,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.8,16.9,34.5,25.8,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,FFV,E85,395,,CRX +19.381068,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8589,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,522,,3,3400,0,Midgrade,Midgrade Gasoline,3,-1,22,22.0349,0,0.0,0.0,0.0,0.0,0,0,33497,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,17.5,0.0,30.6,0.0,Standard Sport Utility Vehicle 2WD,2014,-5000,,,,,,,,,CRX +17.337486000000002,4.994,0.0,0.0,17,16.8899,13,13.2907,0.0,0.0,0.0,458,415,415.0,458.0,19,19.4627,15,15.0743,0.0,0.0,0.0,6,3.6,4-Wheel Drive,523,FFV,4,2900,3050,Gasoline or E85,Regular Gasoline,4,5,24,23.9152,18,18.0322,0.0,0.0,0.0,0,0,33498,0,0,Jeep,Grand Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1,16.4,33.3,24.9,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,FFV,E85,370,,CRX +20.589638,0.0,0.0,0.0,14,13.6004,0,0.0,0.0,0.0,0.0,560,-1,0.0,560.0,16,15.9291,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,524,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,20,20.1445,0,0.0,0.0,0.0,0.0,0,0,33499,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,16.8,0.0,27.9,0.0,Standard Sport Utility Vehicle 4WD,2014,-6000,,,,,,,,,CRX +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56050,,-1,1800,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,21,87,335,13,14,Mazda,626,Y,false,87,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,54.0,0.0,Compact Cars,1985,3000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64001,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3350,0,17,Audi,5000 CS Turbo,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1987,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.7,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,18.1,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,3,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.2,0,0.0,0.0,0.0,0.0,0,0,33500,0,0,Porsche,Cayenne S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.5,0.0,31.6,0.0,Standard Sport Utility Vehicle 4WD,2014,-4750,,,,,,,,,PRX +8.89947,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,238,-1,0.0,238.0,37,37.2348,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,14,,9,1500,0,Regular,Regular Gasoline,9,-1,39,39.003,0,0.0,0.0,0.0,0.0,0,0,33501,0,0,Honda,CR-Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),48.0,0.0,55.5,0.0,Two Seaters,2013,4500,,,,,Hybrid,,,144V Li-Ion,HNX +11.75609,0.0,0.0,0.0,24,23.5282,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.8731,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,320,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,36,35.9981,0,0.0,0.0,0.0,0.0,0,0,33502,0,13,BMW,320i,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),30.0817,0.0,51.0013,0.0,Compact Cars,2013,1250,,,T,,,,,,BMX +0.059892,0.0,0.0,0.0,27,26.6826,0,0.0,0.0,0.0,0.0,218,-1,0.0,218.0,31,30.8034,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,16,RNG=193,8,1000,0,CNG,Natural Gas,10,-1,38,37.9706,0,0.0,0.0,0.0,0.0,0,0,33503,0,6,Honda,Civic Natural Gas,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.4988,0.0,53.95,0.0,Compact Cars,2013,7000,,,,,CNG,,,,HNX +10.283832,0.0,0.0,0.0,28,28.0743,0,0.0,0.0,0.0,0.0,279,-1,0.0,279.0,32,31.9768,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,18,,8,1700,0,Regular,Regular Gasoline,8,-1,39,38.5216,0,0.0,0.0,0.0,0.0,0,0,33504,12,12,Honda,Civic,Y,false,83,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,36.4794,0.0,55.5375,0.0,Compact Cars,2013,3500,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,28,28.0188,0,0.0,0.0,0.0,0.0,284,-1,0.0,284.0,31,31.2795,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,17,,8,1800,0,Regular,Regular Gasoline,8,-1,36,36.4665,0,0.0,0.0,0.0,0.0,0,0,33505,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.4,0.0,51.7,0.0,Compact Cars,2013,3000,,,,,,,,,HNX +9.976196,0.0,0.0,0.0,29,29.0765,0,0.0,0.0,0.0,0.0,265,-1,0.0,265.0,33,33.4411,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19,,8,1650,0,Regular,Regular Gasoline,8,-1,41,40.955,0,0.0,0.0,0.0,0.0,0,0,33506,0,12,Honda,Civic HF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,37.9179,0.0,59.0136,0.0,Compact Cars,2013,3750,,,,,,,,,HNX +7.47116,0.0,0.0,0.0,44,43.931,0,0.0,0.0,0.0,0.0,200,-1,0.0,200.0,44,44.1585,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,15,,10,1250,0,Regular,Regular Gasoline,10,-1,44,44.4398,0,0.0,0.0,0.0,0.0,0,0,33507,0,11,Honda,Civic Hybrid,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),60.5262,0.0,66.4533,0.0,Compact Cars,2013,5750,,,,,Hybrid,,,144V Li-Ion,HNX +13.1844,0.0,0.0,0.0,22,21.7977,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.117,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,33508,0,0,Honda,Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.7,0.0,43.4,0.0,Small Sport Utility Vehicle 2WD,2013,1000,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,20,19.8102,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.3211,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,33,,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,33509,0,0,Honda,Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.0,0.0,41.8,0.0,Small Sport Utility Vehicle 2WD,2013,0,,,,,,,,,HNX +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3351,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1987,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.7919,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1301,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,643,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.1363,0,0.0,0.0,0.0,0.0,0,0,33510,13,0,BMW,640i xDrive Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.9753,0.0,40.8737,0.0,Subcompact Cars,2014,-1000,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.7919,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1301,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,645,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.1363,0,0.0,0.0,0.0,0.0,0,0,33511,11,0,BMW,640i xDrive Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.9753,0.0,40.8737,0.0,Subcompact Cars,2014,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6765,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5757,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,650,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8577,0,0.0,0.0,0.0,0.0,0,0,33512,13,0,BMW,650i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.818,0.0,34.6589,0.0,Subcompact Cars,2014,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6765,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5757,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,654,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8577,0,0.0,0.0,0.0,0.0,0,0,33513,11,0,BMW,650i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.818,0.0,34.6589,0.0,Subcompact Cars,2014,-3000,,,T,,,,,,BMX +21.974,6.806822,0.0,0.0,12,12.4737,9,8.8115,0.0,0.0,0.0,580,576,576.0,580.0,15,15.2827,11,10.8449,0.0,0.0,0.0,12,6.0,All-Wheel Drive,13,FFV,2,4000,4150,Premium or E85,Premium Gasoline,2,2,21,21.0866,15,15.1054,0.0,0.0,0.0,0,0,33514,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),15.4,10.5,28.3,20.8,Compact Cars,2014,-8000,G,,T,,FFV,E85,262,,BEX +14.327048,0.0,0.0,0.0,20,19.7919,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1301,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,644,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.1363,0,0.0,0.0,0.0,0.0,0,0,33515,0,12,BMW,640i xDrive Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),24.9753,0.0,40.8737,0.0,Compact Cars,2014,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6765,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5757,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,657,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8577,0,0.0,0.0,0.0,0.0,0,0,33516,0,12,BMW,650i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),20.818,0.0,34.6589,0.0,Compact Cars,2014,-3000,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.8065,0,0.0,0.0,0.0,0.0,378,-1,0.0,378.0,24,23.5766,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,1,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,33517,0,15,Acura,RLX,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.995,0.0,43.2,0.0,Midsize Cars,2014,-500,,,,,,,,,HNX +11.360558000000001,0.0,0.0,0.0,26,25.6743,0,0.0,0.0,0.0,0.0,304,-1,0.0,304.0,29,29.2991,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,10,,7,1900,0,Regular,Regular Gasoline,7,-1,35,35.4092,0,0.0,0.0,0.0,0.0,0,0,33518,0,14,Kia,Forte Eco,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.0761,0.0,50.1242,0.0,Midsize Cars,2014,2500,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,25,24.5109,0,0.0,0.0,0.0,0.0,311,-1,0.0,311.0,29,28.5682,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,11,,7,1900,0,Regular,Regular Gasoline,7,-1,36,35.8138,0,0.0,0.0,0.0,0.0,0,0,33519,0,14,Kia,Forte,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,31.4471,0.0,50.7267,0.0,Midsize Cars,2014,2500,,,,,,,,,KMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3352,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1987,-2500,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,25.264,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.471,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,12,,7,1900,0,Regular,Regular Gasoline,7,-1,37,37.0021,0,0.0,0.0,0.0,0.0,0,0,33520,0,14,Kia,Forte,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.5,0.0,52.5,0.0,Midsize Cars,2014,2500,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,22,22.1879,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.9057,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,150,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.5773,0,0.0,0.0,0.0,0.0,25,98,33521,0,0,BMW,X1 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2345,0.0,45.9274,0.0,Large Cars,2014,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.1879,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.9057,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,323,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.5773,0,0.0,0.0,0.0,0.0,0,0,33522,0,28,BMW,328i xDrive Sports Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2345,0.0,45.9274,0.0,Small Station Wagons,2014,500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,22.9455,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,3,,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2637,0,0.0,0.0,0.0,0.0,0,0,33523,0,0,Acura,RDX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.229,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,4,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,33524,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,37.7,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,23.9012,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,370,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.1265,0,0.0,0.0,0.0,0.0,0,0,33525,0,0,BMW,X3 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.0,0.0,39.4,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.8,0,0.0,0.0,0.0,0.0,523,-1,0.0,523.0,17,16.9,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,4,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,21,20.6,0,0.0,0.0,0.0,0.0,0,0,33526,0,0,Porsche,Cayenne GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.4,0.0,28.9,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,,,,,,,PRX +12.19557,0.0,0.0,0.0,23,22.9616,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.7206,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,7,2050,0,Regular,Regular Gasoline,7,-1,33,33.4044,0,0.0,0.0,0.0,0.0,13,97,33527,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.2986,0.0,47.1494,0.0,Midsize Cars,2013,1750,,,,,,,,,CRX +8.89947,0.0,0.0,0.0,36,35.7048,0,0.0,0.0,0.0,0.0,239,-1,0.0,239.0,37,37.3588,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,37,,9,1500,0,Regular,Regular Gasoline,9,-1,40,39.601,0,0.0,0.0,0.0,0.0,0,0,33528,0,12,Hyundai,Sonata Hybrid Limited,Y,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AM6),47.7,0.0,56.4,0.0,Midsize Cars,2013,4500,,,,,Hybrid,,,270V Li-Ion,HYX +8.657756000000001,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,237,-1,0.0,237.0,38,37.5313,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38,,9,1450,0,Regular,Regular Gasoline,9,-1,40,39.7338,0,0.0,0.0,0.0,0.0,0,0,33529,0,12,Hyundai,Sonata Hybrid,N,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AM6),48.0,0.0,56.6,0.0,Midsize Cars,2013,4750,,,,,Hybrid,,,270V Li-Ion,HYX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3353,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +8.89947,0.0,0.0,0.0,35,35.241,0,0.0,0.0,0.0,0.0,242,-1,0.0,242.0,37,36.7597,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,35,,9,1500,0,Regular,Regular Gasoline,9,-1,39,38.8034,0,0.0,0.0,0.0,0.0,0,0,33530,0,11,Kia,Optima Hybrid EX,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM6),47.0,0.0,55.2,0.0,Midsize Cars,2013,4500,,,,,Hybrid,,,270V Li-Ion,KMX +8.657756000000001,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,237,-1,0.0,237.0,38,37.5313,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,36,,9,1450,0,Regular,Regular Gasoline,9,-1,40,39.7338,0,0.0,0.0,0.0,0.0,0,0,33531,0,11,Kia,Optima Hybrid,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM6),48.0,0.0,56.6,0.0,Midsize Cars,2013,4750,,,,,Hybrid,,,270V Li-Ion,KMX +13.73375,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,363,-1,0.0,363.0,24,24.3373,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,681,,6,2300,0,Regular,Regular Gasoline,6,-1,25,25.2844,0,0.0,0.0,0.0,0.0,0,0,33532,0,0,Nissan,NV200 Cargo Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.2,0.0,38.9,0.0,"Vans, Cargo Type",2013,500,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.0,0,0.0,0.0,0.0,0.0,472,-1,0.0,472.0,19,18.8302,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,37,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,33533,0,0,Acura,ZDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.6,0.0,Small Sport Utility Vehicle 4WD,2013,-3750,,,,,,,,,HNX +21.974,0.0,0.0,0.0,12,12.1185,0,0.0,0.0,0.0,0.0,607,-1,0.0,607.0,15,14.5305,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,232,,3,4000,0,Premium,Premium Gasoline,3,-1,19,19.2012,0,0.0,0.0,0.0,0.0,0,0,33534,0,0,SRT,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.4,0.0,25.0,0.0,Two Seaters,2013,-8000,G,,,,,,,,CRX +12.657024,0.0,0.0,0.0,22,22.1741,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3533,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,429,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.2409,0,0.0,0.0,0.0,0.0,0,0,33535,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.2155,0.0,48.3887,0.0,Two Seaters,2014,500,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.5,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.8,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,201,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.6,0,0.0,0.0,0.0,0.0,0,0,33536,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.9,0.0,41.5,0.0,Two Seaters,2014,-500,,,,,,,,,PRX +12.657024,0.0,0.0,0.0,22,21.9,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,26,25.5,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,202,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,31.9,0,0.0,0.0,0.0,0.0,0,0,33537,0,0,Porsche,Boxster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),27.9,0.0,44.9,0.0,Two Seaters,2014,500,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,20,20.5,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.8,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,211,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.6,0,0.0,0.0,0.0,0.0,0,0,33538,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.9,0.0,41.5,0.0,Two Seaters,2014,-500,,,,,,,,,PRX +12.657024,0.0,0.0,0.0,22,21.9,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,26,25.5,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,212,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,31.9,0,0.0,0.0,0.0,0.0,0,0,33539,0,0,Porsche,Cayman,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),27.9,0.0,44.9,0.0,Two Seaters,2014,500,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3354,0,17,Audi,5000 S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1987,-3250,,,,,,,,, +21.974,6.806822,0.0,0.0,12,12.0228,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,11,FFV,2,4000,4150,Premium or E85,Premium Gasoline,2,2,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,33540,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Subcompact Cars,2014,-8000,G,,T,,FFV,E85,262,,BEX +21.974,6.806822,0.0,0.0,12,12.0228,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,12,FFV,2,4000,4150,Premium or E85,Premium Gasoline,2,2,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,33541,7,0,Bentley,Continental GT Speed Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Subcompact Cars,2014,-8000,G,,T,,FFV,E85,262,,BEX +19.381068,0.0,0.0,0.0,15,14.595,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.0933,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,660,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33542,13,0,BMW,M6 Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0898,0.0,30.0,0.0,Subcompact Cars,2014,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5971,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9901,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,661,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3723,0,0.0,0.0,0.0,0.0,0,0,33543,13,0,BMW,M6 Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7956,0.0,28.2246,0.0,Subcompact Cars,2014,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.595,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.0933,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,662,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33544,11,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0898,0.0,30.0,0.0,Subcompact Cars,2014,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5971,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9901,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,663,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3723,0,0.0,0.0,0.0,0.0,0,0,33545,11,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7956,0.0,28.2246,0.0,Subcompact Cars,2014,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.595,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.0933,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,664,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33546,0,12,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0898,0.0,30.0,0.0,Compact Cars,2014,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5971,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9901,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,665,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3723,0,0.0,0.0,0.0,0.0,0,0,33547,0,12,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7956,0.0,28.2246,0.0,Compact Cars,2014,-6750,G,,T,,,,,,BMX +21.974,6.806822,0.0,0.0,12,12.0228,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,10,FFV,2,4000,4150,Premium or E85,Premium Gasoline,2,2,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,33548,13,0,Bentley,Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Midsize Cars,2014,-8000,G,,T,,FFV,E85,262,,BEX +14.964294,0.0,0.0,0.0,20,19.5877,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.2818,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,77,SIDI; PZEV (SULEV) emissions,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.7844,0,0.0,0.0,0.0,0.0,0,0,33549,0,13,Mercedes-Benz,E350 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.7,0.0,37.9,0.0,Midsize Cars,2014,-1750,,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64019,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3355,0,17,Audi,5000 S quattro,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1987,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,20,20.4758,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.7506,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,78,SIDI; PZEV (SULEV) emissions,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.5212,0,0.0,0.0,0.0,0.0,0,0,33550,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.9,0.0,41.1,0.0,Midsize Cars,2014,-500,,,,,,,,,MBX +14.327048,4.160002,0.0,0.0,20,19.9584,15,15.4456,0.0,0.0,0.0,384,358,358.0,384.0,23,23.181,18,17.7431,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,80,SIDI; FFV,6,2600,2550,Premium or E85,Premium Gasoline,6,6,29,28.8805,22,21.6856,0.0,0.0,0.0,0,0,33551,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,19.2,40.5,30.1,Midsize Cars,2014,-1000,,,,,FFV,E85,380,,MBX +12.19557,0.0,0.0,0.0,23,22.9727,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.7794,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,152,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5804,0,0.0,0.0,0.0,0.0,25,98,33552,0,0,BMW,X1 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),29.314,0.0,47.41,0.0,Large Cars,2014,750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.7674,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3853,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,372,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.7807,0,0.0,0.0,0.0,0.0,0,0,33553,0,0,BMW,X3 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5983,0.0,35.9931,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.7361,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,671,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.9144,0,0.0,0.0,0.0,0.0,0,0,33554,0,0,BMW,X6 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.6,0.0,33.2988,0.0,Standard Sport Utility Vehicle 4WD,2014,-3000,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,14.3721,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.6866,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,672,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,33555,0,0,BMW,X6 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.8,0.0,28.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,T,,,,,,BMX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,606,-1,0.0,606.0,15,14.5858,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,673,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,17,17.1837,0,0.0,0.0,0.0,0.0,0,0,33556,0,0,BMW,X6 M,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0,0.0,23.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-8000,,,T,,,,,,BMX +4.827656776595744,2.85662,0.0,0.67,47,46.6172,124,124.0132,0.0,27.0,0.34,130,-1,0.0,130.0,46,46.134,115,114.7045,29.0,0.0,0.33,4,2.0,Front-Wheel Drive,2,PHEV,10,1200,0,Regular Gas and Electricity,Regular Gasoline,10,-1,46,45.5569,105,105.0654,0.0,32.0,0.31,0,0,33557,0,9,Honda,Accord Plug-in Hybrid,N,true,0,103,0,0.0,14.0,0.0,11.7,Automatic (variable gear ratios),64.8901,177.1617,65.4497,150.0935,Midsize Cars,2014,7250,,,,,Plug-in Hybrid,Electricity,13,124 kW,HNX +0.17400000000000002,0.0,0.0,7.25,129,128.9217,0,0.0,0.0,26.0,0.0,0,-1,0.0,0.0,115,115.4934,0,0.0,29.0,0.0,0.0,,,Front-Wheel Drive,901,,10,500,0,Electricity,Electricity,10,-1,102,102.451,0,0.0,0.0,33.0,0.0,24,92,33558,0,0,Nissan,Leaf,N,false,0,0,75,82.0,0.0,65.6,0.0,Automatic (A1),184.1738,0.0,146.3586,0.0,Midsize Cars,2013,9500,,,,,EV,,,80 kW DCPM,NSX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.3396,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,152,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,33559,8,0,Jaguar,F-Type V8 S Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.2,0.0,Two Seaters,2014,-4750,,,,S,,,,,JLX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3356,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,395,-1,0.0,395.0,23,22.6,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,221,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,33560,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,38.5,0.0,Two Seaters,2014,-1000,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,24.1,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,222,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8,0,0.0,0.0,0.0,0.0,0,0,33561,0,0,Porsche,Boxster S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),26.3,0.0,41.9,0.0,Two Seaters,2014,-500,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,19.7,0,0.0,0.0,0.0,0.0,395,-1,0.0,395.0,23,22.6,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,231,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,33562,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8,0.0,38.5,0.0,Two Seaters,2014,-1000,,,,,,,,,PRX +13.73375,0.0,0.0,0.0,21,20.8,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,24.1,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,232,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.8,0,0.0,0.0,0.0,0.0,0,0,33563,0,0,Porsche,Cayman S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),26.3,0.0,41.9,0.0,Two Seaters,2014,-500,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.0212,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,102,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.2443,0,0.0,0.0,0.0,0.0,0,0,33564,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,30.9,0.0,Minicompact Cars,2014,-4750,,,,,,,,,JLX +18.304342000000002,0.0,0.0,0.0,15,15.1397,0,0.0,0.0,0.0,0.0,508,-1,0.0,508.0,18,17.5194,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,103,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,33565,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8,0.0,30.1,0.0,Minicompact Cars,2014,-4750,,,,S,,,,,JLX +11.75609,0.0,0.0,0.0,24,23.6858,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.7528,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,7,,7,2150,0,Premium,Premium Gasoline,7,-1,35,35.124,0,0.0,0.0,0.0,0.0,0,0,33566,0,12,Acura,ILX,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic (S5),30.3,0.0,49.7,0.0,Compact Cars,2014,1250,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,21.8,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,25.3358,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,8,,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.6,0,0.0,0.0,0.0,0.0,0,0,33567,0,12,Acura,ILX,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.7,0.0,42.9,0.0,Compact Cars,2014,0,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.7948,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.9893,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,319,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,26.8891,0,0.0,0.0,0.0,0.0,0,0,33568,0,11,Mercedes-Benz,CLS550,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.7,0.0,35.3,0.0,Compact Cars,2014,-3000,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.3107,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,320,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,33569,0,11,Mercedes-Benz,CLS550 4matic,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.9,0.0,33.1,0.0,Compact Cars,2014,-3750,,,T,,,,,,MBX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3357,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1987,-1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,24.561,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.0979,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,111,,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.0997,0,0.0,0.0,0.0,0.0,0,0,33570,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.517,0.0,48.1793,0.0,Compact Cars,2014,2250,,,,,,,,,MTX +11.360558000000001,0.0,0.0,0.0,26,25.5956,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.7995,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,112,,7,1900,0,Regular,Regular Gasoline,7,-1,34,34.0015,0,0.0,0.0,0.0,0.0,0,0,33571,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.9655,0.0,48.0338,0.0,Compact Cars,2014,2500,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,22,22.4717,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6389,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,113,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.9745,0,0.0,0.0,0.0,0.0,0,0,33572,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.6242,0.0,43.5672,0.0,Compact Cars,2014,1500,,,,,,,,,MTX +12.657024,0.0,0.0,0.0,23,22.9698,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.7316,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,114,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.1645,0,0.0,0.0,0.0,0.0,0,0,33573,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),29.31,0.0,42.3785,0.0,Compact Cars,2014,1500,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,17.5397,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.2547,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,115,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.9809,0,0.0,0.0,0.0,0.0,0,0,33574,0,12,Mitsubishi,Lancer,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),21.9609,0.0,34.8367,0.0,Compact Cars,2014,-3000,,,T,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3028,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7407,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,116,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5558,0,0.0,0.0,0.0,0.0,0,0,33575,0,12,Mitsubishi,Lancer AWD,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3921,0.0,40.026,0.0,Compact Cars,2014,1000,,,,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.8053,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,19.0922,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,131,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.9013,0,0.0,0.0,0.0,0.0,0,0,33576,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.9881,0.0,31.8423,0.0,Compact Cars,2014,-3750,,,T,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,16.5949,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7802,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,132,,4,3150,0,Premium,Premium Gasoline,4,-1,22,22.3827,0,0.0,0.0,0.0,0.0,0,0,33577,0,7,Mitsubishi,Lancer Evolution,N,false,0,93,0,0.0,0.0,0.0,0.0,Auto(AM6),20.7103,0.0,31.0983,0.0,Compact Cars,2014,-3750,,,T,,,,,,MTX +11.567466000000001,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,33,33.1029,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,393,,8,1800,0,Diesel,Diesel,7,-1,46,46.1108,0,0.0,0.0,0.0,0.0,0,0,33578,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),34.8,0.0,66.2994,0.0,Midsize Cars,2014,3000,,,T,,Diesel,,,,GMX +14.327048,4.160002,0.0,0.0,20,20.4798,16,15.522,0.0,0.0,0.0,382,361,361.0,382.0,23,23.1812,18,17.5598,0.0,0.0,0.0,6,3.5,4-Wheel Drive,81,SIDI; FFV,6,2600,2550,Premium or E85,Premium Gasoline,6,6,28,27.6458,21,20.9159,0.0,0.0,0.0,0,0,33579,0,13,Mercedes-Benz,E350 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.9,19.3,38.7,29.0,Midsize Cars,2014,-1000,,,,,FFV,E85,380,,MBX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3358,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.181,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,301,SIDI; ULEV Emissions,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.8805,0,0.0,0.0,0.0,0.0,0,0,33580,0,13,Mercedes-Benz,E350,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,0.0,40.5,0.0,Midsize Cars,2014,-1000,,,,,,,,,MBX +9.404872000000001,0.0,0.0,0.0,31,32.3854,0,0.0,0.0,0.0,0.0,249,-1,0.0,249.0,35,35.667,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,9,1550,0,Regular,Regular Gasoline,9,-1,40,40.7088,0,0.0,0.0,0.0,0.0,19,94,33581,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),42.7422,0.0,58.0714,0.0,Compact Cars,2014,4250,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,27.5158,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,30,30.8012,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,8,1850,0,Regular,Regular Gasoline,8,-1,36,36.0643,0,0.0,0.0,0.0,0.0,19,94,33582,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.6822,0.0,51.1,0.0,Compact Cars,2014,2750,,,,,,,,,NSX +10.987,0.0,0.0,0.0,26,26.8246,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.4473,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,103,,8,1850,0,Regular,Regular Gasoline,8,-1,35,36.4665,0,0.0,0.0,0.0,0.0,19,94,33583,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.7,0.0,51.7,0.0,Compact Cars,2014,2750,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,21,20.8442,0,0.0,0.0,0.0,0.0,364,-1,0.0,364.0,25,24.5045,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,295,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.201,0,0.0,0.0,0.0,0.0,0,0,33584,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4,0.0,43.9,0.0,Large Cars,2014,1000,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,502,-1,0.0,502.0,18,17.7166,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,33585,0,16,Hyundai,Equus,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5,0.0,32.0,0.0,Large Cars,2014,-4750,,,,,,,,,HYX +12.19557,0.0,0.0,0.0,24,24.4211,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,27,27.4415,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,122,,7,2050,0,Regular,Regular Gasoline,7,-1,32,32.3283,0,0.0,0.0,0.0,0.0,0,0,33586,0,14,Mitsubishi,Lancer Sportback,N,false,0,95,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.322,0.0,45.56,0.0,Small Station Wagons,2014,1750,,,,,,,,,MTX +13.1844,0.0,0.0,0.0,22,22.3028,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7407,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,124,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5558,0,0.0,0.0,0.0,0.0,0,0,33587,0,14,Mitsubishi,Lancer Sportback,N,false,0,95,0,0.0,0.0,0.0,0.0,Auto(AV-S6),28.3921,0.0,40.026,0.0,Small Station Wagons,2014,1000,,,,,,,,,MTX +14.327048,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.2152,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,329,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,33588,0,0,Lincoln,MKT Livery FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.8,0.0,39.1,0.0,Special Purpose Vehicle 2WD,2014,0,,,T,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2485,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,336,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,33589,0,0,Lincoln,MKT Livery AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.9,0.0,32.8,0.0,Special Purpose Vehicle 4WD,2014,-2500,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3359,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.8102,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,22.9516,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,5,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.4694,0,0.0,0.0,0.0,0.0,0,0,33590,0,0,Acura,MDX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.0,0.0,39.9,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,HNX +12.19557,0.0,0.0,0.0,25,24.6531,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,26.9814,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,211,,7,2050,0,Regular,Regular Gasoline,7,-1,31,30.5022,0,0.0,0.0,0.0,0.0,0,0,33591,0,10,Mitsubishi,Outlander 2WD,N,false,0,128,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.6455,0.0,42.8737,0.0,Small Sport Utility Vehicle 2WD,2014,1750,,,,,,,,,MTX +15.689436,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,416,-1,0.0,416.0,21,21.4628,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,6,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,33592,0,0,Acura,MDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.7,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,15.9096,0,0.0,0.0,0.0,0.0,484,-1,0.0,484.0,18,18.3556,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,328,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.6028,0,0.0,0.0,0.0,0.0,0,0,33593,0,0,Lincoln,MKT AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8083,0.0,31.414,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,24,23.7167,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,25.8927,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,212,,7,2100,0,Regular,Regular Gasoline,7,-1,29,29.163,0,0.0,0.0,0.0,0.0,0,0,33594,0,10,Mitsubishi,Outlander 4WD,N,false,0,128,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.3429,0.0,40.9126,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,,,,,MTX +14.327048,0.0,0.0,0.0,20,20.3666,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,23,23.1266,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,214,,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.7174,0,0.0,0.0,0.0,0.0,0,0,33595,0,10,Mitsubishi,Outlander 4WD,N,false,0,128,0,0.0,0.0,0.0,0.0,Automatic (S6),25.752,0.0,38.8042,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,MTX +16.4805,0.0,0.0,0.0,18,17.7131,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.3475,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,407,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.8679,0,0.0,0.0,0.0,0.0,0,0,33596,0,0,Ford,Flex FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1914,0.0,34.6736,0.0,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.2676,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.9246,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,337,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.5397,0,0.0,0.0,0.0,0.0,0,0,33597,0,0,Lincoln,MKT FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6,0.0,34.2,0.0,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.9096,0,0.0,0.0,0.0,0.0,484,-1,0.0,484.0,18,18.3556,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,327,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.6028,0,0.0,0.0,0.0,0.0,0,0,33598,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8083,0.0,31.414,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,T,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.4129,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,398,,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.22,0,0.0,0.0,0.0,0.0,0,0,33599,0,0,Ford,Flex AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,32.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,FMX +20.102931,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20040,"(CALIF) (DSL,TRBO)",-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,336,0,13,Mercedes-Benz,300D/300CD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,28.0,0.0,Compact Cars,1985,-3500,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3360,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,466,-1,0.0,466.0,19,19.0885,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,24,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.22,0,0.0,0.0,0.0,0.0,0,0,33600,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8,0.0,32.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,471,-1,0.0,471.0,19,18.9702,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,42,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,33602,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.7,0.0,32.0,0.0,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,15.8721,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.5914,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,101,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,33603,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,32.9,0.0,Minicompact Cars,2014,-3750,,,,,,,,,JLX +19.381068,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,515,-1,0.0,515.0,17,17.292,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,104,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,33604,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,30.1,0.0,Minicompact Cars,2014,-5750,,,,S,,,,,JLX +10.613442000000001,0.0,0.0,0.0,27,27.3879,0,0.0,0.0,0.0,0.0,284,-1,0.0,284.0,31,31.2437,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,209,,8,1800,0,Regular,Regular Gasoline,8,-1,38,37.7371,0,0.0,0.0,0.0,0.0,15,85,33605,0,12,Ford,Fiesta FWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.5,0.0,53.6,0.0,Subcompact Cars,2014,3000,,,,,,,,,FMX +10.283832,0.0,0.0,0.0,29,28.541,0,0.0,0.0,0.0,0.0,274,-1,0.0,274.0,32,32.4196,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,211,,8,1700,0,Regular,Regular Gasoline,8,-1,39,38.8767,0,0.0,0.0,0.0,0.0,15,85,33606,0,12,Ford,Fiesta FWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),37.148,0.0,55.3102,0.0,Subcompact Cars,2014,3500,,,,,,,,,FMX +8.657756000000001,0.0,0.0,0.0,39,38.6788,0,0.0,0.0,0.0,0.0,228,-1,0.0,228.0,38,38.3643,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,9,,9,1600,0,Premium,Premium Gasoline,9,-1,38,37.9868,0,0.0,0.0,0.0,0.0,0,0,33607,0,12,Acura,ILX Hybrid,N,false,0,89,0,0.0,0.0,0.0,0.0,Auto(AV-S7),52.2461,0.0,58.4448,0.0,Compact Cars,2014,4000,,,,,Hybrid,,,144V Li-Ion,HNX +15.689436,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,435,-1,0.0,435.0,21,20.5817,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,307,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,33608,0,13,Mercedes-Benz,E550 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.9,0.0,34.0,0.0,Midsize Cars,2014,-2250,,,T,,,,,,MBX +12.19557,0.0,0.0,0.0,24,24.1042,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.214,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,8,,7,2050,0,Regular,Regular Gasoline,7,-1,32,32.3085,0,0.0,0.0,0.0,0.0,0,0,33609,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.8809,0.0,45.5308,0.0,Midsize Cars,2014,1750,,,,,,,,,FJX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4410,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3361,16,0,Buick,Regal,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1987,-4750,,,T,,,,,, +16.612308000000002,0.0,0.0,0.0,20,19.1,0,0.0,0.0,0.0,0.0,449,-1,0.0,449.0,23,22.6,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,5,,6,2600,0,Diesel,Diesel,5,-1,29,29.2,0,0.0,0.0,0.0,0.0,0,0,33610,0,0,Porsche,Cayenne Diesel,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,41.0,0.0,Standard Sport Utility Vehicle 4WD,2014,-1000,,,T,,Diesel,,,,PRX +16.612308000000002,0.0,0.0,0.0,20,19.649,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,23,22.9829,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,6,2600,0,Diesel,Diesel,5,-1,29,28.9961,0,0.0,0.0,0.0,0.0,0,0,33611,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,41.0,0.0,Standard Sport Utility Vehicle 4WD,2014,-1000,,,T,,Diesel,,,,VWX +0.21600000000000003,0.0,0.0,6.0,93,93.4,0,0.0,0.0,36.0,0.0,0,-1,0.0,0.0,94,94.3,0,0.0,36.0,0.0,0.0,,,Rear-Wheel Drive,3,,10,650,0,Electricity,Electricity,10,-1,96,95.5,0,0.0,0.0,35.0,0.0,26,94,33612,0,0,Tesla,Model S (40 kW-hr battery pack),N,false,0,0,139,138.5,0.0,140.7,0.0,Automatic (A1),117.3,0.0,120.0,0.0,Large Cars,2013,8750,,,,,EV,,,225 kW AC Induction,TSL +12.657024,0.0,0.0,0.0,22,22.338,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.5769,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,39,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.0856,0,0.0,0.0,0.0,0.0,0,0,33613,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.3321,0.0,42.1097,0.0,Two Seaters,2014,500,,,T,,,,,,ADX +32.961,0.0,0.0,0.0,8,8.4232,0,0.0,0.0,0.0,0.0,847,-1,0.0,847.0,10,10.4424,0,0.0,0.0,0.0,0.0,16,8.0,All-Wheel Drive,27,,1,6050,0,Premium,Premium Gasoline,1,-1,15,14.7698,0,0.0,0.0,0.0,0.0,0,0,33614,0,0,Bugatti,Veyron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (AM-S7),10.0,0.0,17.9,0.0,Two Seaters,2014,-18250,G,,T,,,,,,BGT +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.843,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,154,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,33615,8,0,Jaguar,F-Type Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,39.1,0.0,Two Seaters,2014,-1000,,,,S,,,,,JLX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.1841,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,156,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,33616,8,0,Jaguar,F-Type S Convertible,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.3,0.0,38.0,0.0,Two Seaters,2014,-1750,,,,S,,,,,JLX +27.4675,0.0,0.0,0.0,10,9.7957,0,0.0,0.0,0.0,0.0,742,-1,0.0,742.0,12,11.9264,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,93,,1,5050,0,Premium,Premium Gasoline,1,-1,16,16.2453,0,0.0,0.0,0.0,0.0,0,0,33617,0,0,Lamborghini,Aventador Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),11.5,0.0,21.2,0.0,Two Seaters,2014,-13250,G,,,,,,,,NLX +25.336022,0.0,0.0,0.0,11,10.6353,0,0.0,0.0,0.0,0.0,692,-1,0.0,692.0,13,12.7836,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,94,,1,4650,0,Premium,Premium Gasoline,1,-1,17,16.9743,0,0.0,0.0,0.0,0.0,0,0,33618,0,0,Lamborghini,Aventador Veneno Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),12.5,0.0,22.7,0.0,Two Seaters,2014,-11250,G,,,,,,,,NLX +16.4805,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.1365,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,222,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.5149,0,0.0,0.0,0.0,0.0,0,0,33619,0,0,Mercedes-Benz,SL550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0,0.0,34.1642,0.0,Two Seaters,2014,-3000,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3362,16,0,Buick,Regal,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.9541,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9679,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,226,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.662,0,0.0,0.0,0.0,0.0,0,0,33620,0,0,Mercedes-Benz,SL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.8,0.0,32.2,0.0,Two Seaters,2014,-3750,,,T,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.0172,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.1649,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,238,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.786,0,0.0,0.0,0.0,0.0,0,0,33621,0,0,Mercedes-Benz,SLK55 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.9,0.0,38.1,0.0,Two Seaters,2014,-1750,,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,18.8,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.9,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,101,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,33622,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.7,0.0,38.2,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,102,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,33623,5,0,Porsche,911 Carrera,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2014,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,103,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.2,0,0.0,0.0,0.0,0.0,0,0,33624,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.9,0.0,38.0,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.2,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.2,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,104,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2,0,0.0,0.0,0.0,0.0,0,0,33625,5,0,Porsche,911 Carrera Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.5,0.0,39.5,0.0,Minicompact Cars,2014,-1000,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.7,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,105,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,33626,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.5,0.0,38.2,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.4,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.3,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,106,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,33627,5,0,Porsche,911 Carrera S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.5,0.0,37.9,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,107,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.6,0,0.0,0.0,0.0,0.0,0,0,33628,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.4,0.0,37.2,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,21.9,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,108,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,33629,5,0,Porsche,911 Carrera S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.8,0.0,37.9,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3363,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,22.0,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,109,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3,0,0.0,0.0,0.0,0.0,0,0,33630,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.9,0.0,38.2,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +14.327048,0.0,0.0,0.0,20,20.0,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.9,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,110,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.7,0,0.0,0.0,0.0,0.0,0,0,33631,5,0,Porsche,911 Carrera 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),25.2,0.0,38.8,0.0,Minicompact Cars,2014,-1000,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,19,18.6,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.4,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,111,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3,0,0.0,0.0,0.0,0.0,0,0,33632,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.4,0.0,36.7,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,20,19.6,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.4,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,112,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,33633,5,0,Porsche,911 Carrera 4 Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.7,0.0,37.7,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.3,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,113,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3,0,0.0,0.0,0.0,0.0,0,0,33634,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.1,0.0,36.8,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.1,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.8,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,114,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.3,0,0.0,0.0,0.0,0.0,0,0,33635,5,0,Porsche,911 Carrera 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.1,0.0,36.7,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,21.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,115,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.9,0,0.0,0.0,0.0,0.0,0,0,33636,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,22.8,0.0,36.1,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +8.89947,0.0,0.0,0.0,36,35.9924,0,0.0,0.0,0.0,0.0,238,-1,0.0,238.0,37,36.6122,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,14,,9,1500,0,Regular,Regular Gasoline,9,-1,37,37.3994,0,0.0,0.0,0.0,0.0,4,74,33637,0,0,Scion,iQ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),48.0,0.0,58.7,0.0,Minicompact Cars,2014,4500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.7409,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,18,18.4339,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,28,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.3075,0,0.0,0.0,0.0,0.0,0,0,33638,13,0,Audi,RS 5,N,false,84,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.1,0.0,30.0,0.0,Subcompact Cars,2014,-4750,,,,,,,,,ADX +12.657024,0.0,0.0,0.0,22,22.338,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.5769,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,38,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.0856,0,0.0,0.0,0.0,0.0,0,0,33639,13,0,Audi,TT Coupe quattro,N,false,74,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.3321,0.0,42.1097,0.0,Subcompact Cars,2014,500,,,T,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3364,14,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +0.168,0.0,0.0,7.0,128,128.2,0,0.0,0.0,26.0,0.0,0,-1,0.0,0.0,119,118.9,0,0.0,28.0,0.0,0.0,,,Front-Wheel Drive,110,,10,500,0,Electricity,Electricity,10,-1,109,109.2,0,0.0,0.0,31.0,0.0,0,0,33640,0,11,Chevrolet,Spark EV,N,false,0,86,82,87.8,0.0,74.8,0.0,Automatic (A1),183.2,0.0,156.0,0.0,Subcompact Cars,2014,9500,,,,,EV,,,104 kW AC Induction,GMX +13.73375,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.0905,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,441,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,33641,0,14,Buick,Verano,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,43.8,0.0,Compact Cars,2014,500,,,T,,,,,,GMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.045,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,188,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,32.5588,0,0.0,0.0,0.0,0.0,0,0,33642,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,45.9,0.0,Compact Cars,2014,1500,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,21,20.7706,0,0.0,0.0,0.0,0.0,364,-1,0.0,364.0,24,24.3918,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,429,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,30.9969,0,0.0,0.0,0.0,0.0,0,0,33643,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.3,0.0,43.6,0.0,Compact Cars,2014,500,,,T,,,,,,GMX +14.964294,0.0,0.0,0.0,19,19.184,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,22.2227,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,45, PFI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.5579,0,0.0,0.0,0.0,0.0,0,0,33644,0,11,Lexus,IS 350,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),24.3,0.0,38.0,0.0,Compact Cars,2014,-1750,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,18.5985,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.3907,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,46, PFI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1977,0,0.0,0.0,0.0,0.0,0,0,33645,0,11,Lexus,IS 350 AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5485,0.0,36.0683,0.0,Compact Cars,2014,-2250,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.1383,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,24,24.4319,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,79,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.1792,0,0.0,0.0,0.0,0.0,0,0,33646,0,11,Lexus,IS 250,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),26.8,0.0,42.4,0.0,Compact Cars,2014,-500,,,,,,,,,TYX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.6639,0,0.0,0.0,0.0,0.0,6,2.5,All-Wheel Drive,80,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,33647,0,11,Lexus,IS 250 AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,38.0,0.0,Compact Cars,2014,-1000,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,20,20.3933,0,0.0,0.0,0.0,0.0,378,-1,0.0,378.0,24,23.5061,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,83,SIDI; PZEV (SULEV) emissions,6,2500,0,Premium,Premium Gasoline,6,-1,29,28.8973,0,0.0,0.0,0.0,0.0,0,0,33648,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.7882,0.0,40.4148,0.0,Compact Cars,2014,-500,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.5134,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.8328,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,85,SIDI; PZEV (SULEV) emissions,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.826,0,0.0,0.0,0.0,0.0,0,0,33649,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.6,0.0,39.0,0.0,Compact Cars,2014,-1000,,,,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3365,14,0,Cadillac,Eldorado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +14.327048,4.404708,0.0,0.0,20,19.9584,15,14.7564,0.0,0.0,0.0,382,361,361.0,382.0,23,23.1212,17,17.1544,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,87,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,29,28.6751,21,21.4059,0.0,0.0,0.0,0,0,33650,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,18.3,40.2,29.7,Compact Cars,2014,-1000,,,,,FFV,E85,300,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.7627,0,0.0,0.0,0.0,0.0,498,-1,0.0,498.0,18,17.777,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,213,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.6888,0,0.0,0.0,0.0,0.0,0,0,33651,14,0,Mercedes-Benz,CL550 4matic,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.9,0.0,31.6,0.0,Compact Cars,2014,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,14.8966,0,0.0,0.0,0.0,0.0,506,-1,0.0,506.0,18,17.528,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,215,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.3541,0,0.0,0.0,0.0,0.0,0,0,33652,14,0,Mercedes-Benz,CL63 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.0,0.0,29.6,0.0,Compact Cars,2014,-4750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9445,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,19,18.9658,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,321,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6822,0,0.0,0.0,0.0,0.0,0,0,33653,0,11,Mercedes-Benz,CLS63 AMG,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2,0.0,32.0,0.0,Compact Cars,2014,-3750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9445,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,19,18.9658,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,328,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6822,0,0.0,0.0,0.0,0.0,0,0,33654,0,11,Mercedes-Benz,CLS63 AMG S,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2,0.0,32.0,0.0,Compact Cars,2014,-3750,,,T,,,,,,MBX +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,25.995,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.9982,0,0.0,0.0,0.0,0.0,15,90,33655,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.3,0.0,43.602,0.0,Compact Cars,2014,1500,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,23,23.0987,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,25.9994,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,26,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.7135,0,0.0,0.0,0.0,0.0,15,90,33656,0,0,Scion,tC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.4878,0.0,43.1838,0.0,Compact Cars,2014,1500,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,17,16.9415,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.8774,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,31,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.219,0,0.0,0.0,0.0,0.0,0,0,33657,13,0,Volkswagen,CC 4motion,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.5,0.0,33.5,0.0,Compact Cars,2014,-3000,,,,,,,,,VWX +15.689436,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.5531,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1,0,0.0,0.0,0.0,0.0,0,0,33658,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,34.6,0.0,Compact Cars,2014,-1000,,,T,,,,,,VVX +13.73375,0.0,0.0,0.0,21,20.7,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.1705,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,74,,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.4,0,0.0,0.0,0.0,0.0,0,0,33659,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),26.5,0.0,42.4,0.0,Compact Cars,2014,500,,,T,,,,,,VVX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3366,0,14,Cadillac,Seville,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,20.1,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2915,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,75,,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.9,0,0.0,0.0,0.0,0.0,0,0,33660,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),25.5,0.0,39.7,0.0,Compact Cars,2014,0,,,T,,,,,,VVX +19.381068,0.0,0.0,0.0,15,14.595,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.0933,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,560,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33661,0,14,BMW,M5,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0898,0.0,30.0,0.0,Midsize Cars,2014,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5971,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9901,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,561,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3723,0,0.0,0.0,0.0,0.0,0,0,33662,0,14,BMW,M5,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7956,0.0,28.2246,0.0,Midsize Cars,2014,-6750,G,,T,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.5852,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,308,,8,1800,0,Regular,Regular Gasoline,8,-1,39,38.6703,0,0.0,0.0,0.0,0.0,0,0,33663,0,16,Chevrolet,Cruze Eco,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,33.7,0.0,55.0,0.0,Midsize Cars,2014,3000,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,26,25.8335,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.0687,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,316,,8,1850,0,Regular,Regular Gasoline,8,-1,38,37.6036,0,0.0,0.0,0.0,0.0,0,0,33664,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,53.4,0.0,Midsize Cars,2014,2750,,,T,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,28.9932,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,405,,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.2655,0,0.0,0.0,0.0,0.0,0,0,33665,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,51.4,0.0,Midsize Cars,2014,2500,,,,,,,,,GMX +12.19557,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.642,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,406,,7,2050,0,Regular,Regular Gasoline,7,-1,35,34.7202,0,0.0,0.0,0.0,0.0,0,0,33666,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,49.1,0.0,Midsize Cars,2014,1750,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,20.4798,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1812,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,306,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,33668,0,13,Mercedes-Benz,E350 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.9,0.0,38.7,0.0,Midsize Cars,2014,-1000,,,,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.6903,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6281,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,322,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.1561,0,0.0,0.0,0.0,0.0,0,0,33669,0,13,Mercedes-Benz,E63 AMG,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2,0.0,31.5,0.0,Midsize Cars,2014,-3750,,,T,,,,,,MBX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3367,16,16,Chevrolet,Celebrity,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.6903,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6281,0,0.0,0.0,0.0,0.0,8,5.5,Rear-Wheel Drive,327,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.1561,0,0.0,0.0,0.0,0.0,0,0,33670,0,13,Mercedes-Benz,E63 AMG S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2,0.0,31.5,0.0,Midsize Cars,2014,-3750,,,T,,,,,,MBX +13.73375,0.0,0.0,0.0,21,21.1383,0,0.0,0.0,0.0,0.0,366,-1,0.0,366.0,24,24.0595,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,7,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.949,0,0.0,0.0,0.0,0.0,0,0,33671,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.8,0.0,40.6,0.0,Midsize Cars,2014,500,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,18,17.6698,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.2865,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,13,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.7697,0,0.0,0.0,0.0,0.0,0,0,33672,0,15,Subaru,Legacy AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S5),22.1338,0.0,34.5319,0.0,Midsize Cars,2014,-1750,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,20,19.7174,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.6868,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,30,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.8048,0,0.0,0.0,0.0,0.0,0,0,33673,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S6),23.9,0.0,37.3,0.0,Midsize Cars,2014,-1000,,,,,,,,,VWX +14.327048,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,23,22.9598,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,11,,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.8805,0,0.0,0.0,0.0,0.0,0,0,33674,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8,0.0,40.5,0.0,Midsize Cars,2014,0,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.5531,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1,0,0.0,0.0,0.0,0.0,0,0,33675,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,34.6,0.0,Midsize Cars,2014,-1000,,,T,,,,,,VVX +16.4805,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.8768,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,171,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,33676,0,18,Cadillac,XTS AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),20.9,0.0,36.0,0.0,Large Cars,2014,-1750,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,20.0911,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,325,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,33677,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Large Cars,2014,-1750,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,26.1802,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,340,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.0,0,0.0,0.0,0.0,0.0,0,0,33678,0,20,Ford,Taurus FWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,46.6,0.0,Large Cars,2014,1500,,,T,,,,,,FMX +14.327048,4.679378,0.0,0.0,19,19.3222,13,13.4992,0.0,0.0,0.0,392,393,393.0,392.0,23,22.6538,16,16.0282,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,385,FFV,6,2400,2850,Gasoline or E85,Regular Gasoline,6,6,29,28.7026,21,20.7882,0.0,0.0,0.0,0,0,33679,0,20,Ford,Taurus FWD FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3428,17.0067,40.2402,29.1445,Large Cars,2014,0,,,,,FFV,E85,304,,FMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3368,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1987,-1750,,,,,,,,, +15.689436,4.994,0.0,0.0,18,18.0952,13,12.5152,0.0,0.0,0.0,425,428,428.0,425.0,21,20.9001,15,14.702,0.0,0.0,0.0,6,3.5,All-Wheel Drive,386,FFV,5,2600,3050,Gasoline or E85,Regular Gasoline,5,5,26,25.7855,19,18.6945,0.0,0.0,0.0,0,0,33680,0,20,Ford,Taurus AWD FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,15.7,36.0,26.1,Large Cars,2014,-1000,,,,,FFV,E85,285,,FMX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.9001,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,389,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,33681,0,20,Ford,Taurus AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,36.0,0.0,Large Cars,2014,-1000,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,19,19.3222,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.6538,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,390,,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.7026,0,0.0,0.0,0.0,0.0,0,0,33682,0,20,Ford,Taurus FWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3428,0.0,40.2402,0.0,Large Cars,2014,0,,,,,,,,,FMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,20.0911,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,326,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,33683,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,35.6,0.0,Large Cars,2014,-1750,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.0201,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9457,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,395,,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,33684,0,18,Lincoln,MKS AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6,0.0,36.5,0.0,Large Cars,2014,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,19.0256,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.255,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,396,,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0804,0,0.0,0.0,0.0,0.0,0,0,33685,0,18,Lincoln,MKS FWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9444,0.0,39.3329,0.0,Large Cars,2014,-500,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,394,-1,0.0,394.0,22,22.4891,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,316,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.6135,0,0.0,0.0,0.0,0.0,0,0,33686,0,36,Mercedes-Benz,E350 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,0.0,37.2,0.0,Midsize Station Wagons,2014,-1750,,,,,,,,,MBX +17.337486000000002,5.348574,0.0,0.0,16,16.1848,12,11.9225,0.0,0.0,0.0,477,456,456.0,477.0,19,18.6466,14,13.7946,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,520,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,22.9049,17,17.0708,0.0,0.0,0.0,0,0,33687,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1701,14.8583,31.8475,23.7356,Standard Pickup Trucks 2WD,2014,-2500,,,,,FFV,E85,360/480,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.184,12,11.9218,0.0,0.0,0.0,477,456,456.0,477.0,19,18.6459,14,13.794,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,525,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,22.9044,17,17.0704,0.0,0.0,0.0,0,0,33688,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.169,14.8573,31.8467,23.735,Standard Pickup Trucks 2WD,2014,-2500,,,,,FFV,E85,360/480,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.8156,12,11.6345,0.0,0.0,0.0,490,470,470.0,490.0,18,18.1174,13,13.3902,0.0,0.0,0.0,8,5.3,4-Wheel Drive,532,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.0376,16,16.4185,0.0,0.0,0.0,0,0,33689,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6849,14.4809,30.6039,22.8005,Standard Pickup Trucks 4WD,2014,-3250,,,,,FFV,E85,340/440,,GMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3369,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,16,15.816,12,11.6349,0.0,0.0,0.0,490,470,470.0,490.0,18,18.1178,13,13.3906,0.0,0.0,0.0,8,5.3,4-Wheel Drive,535,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.0379,16,16.4187,0.0,0.0,0.0,0,0,33690,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6854,14.4814,30.6043,22.8009,Standard Pickup Trucks 4WD,2014,-3250,,,,,FFV,E85,340/440,,GMX +20.589638,0.0,0.0,0.0,14,13.7548,0,0.0,0.0,0.0,0.0,571,-1,0.0,571.0,16,15.5575,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,544,,3,3450,0,Regular,Regular Gasoline,3,-1,19,18.5249,0,0.0,0.0,0.0,0.0,0,0,33691,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9996,0.0,25.5982,0.0,"Vans, Cargo Type",2014,-5250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,603,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,3,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,33692,0,0,Chevrolet,Express 1500 2WD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2014,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,622,580,580.0,622.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,604,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,33693,0,0,Chevrolet,Express 1500 2WD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,608,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,33694,0,0,Chevrolet,Express 1500 AWD Conversion Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,310,,GMX +23.534154,6.806822,0.0,0.0,13,12.8248,10,9.8215,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2926,11,10.8631,0.0,0.0,0.0,8,5.3,All-Wheel Drive,610,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.617,12,12.4809,0.0,0.0,0.0,0,0,33695,0,0,Chevrolet,Express 1500 AWD Cargo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,12.1,22.9,17.2,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,340,,GMX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,747,719,719.0,747.0,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,643,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,33696,0,0,Chevrolet,Express 2500 2WD Conversion Cargo MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2014,-11000,,,,,FFV,E85,280,,GMX +20.589638,0.0,0.0,0.0,14,13.7548,0,0.0,0.0,0.0,0.0,571,-1,0.0,571.0,16,15.5575,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,545,,3,3450,0,Regular,Regular Gasoline,3,-1,19,18.5249,0,0.0,0.0,0.0,0.0,0,0,33697,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.9996,0.0,25.5982,0.0,"Vans, Cargo Type",2014,-5250,,,,,,,,,GMX +21.974,6.806822,0.0,0.0,13,13.0579,10,9.8948,0.0,0.0,0.0,601,565,565.0,601.0,15,14.7762,11,11.1474,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,606,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,3,18,17.6082,13,13.188,0.0,0.0,0.0,0,0,33698,0,0,GMC,Savana 1500 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.1,12.2,24.3,18.2,"Vans, Cargo Type",2014,-6250,,,,,FFV,E85,340,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,622,580,580.0,622.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,607,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,33699,0,0,GMC,Savana 1500 2WD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,340,,GMX +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20030,"(DSL,TRBO)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,337,0,13,Mercedes-Benz,300D/300CD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Compact Cars,1985,-2000,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3370,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Midsize Cars,1987,-1750,,SIL,,,,,,, +23.534154,6.806822,0.0,0.0,13,12.8248,10,9.8215,0.0,0.0,0.0,621,573,573.0,621.0,14,14.2926,11,10.8631,0.0,0.0,0.0,8,5.3,All-Wheel Drive,612,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,3,17,16.617,12,12.4809,0.0,0.0,0.0,0,0,33700,0,0,GMC,Savana 1500 AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,12.1,22.9,17.2,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,613,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,33701,0,0,GMC,Savana 1500 AWD Conversion (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,310,,GMX +27.4675,8.320004,0.0,0.0,10,10.1563,7,7.4534,0.0,0.0,0.0,747,719,719.0,747.0,12,11.8981,9,8.7539,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,646,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,15,15.0536,11,11.1266,0.0,0.0,0.0,0,0,33702,0,0,GMC,Savana 2500 2WD Conversion (cargo) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.4,9.1,20.7,15.3,"Vans, Cargo Type",2014,-11000,,,,,FFV,E85,280,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,622,580,580.0,622.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,602,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,33703,0,0,Chevrolet,Express 1500 2WD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2014,-7750,,,,,FFV,E85,340,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,609,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,33704,0,0,Chevrolet,Express 1500 AWD Passenger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2014,-7750,,,,,FFV,E85,310,,GMX +25.336022,0.0,0.0,0.0,11,11.1823,0,0.0,0.0,0.0,0.0,675,-1,0.0,675.0,13,13.0921,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,637,,1,4250,0,Regular,Regular Gasoline,1,-1,17,16.546,0,0.0,0.0,0.0,0.0,0,0,33705,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,0.0,22.8,0.0,"Vans, Passenger Type",2014,-9250,,,,,,,,,GMX +25.336022,0.0,0.0,0.0,11,11.1501,0,0.0,0.0,0.0,0.0,677,-1,0.0,677.0,13,13.0598,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,638,,1,4250,0,Regular,Regular Gasoline,1,-1,17,16.5175,0,0.0,0.0,0.0,0.0,0,0,33706,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.659,0.0,22.7597,0.0,"Vans, Passenger Type",2014,-9250,,,,,,,,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,710,693,693.0,710.0,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,644,FFV,1,4250,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,33707,0,0,Chevrolet,Express 2500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2014,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,11,10.5979,8,7.7039,0.0,0.0,0.0,717,698,698.0,717.0,12,12.3912,9,9.0224,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,645,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.6222,11,11.4088,0.0,0.0,0.0,0,0,33708,0,0,Chevrolet,Express 3500 2WD Passenger MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.9584,9.4199,21.499,15.7007,"Vans, Passenger Type",2014,-11000,,,,,FFV,E85,280,,GMX +23.534154,6.806822,0.0,0.0,13,12.6691,10,9.7455,0.0,0.0,0.0,622,580,580.0,622.0,14,14.2777,11,10.8588,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,605,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,17,16.9005,13,12.621,0.0,0.0,0.0,0,0,33709,0,0,GMC,Savana 1500 2WD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,12.0,23.3,17.4,"Vans, Passenger Type",2014,-7750,,,,,FFV,E85,340,,GMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4103,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3371,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +23.534154,7.4910000000000005,0.0,0.0,13,12.8248,9,9.1722,0.0,0.0,0.0,621,606,606.0,621.0,14,14.2926,10,10.2988,0.0,0.0,0.0,8,5.3,All-Wheel Drive,611,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,16.617,12,12.1181,0.0,0.0,0.0,0,0,33710,0,0,GMC,Savana 1500 AWD (Passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.8,11.3,22.9,16.7,"Vans, Passenger Type",2014,-7750,,,,,FFV,E85,310,,GMX +25.336022,0.0,0.0,0.0,11,11.1823,0,0.0,0.0,0.0,0.0,675,-1,0.0,675.0,13,13.0921,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,639,,1,4250,0,Regular,Regular Gasoline,1,-1,17,16.546,0,0.0,0.0,0.0,0.0,0,0,33711,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.7,0.0,22.8,0.0,"Vans, Passenger Type",2014,-9250,,,,,,,,,GMX +25.336022,0.0,0.0,0.0,11,11.1534,0,0.0,0.0,0.0,0.0,677,-1,0.0,677.0,13,13.0631,0,0.0,0.0,0.0,0.0,8,4.8,Rear-Wheel Drive,640,,1,4250,0,Regular,Regular Gasoline,1,-1,17,16.5204,0,0.0,0.0,0.0,0.0,0,0,33712,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.6632,0.0,22.7638,0.0,"Vans, Passenger Type",2014,-9250,,,,,,,,,GMX +25.336022,8.320004,0.0,0.0,11,10.7097,8,7.7666,0.0,0.0,0.0,710,693,693.0,710.0,13,12.5157,9,9.0893,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,647,FFV,1,4250,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.7651,11,11.4787,0.0,0.0,0.0,0,0,33713,0,0,GMC,Savana 2500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.1,9.5,21.7,15.8,"Vans, Passenger Type",2014,-9250,,,,,FFV,E85,280,,GMX +27.4675,8.320004,0.0,0.0,11,10.5596,8,7.6824,0.0,0.0,0.0,720,699,699.0,720.0,12,12.3485,9,8.9994,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,648,FFV,1,4600,5050,Gasoline or E85,Regular Gasoline,1,1,16,15.5731,11,11.3848,0.0,0.0,0.0,0,0,33714,0,0,GMC,Savana 3500 2WD (Passenger) MDPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,12.9099,9.3923,21.4299,15.6664,"Vans, Passenger Type",2014,-11000,,,,,FFV,E85,280,,GMX +19.381068,0.0,0.0,0.0,15,14.7615,0,0.0,0.0,0.0,0.0,521,-1,0.0,521.0,17,17.0627,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,165,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,21.0791,0,0.0,0.0,0.0,0.0,0,0,33715,0,18,Cadillac,XTS Limo,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),18.3067,0.0,29.233,0.0,Special Purpose Vehicle 2WD,2014,-4250,G,,,,,,,,GMX +19.381068,0.0,0.0,0.0,15,14.6,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8542,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,209,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,20.7745,0,0.0,0.0,0.0,0.0,0,0,33716,0,0,Cadillac,XTS Hearse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.0963,0.0,28.7981,0.0,Special Purpose Vehicle 2WD,2014,-4250,G,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.1815,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,10,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,33717,0,0,Honda,Odyssey,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,0.0,38.8,0.0,Minivan - 2WD,2014,-500,,,,,,,,,HNX +11.75609,0.0,0.0,0.0,25,25.0,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,28.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,315,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.0,0,0.0,0.0,0.0,0.0,0,0,33718,0,0,Buick,Encore,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.3,0.0,53.4,0.0,Small Sport Utility Vehicle 2WD,2014,2250,,,T,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.8833,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.8273,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,220,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,28,27.8712,0,0.0,0.0,0.0,0.0,0,0,33719,0,0,Ford,Explorer FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.0986,0.0,39.0281,0.0,Standard Sport Utility Vehicle 2WD,2014,0,,,T,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4104,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3372,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1987,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.5996,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.9041,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,321,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,33720,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.8,0.0,44.4,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5798,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,331,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.6147,0,0.0,0.0,0.0,0.0,0,0,33721,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4,0.0,41.5732,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.016,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,405,,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.0649,0,0.0,0.0,0.0,0.0,0,0,33722,0,0,Ford,Escape FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4,0.0,43.7,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.1008,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,13,,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.4756,0,0.0,0.0,0.0,0.0,0,0,33723,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,37.0,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,VVX +15.689436,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,414,-1,0.0,414.0,21,21.1008,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,18,,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.4756,0,0.0,0.0,0.0,0.0,0,0,33724,0,37,Volvo,XC70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),22.7,0.0,37.0,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,VVX +13.73375,0.0,0.0,0.0,21,20.9913,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.8368,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,332,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,33725,0,0,Ford,Escape AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.6,0.0,40.047,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,22.3085,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.1386,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,333,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.7515,0,0.0,0.0,0.0,0.0,0,0,33726,0,0,Ford,Escape AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.4,0.0,41.7735,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,T,,,,,,FMX +13.73375,0.0,0.0,0.0,22,21.7825,0,0.0,0.0,0.0,0.0,366,-1,0.0,366.0,24,24.3685,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,17,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.5046,0,0.0,0.0,0.0,0.0,0,0,33727,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.6104,0.0,39.9513,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,,,,,,,FJX +12.657024,0.0,0.0,0.0,24,23.6226,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.1917,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,19,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.2068,0,0.0,0.0,0.0,0.0,0,0,33728,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.2124,0.0,42.4405,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,,,,,FJX +16.4805,0.0,0.0,0.0,17,17.4695,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.0666,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,21,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.5222,0,0.0,0.0,0.0,0.0,0,0,33729,0,0,Subaru,Outback AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.8678,0.0,34.1748,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,FJX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3373,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.2991,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,19.6839,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.6726,0,0.0,0.0,0.0,0.0,0,0,33730,0,0,Volvo,XC70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6794,0.0,32.6587,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,T,,,,,,VVX +16.4805,0.0,0.0,0.0,17,17.2991,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,19.6839,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.6726,0,0.0,0.0,0.0,0.0,0,0,33731,0,0,Volvo,XC60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6794,0.0,32.6587,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,T,,,,,,VVX +15.689436,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,20.6537,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1933,0,0.0,0.0,0.0,0.0,0,0,33732,0,0,Volvo,XC70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5644,0.0,34.6952,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,VVX +16.4805,0.0,0.0,0.0,18,17.8406,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,20,20.4191,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.8,0,0.0,0.0,0.0,0.0,0,0,33733,0,0,Volvo,XC60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9796,0.0,34.2212,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,VVX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,536,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33734,0,0,Buick,Enclave FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,537,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33735,0,0,Chevrolet,Traverse FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,581,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33736,0,0,Chevrolet,Tahoe C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2014,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,582,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33737,0,0,Chevrolet,Suburban C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2014,-4250,,,,,FFV,E85,410,,GMX +16.4805,4.994,0.0,0.0,17,17.1167,13,12.6375,0.0,0.0,0.0,450,429,429.0,450.0,20,19.7111,15,14.6208,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,342,FFV,5,2750,3050,Gasoline or E85,Regular Gasoline,5,5,24,24.1929,18,18.0908,0.0,0.0,0.0,0,0,33738,0,0,Ford,Explorer 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,15.8,33.7,25.2,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,FFV,E85,279,,FMX +16.4805,0.0,0.0,0.0,17,17.1167,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7111,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,344,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.1929,0,0.0,0.0,0.0,0.0,0,0,33739,0,0,Ford,Explorer FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,0.0,33.7,0.0,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3374,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1232,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,538,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33740,0,0,GMC,Acadia FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,0.0,33.0,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,583,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33741,0,0,GMC,Yukon C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2014,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,584,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33742,0,0,GMC,Yukon XL C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 2WD,2014,-4250,,,,,FFV,E85,410,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,19,19.2267,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,40,,4,2900,0,Regular,Regular Gasoline,4,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,33743,0,0,Volvo,XC90 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3,0.0,34.4,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,VVX +18.304342000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,494,-1,0.0,494.0,18,18.0,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,539,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,33744,0,0,Buick,Enclave AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,16,15.8937,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.3611,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,170,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.6608,0,0.0,0.0,0.0,0.0,0,0,33745,0,0,Cadillac,SRX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7874,0.0,31.4971,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,476,-1,0.0,476.0,19,18.6801,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,540,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,33746,0,0,Chevrolet,Traverse AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,32.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,GMX +17.337486000000002,5.348574,0.0,0.0,17,16.5112,12,12.2632,0.0,0.0,0.0,470,450,450.0,470.0,19,18.8517,14,13.9246,0.0,0.0,0.0,6,3.5,All-Wheel Drive,341,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,22.8022,17,16.688,0.0,0.0,0.0,0,0,33747,0,0,Ford,Explorer AWD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,15.3,31.7,23.2,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,FFV,E85,260,,FMX +17.337486000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.8517,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,343,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.8022,0,0.0,0.0,0.0,0.0,0,0,33748,0,0,Ford,Explorer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.6,0.0,31.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.9096,0,0.0,0.0,0.0,0.0,489,-1,0.0,489.0,18,18.3556,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,378,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.0,0,0.0,0.0,0.0,0.0,0,0,33749,0,0,Ford,Explorer AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8083,0.0,31.414,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3375,15,15,Chrysler,LeBaron,Y,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,485,-1,0.0,485.0,18,18.3332,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,541,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,33750,0,0,GMC,Acadia AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,0.0,31.6,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,GMX +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,584,-1,0.0,584.0,15,15.2824,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,20,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,33751,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),16.1,0.0,26.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-8000,,,,S,,,,,JLX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,569,-1,0.0,569.0,16,15.6852,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,40,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,33753,0,0,Land Rover,Range Rover Sport,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),16.8,0.0,26.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,S,,,,,JLX +16.4805,0.0,0.0,0.0,17,17.3,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,1,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,23,23.2,0,0.0,0.0,0.0,0.0,0,0,33754,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.6,0.0,32.9,0.0,Standard Sport Utility Vehicle 4WD,2014,-3000,,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.9,0,0.0,0.0,0.0,0.0,513,-1,0.0,513.0,17,17.3,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,2,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.5,0,0.0,0.0,0.0,0.0,0,0,33755,0,0,Porsche,Cayenne,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.5,0.0,29.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4655,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,37,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,33756,0,0,Volkswagen,Touareg Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,33.1,0.0,Standard Sport Utility Vehicle 4WD,2014,-2250,,,,S,Hybrid,,,288V Ni-MH,VWX +18.304342000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,473,-1,0.0,473.0,18,18.454,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,41,,4,3050,0,Regular,Regular Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,33757,0,0,Volvo,XC90 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,32.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,VVX +12.306357,0.0,0.0,0.0,28,28.0188,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,31,31.3238,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,135,,8,1900,0,Diesel,Diesel,7,-1,37,36.6005,0,0.0,0.0,0.0,0.0,0,0,33758,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),36.4,0.0,51.9,0.0,Subcompact Cars,2013,2500,,,T,,Diesel,,,,VWX +12.657024,0.0,0.0,0.0,22,21.5536,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.8045,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,323,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.0005,0,0.0,0.0,0.0,0.0,0,0,33759,0,13,BMW,320i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3663,0.0,48.0322,0.0,Compact Cars,2013,500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3376,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1987,-2250,,,T,,,,,, +18.304342000000002,5.758082,0.0,0.0,15,14.9865,11,11.0259,0.0,0.0,0.0,500,487,487.0,500.0,18,17.7573,13,13.0119,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,255,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,22.9415,17,16.6879,0.0,0.0,0.0,0,0,33760,0,18,Jaguar,XF FFV,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),18.6,13.5,31.9,23.0,Midsize Cars,2013,-4750,,,,S,FFV,E85,234,,JLX +17.337486000000002,5.758082,0.0,0.0,16,15.5983,11,10.8674,0.0,0.0,0.0,475,482,482.0,475.0,19,18.6755,13,13.1468,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,357,SIDI; FFV,4,3150,3500,Premium or E85,Premium Gasoline,4,4,25,24.609,18,17.6789,0.0,0.0,0.0,0,0,33761,0,18,Jaguar,XJL FFV,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4,13.3,34.3,24.4,Large Cars,2013,-3750,,,,,FFV,E85,274,,JLX +18.304342000000002,5.758082,0.0,0.0,15,14.8331,11,11.4181,0.0,0.0,0.0,504,471,471.0,504.0,18,17.657,13,13.4681,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,358,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,23.0111,17,17.2545,0.0,0.0,0.0,0,0,33762,0,18,Jaguar,XJ FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,14.0,32.0,23.8,Large Cars,2013,-4750,,,,S,FFV,E85,274,,JLX +18.304342000000002,5.758082,0.0,0.0,15,14.8331,11,11.4181,0.0,0.0,0.0,504,471,471.0,504.0,18,17.657,13,13.4681,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,359,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,23.0111,17,17.2545,0.0,0.0,0.0,0,0,33763,0,18,Jaguar,XJL FFV,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,14.0,32.0,23.8,Large Cars,2013,-4750,,,,S,FFV,E85,274,,JLX +13.631265,0.0,0.0,0.0,24,24.4053,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,28,27.7195,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel Drive,803,,7,2100,0,Diesel,Diesel,6,-1,33,33.2357,0,0.0,0.0,0.0,0.0,0,0,33764,0,0,Mercedes-Benz,GLK250 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,31.3,0.0,46.9,0.0,Small Sport Utility Vehicle 4WD,2013,1500,,,T,,Diesel,,,,MBX +23.534154,0.0,0.0,0.0,13,12.6858,0,0.0,0.0,0.0,0.0,622,-1,0.0,622.0,14,14.4216,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,142,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.3136,0,0.0,0.0,0.0,0.0,0,0,33765,0,0,Ferrari,458 Italia,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.6214,0.0,23.3642,0.0,Two Seaters,2014,-9500,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,12.9143,0,0.0,0.0,0.0,0.0,612,-1,0.0,612.0,15,14.59,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,143,SIDI; with Stop-Start Option,2,4000,0,Premium,Premium Gasoline,2,-1,17,17.3179,0,0.0,0.0,0.0,0.0,0,0,33766,0,0,Ferrari,458 Italia,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.928,0.0,23.627,0.0,Two Seaters,2014,-8000,G,,,,,,,,FEX +23.534154,0.0,0.0,0.0,13,12.6858,0,0.0,0.0,0.0,0.0,622,-1,0.0,622.0,14,14.4216,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,144,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.3136,0,0.0,0.0,0.0,0.0,0,0,33767,0,0,Ferrari,458 Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.6214,0.0,23.3642,0.0,Two Seaters,2014,-9500,G,,,,,,,,FEX +21.974,0.0,0.0,0.0,13,12.9143,0,0.0,0.0,0.0,0.0,612,-1,0.0,612.0,15,14.59,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,145,SIDI; with Stop-Start Option,2,4000,0,Premium,Premium Gasoline,2,-1,17,17.3179,0,0.0,0.0,0.0,0.0,0,0,33768,0,0,Ferrari,458 Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.928,0.0,23.627,0.0,Two Seaters,2014,-8000,G,,,,,,,,FEX +25.336022,0.0,0.0,0.0,11,11.4504,0,0.0,0.0,0.0,0.0,679,-1,0.0,679.0,13,13.0827,0,0.0,0.0,0.0,0.0,12,6.3,Rear-Wheel Drive,153,SIDI,1,4650,0,Premium,Premium Gasoline,1,-1,16,15.8431,0,0.0,0.0,0.0,0.0,0,0,33769,0,0,Ferrari,F12,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.0412,0.0,21.8098,0.0,Two Seaters,2014,-11250,G,,,,,,,,FEX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3377,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,11.6914,0,0.0,0.0,0.0,0.0,669,-1,0.0,669.0,13,13.288,0,0.0,0.0,0.0,0.0,12,6.3,Rear-Wheel Drive,154,SIDI; with Stop-Start Option,1,4650,0,Premium,Premium Gasoline,1,-1,16,15.9502,0,0.0,0.0,0.0,0.0,0,0,33770,0,0,Ferrari,F12,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.3485,0.0,21.9606,0.0,Two Seaters,2014,-11250,G,,,,,,,,FEX +20.589638,0.0,0.0,0.0,13,13.4655,0,0.0,0.0,0.0,0.0,562,-1,0.0,562.0,16,15.718,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,32,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7573,0,0.0,0.0,0.0,0.0,0,0,33771,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),16.1,0.0,25.4,0.0,Two Seaters,2014,-6750,G,,,,,,,,NLX +20.589638,0.0,0.0,0.0,13,13.3954,0,0.0,0.0,0.0,0.0,564,-1,0.0,564.0,16,15.6701,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,33,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7741,0,0.0,0.0,0.0,0.0,0,0,33772,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),16.0,0.0,25.4,0.0,Two Seaters,2014,-6750,G,,,,,,,,NLX +21.974,0.0,0.0,0.0,12,12.0883,0,0.0,0.0,0.0,0.0,634,-1,0.0,634.0,15,14.7021,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,34,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,20,19.9831,0,0.0,0.0,0.0,0.0,0,0,33773,0,0,Lamborghini,Gallardo Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.0,0.0,24.0,0.0,Two Seaters,2014,-8000,G,,,,,,,,NLX +23.534154,0.0,0.0,0.0,12,11.5388,0,0.0,0.0,0.0,0.0,626,-1,0.0,626.0,14,14.1465,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,35,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,20,19.5451,0,0.0,0.0,0.0,0.0,0,0,33774,0,0,Lamborghini,Gallardo Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,22.6,0.0,Two Seaters,2014,-9500,G,,,,,,,,NLX +25.336022,0.0,0.0,0.0,11,10.6055,0,0.0,0.0,0.0,0.0,676,-1,0.0,676.0,13,13.1199,0,0.0,0.0,0.0,0.0,12,6.5,All-Wheel Drive,92,,1,4650,0,Premium,Premium Gasoline,1,-1,18,18.4729,0,0.0,0.0,0.0,0.0,0,0,33775,0,0,Lamborghini,Aventador Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),12.6,0.0,25.2,0.0,Two Seaters,2014,-11250,G,,,,,,,,NLX +21.974,0.0,0.0,0.0,13,13.4554,0,0.0,0.0,0.0,0.0,576,-1,0.0,576.0,15,15.4285,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,149,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.7976,0,0.0,0.0,0.0,0.0,0,0,33776,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6125,0.0,25.985,0.0,Minicompact Cars,2014,-8000,G,,,,,,,,FEX +20.589638,0.0,0.0,0.0,14,13.7283,0,0.0,0.0,0.0,0.0,569,-1,0.0,569.0,16,15.6292,0,0.0,0.0,0.0,0.0,8,4.3,Rear-Wheel Drive,150,SIDI; with Stop-Start Option,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8129,0,0.0,0.0,0.0,0.0,0,0,33777,7,0,Ferrari,California,N,false,75,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.9653,0.0,26.0068,0.0,Minicompact Cars,2014,-6750,G,,,,,,,,FEX +15.689436,0.0,0.0,0.0,18,18.117,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.419,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,56,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.558,0,0.0,0.0,0.0,0.0,0,0,33778,13,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.4,0.0,35.8,0.0,Subcompact Cars,2014,-2250,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.6699,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.6333,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,57,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.953,0,0.0,0.0,0.0,0.0,0,0,33779,10,0,Audi,S5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.1,0.0,34.7,0.0,Subcompact Cars,2014,-2250,,,,S,,,,,ADX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2424,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3378,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,17.0438,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.1767,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,59,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.023,0,0.0,0.0,0.0,0.0,0,0,33780,13,0,Audi,S5,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.4,0.0,Subcompact Cars,2014,-3000,,,,S,,,,,ADX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1049,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.4087,0.0,0.0,0.0,4,2.0,All-Wheel Drive,65,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.5013,0.0,0.0,0.0,0,0,33781,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.805,17.8408,40.5698,28.7294,Subcompact Cars,2014,-500,,,T,,FFV,E85,270,,ADX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1049,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.4087,0.0,0.0,0.0,4,2.0,All-Wheel Drive,66,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.5013,0.0,0.0,0.0,0,0,33782,10,0,Audi,A5 Cabriolet quattro,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.805,17.8408,40.5698,28.7294,Subcompact Cars,2014,-500,,,T,,FFV,E85,270,,ADX +12.19557,0.0,0.0,0.0,24,23.5414,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.5744,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,68,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,33783,10,0,Audi,A5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AV-S8),30.1192,0.0,44.4335,0.0,Subcompact Cars,2014,750,,,T,,,,,,ADX +12.657024,0.0,0.0,0.0,22,22.2425,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.8049,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,72,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.0861,0,0.0,0.0,0.0,0.0,0,0,33784,12,0,Audi,A5 quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.624,0.0,43.9699,0.0,Subcompact Cars,2014,500,,,T,,,,,,ADX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.2766,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,25,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,24,23.9773,0,0.0,0.0,0.0,0.0,0,0,33785,7,0,Bentley,Continental GTC,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.4,0.0,30.8,0.0,Subcompact Cars,2014,-5750,G,,T,,,,,,BEX +9.690534,0.0,0.0,0.0,30,30.4456,0,0.0,0.0,0.0,0.0,264,-1,0.0,264.0,34,33.6679,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,157,,8,1600,0,Regular,Regular Gasoline,8,-1,39,38.6703,0,0.0,0.0,0.0,0.0,0,0,33786,0,11,Chevrolet,Spark,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.9,0.0,55.0,0.0,Subcompact Cars,2014,4000,,,,,,,,,GMX +9.690534,0.0,0.0,0.0,31,31.1996,0,0.0,0.0,0.0,0.0,258,-1,0.0,258.0,34,34.3786,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,158,,8,1600,0,Regular,Regular Gasoline,8,-1,39,39.2689,0,0.0,0.0,0.0,0.0,0,0,33787,0,11,Chevrolet,Spark,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.9,0.0,Subcompact Cars,2014,4000,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,23.0403,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,73,SIDI; PZEV (SULEV) emissions,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.4002,0,0.0,0.0,0.0,0.0,0,0,33788,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,0.0,39.0,0.0,Subcompact Cars,2014,-1000,,,,,,,,,MBX +14.327048,4.404708,0.0,0.0,20,19.7361,15,14.9098,0.0,0.0,0.0,392,375,375.0,392.0,23,22.7351,17,17.1853,0.0,0.0,0.0,6,3.5,4-Wheel Drive,75,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,28,27.9206,21,21.126,0.0,0.0,0.0,0,0,33789,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,18.5,39.1,29.3,Subcompact Cars,2014,-1000,,,,,FFV,E85,300,,MBX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3379,0,18,Chrysler,LeBaron GTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +14.327048,4.160002,0.0,0.0,20,19.7361,15,15.2162,0.0,0.0,0.0,388,364,364.0,388.0,23,22.9366,18,17.7182,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,79,SIDI; FFV,6,2600,2550,Premium or E85,Premium Gasoline,6,6,29,28.6065,22,22.1745,0.0,0.0,0.0,0,0,33790,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,18.9,40.1,30.8,Subcompact Cars,2014,-1000,,,,,FFV,E85,310,,MBX +14.327048,0.0,0.0,0.0,20,19.8125,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.9566,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,131,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.4807,0,0.0,0.0,0.0,0.0,0,0,33791,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,0.0,40.1,0.0,Subcompact Cars,2014,-1000,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.7361,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.7351,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,133,,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,33792,11,0,Mercedes-Benz,E350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,0.0,39.1,0.0,Subcompact Cars,2014,-1000,,,,,,,,,MBX +16.4805,0.0,0.0,0.0,17,17.1922,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.1676,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,142,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,25.5781,0,0.0,0.0,0.0,0.0,0,0,33793,6,0,Mercedes-Benz,E550 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.5,0.0,35.6,0.0,Subcompact Cars,2014,-3000,,,T,,,,,,MBX +12.306357,0.0,0.0,0.0,28,28.0188,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,31,31.3238,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47,,8,1900,0,Diesel,Diesel,7,-1,37,36.6005,0,0.0,0.0,0.0,0.0,0,0,33794,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),36.4,0.0,51.9,0.0,Subcompact Cars,2014,2500,,,T,,Diesel,,,,VWX +11.924172,0.0,0.0,0.0,28,27.8088,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4203,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49,,8,1850,0,Diesel,Diesel,7,-1,41,40.6616,0,0.0,0.0,0.0,0.0,0,0,33795,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.0825,0.0,58.0474,0.0,Subcompact Cars,2014,2750,,,T,,Diesel,,,,VWX +15.689436,0.0,0.0,0.0,18,18.117,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.419,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,55,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.558,0,0.0,0.0,0.0,0.0,0,0,33796,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.4,0.0,35.8,0.0,Compact Cars,2014,-2250,,,,S,,,,,ADX +16.4805,0.0,0.0,0.0,17,17.0438,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.1767,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,58,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.023,0,0.0,0.0,0.0,0.0,0,0,33797,0,13,Audi,S4,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.0,0.0,33.4,0.0,Compact Cars,2014,-3000,,,,S,,,,,ADX +13.73375,4.679378,0.0,0.0,20,20.402,14,14.1049,0.0,0.0,0.0,377,377,377.0,377.0,24,23.5279,16,16.4087,0.0,0.0,0.0,4,2.0,All-Wheel Drive,64,SIDI; FFV,6,2500,2850,Premium or E85,Premium Gasoline,6,6,29,28.949,20,20.5013,0.0,0.0,0.0,0,0,33798,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S8),25.805,17.8408,40.5698,28.7294,Compact Cars,2014,-500,,,T,,FFV,E85,270,,ADX +12.19557,0.0,0.0,0.0,24,23.5414,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.5744,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,67,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,33799,0,12,Audi,A4,N,false,0,91,0,0.0,0.0,0.0,0.0,Auto(AV-S8),30.1192,0.0,44.4335,0.0,Compact Cars,2014,750,,,T,,,,,,ADX +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20030,"(DSL,TRBO)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,338,0,15,Mercedes-Benz,300SD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Compact Cars,1985,-2000,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3380,0,18,Chrysler,LeBaron GTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +12.657024,0.0,0.0,0.0,22,22.2425,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,25.8049,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,71,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.0861,0,0.0,0.0,0.0,0.0,0,0,33800,0,12,Audi,A4 quattro,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.624,0.0,43.9699,0.0,Compact Cars,2014,500,,,T,,,,,,ADX +13.73375,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9168,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,185,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,33801,0,14,Buick,Verano,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,42.0,0.0,Compact Cars,2014,500,,,T,,,,,,GMX +13.1844,0.0,0.0,0.0,21,20.7706,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5602,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,350,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,32,31.6089,0,0.0,0.0,0.0,0.0,0,0,33802,0,14,Buick,Verano,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),26.3,0.0,44.5,0.0,Compact Cars,2014,1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,427,-1,0.0,427.0,21,20.85,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,261,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,33803,0,10,Cadillac,ATS AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,36.3,0.0,Compact Cars,2014,-1000,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,384,-1,0.0,384.0,23,23.1457,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,356,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.949,0,0.0,0.0,0.0,0.0,0,0,33804,0,10,Cadillac,ATS AWD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,40.6,0.0,Compact Cars,2014,0,,,T,,,,,,GMX +14.327048,0.0,0.0,0.0,19,19.3648,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,22.9789,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,428,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,33805,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4,0.0,41.8,0.0,Compact Cars,2014,0,,,T,,,,,,GMX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.7125,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,469,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,33806,0,10,Cadillac,ATS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,39.0,0.0,Compact Cars,2014,-500,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,15.3985,0,0.0,0.0,0.0,0.0,483,-1,0.0,483.0,18,18.3883,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,181,,4,3050,0,Regular,Regular Gasoline,4,-1,24,24.1097,0,0.0,0.0,0.0,0.0,0,0,33807,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.1383,0.0,33.5801,0.0,Compact Cars,2014,-3250,,,,,,,,,GMX +14.964294,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.4111,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,210,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,33808,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,41.9,0.0,Compact Cars,2014,-500,,,,,,,,,GMX +16.4805,0.0,0.0,0.0,17,16.6332,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.2357,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,249,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,28,27.521,0,0.0,0.0,0.0,0.0,0,0,33809,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.7609,0.0,38.5184,0.0,Compact Cars,2014,-1750,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3381,0,18,Chrysler,LeBaron GTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Midsize Cars,1987,500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,25,24.5018,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.3689,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,407,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.1493,0,0.0,0.0,0.0,0.0,0,0,33810,0,12,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.4345,0.0,49.7376,0.0,Compact Cars,2014,2250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.8666,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.097,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,454,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.0818,0,0.0,0.0,0.0,0.0,0,0,33811,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.3956,0.0,37.8799,0.0,Compact Cars,2014,-1000,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,15.651,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5019,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,460,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.8006,0,0.0,0.0,0.0,0.0,0,0,33812,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.469,0.0,33.1351,0.0,Compact Cars,2014,-2500,,,,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,26,26.0465,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.3238,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,277,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,35,34.6529,0,0.0,0.0,0.0,0.0,15,85,33813,0,0,Ford,Fiesta ST FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.6,0.0,49.0,0.0,Compact Cars,2014,2500,,,T,,,,,,FMX +14.964294,4.679378,0.0,0.0,20,19.7361,14,14.2181,0.0,0.0,0.0,393,377,377.0,393.0,22,22.4842,16,16.3456,0.0,0.0,0.0,6,3.5,4-Wheel Drive,106,SIDI; FFV,5,2750,2850,Premium or E85,Premium Gasoline,5,6,27,27.0956,20,20.0041,0.0,0.0,0.0,0,0,33814,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,17.6,37.9,27.7,Compact Cars,2014,-1750,,,,,FFV,E85,280,,MBX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,496,-1,0.0,496.0,18,17.896,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,318,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.8254,0,0.0,0.0,0.0,0.0,0,0,33815,0,11,Mercedes-Benz,CLS63 AMG 4matic,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4,0.0,30.3,0.0,Compact Cars,2014,-4750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,496,-1,0.0,496.0,18,17.896,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,329,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.8254,0,0.0,0.0,0.0,0.0,0,0,33816,0,11,Mercedes-Benz,CLS63 AMG S 4matic,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.4,0.0,30.3,0.0,Compact Cars,2014,-4750,,,T,,,,,,MBX +11.236239000000001,0.0,0.0,0.0,30,29.8913,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.1978,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,41,,8,1750,0,Diesel,Diesel,8,-1,42,41.5066,0,0.0,0.0,0.0,0.0,0,0,33817,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S6),39.0952,0.0,59.2783,0.0,Compact Cars,2014,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.8913,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,34,34.1978,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,42,,8,1750,0,Diesel,Diesel,8,-1,42,41.5066,0,0.0,0.0,0.0,0.0,15,94,33818,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),39.0952,0.0,59.2783,0.0,Compact Cars,2014,3250,,,T,,Diesel,,,,VWX +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,44,,8,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,0,0,33819,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7301,0.0,59.7524,0.0,Compact Cars,2014,3250,,,T,,Diesel,,,,VWX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3382,0,18,Chrysler,LeBaron GTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1987,-2250,,,T,,,,,, +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,45,,8,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,15,94,33820,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7301,0.0,59.7524,0.0,Compact Cars,2014,3250,,,T,,Diesel,,,,VWX +11.924172,0.0,0.0,0.0,29,28.6469,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,46,,8,1850,0,Diesel,Diesel,7,-1,39,38.87,0,0.0,0.0,0.0,0.0,15,85,33821,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.3,0.0,55.3,0.0,Compact Cars,2014,2750,,,T,,Diesel,,,,VWX +11.924172,0.0,0.0,0.0,28,27.8088,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,32,32.4203,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,48,,8,1850,0,Diesel,Diesel,7,-1,41,40.6616,0,0.0,0.0,0.0,0.0,15,85,33822,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.0825,0.0,58.0474,0.0,Compact Cars,2014,2750,,,T,,Diesel,,,,VWX +13.1844,0.0,0.0,0.0,22,21.8712,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.2218,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,74,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.0324,0,0.0,0.0,0.0,0.0,0,0,33823,13,0,Volkswagen,CC,N,false,94,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),26.976,0.0,42.4872,0.0,Compact Cars,2014,0,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,21,20.7932,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.6143,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,75,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,31.7441,0,0.0,0.0,0.0,0.0,0,0,33824,13,0,Volkswagen,CC,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7137,0.0,43.87,0.0,Compact Cars,2014,0,,,T,,,,,,VWX +13.172643,0.0,0.0,0.0,24,24.4094,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,29,29.1042,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,16,,7,2050,0,Diesel,Diesel,7,-1,38,38.0485,0,0.0,0.0,0.0,0.0,25,94,33825,0,0,Audi,A7 quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),30.6987,0.0,52.4,0.0,Midsize Cars,2014,1750,,,T,,Diesel,,,,ADX +15.689436,0.0,0.0,0.0,17,17.2616,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9695,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,18,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,28.4347,0,0.0,0.0,0.0,0.0,0,0,33826,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),21.7885,0.0,38.4,0.0,Midsize Cars,2014,-2250,,,T,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,15,15.2801,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6574,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,19,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.5632,0,0.0,0.0,0.0,0.0,0,0,33827,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),19.0,0.0,33.3,0.0,Midsize Cars,2014,-3750,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,17,16.7439,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.152,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,20,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,26.8255,0,0.0,0.0,0.0,0.0,25,94,33828,0,0,Audi,S7,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),20.7158,0.0,35.0541,0.0,Midsize Cars,2014,-3000,,,T,,,,,,ADX +16.4805,0.0,0.0,0.0,17,16.7439,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.152,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,21,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,26.8255,0,0.0,0.0,0.0,0.0,0,0,33829,0,16,Audi,S6,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AM-S7),20.7158,0.0,35.0541,0.0,Midsize Cars,2014,-3000,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3383,0,18,Chrysler,LeBaron GTS,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,15.5443,0,0.0,0.0,0.0,0.0,466,-1,0.0,466.0,19,19.12,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,22,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,27,26.5981,0,0.0,0.0,0.0,0.0,25,94,33830,0,0,Audi,RS 7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.1,0.0,35.3,0.0,Midsize Cars,2014,-3750,,,T,,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.715,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1077,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,51,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5586,0,0.0,0.0,0.0,0.0,0,0,33831,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),22.3364,0.0,37.2698,0.0,Midsize Cars,2014,-2250,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,18,17.715,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1077,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,53,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5586,0,0.0,0.0,0.0,0.0,25,94,33832,0,0,Audi,A7 quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.3364,0.0,37.2698,0.0,Midsize Cars,2014,-2250,,,,S,,,,,ADX +14.964294,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,22,21.5408,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,54,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,33833,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),23.1369,0.0,38.1,0.0,Midsize Cars,2014,-1750,,,,S,,,,,ADX +11.75609,0.0,0.0,0.0,25,24.5044,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.5721,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,69,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.5529,0,0.0,0.0,0.0,0.0,0,0,33834,0,16,Audi,A6,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AV-S8),31.4,0.0,46.9,0.0,Midsize Cars,2014,1250,,,T,,,,,,ADX +14.327048,0.0,0.0,0.0,20,19.6106,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.9156,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,70,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.8603,0,0.0,0.0,0.0,0.0,0,0,33835,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),24.8,0.0,40.5,0.0,Midsize Cars,2014,-1000,,,T,,,,,,ADX +15.689436,4.679378,0.0,0.0,18,18.0,14,13.8379,0.0,0.0,0.0,422,384,384.0,422.0,21,21.0,16,16.2003,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,48,SIDI; FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,6,28,28.0,20,20.472,0.0,0.0,0.0,0,0,33836,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,17.4,40.2,28.7,Midsize Cars,2014,-1000,,,,,FFV,E85,300,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.6871,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,351,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.1314,0,0.0,0.0,0.0,0.0,0,0,33837,0,13,Buick,Regal eAssist,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,51.2,0.0,Midsize Cars,2014,2500,,,,,Hybrid,,,115V Li-Ion,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.6871,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,352,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.1314,0,0.0,0.0,0.0,0.0,0,0,33838,0,16,Buick,LaCrosse eAssist,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,51.2,0.0,Midsize Cars,2014,2500,,,,,Hybrid,,,115V Li-Ion,GMX +16.4805,5.348574,0.0,0.0,17,17.1167,12,11.9177,0.0,0.0,0.0,437,449,449.0,437.0,20,20.3177,14,14.0252,0.0,0.0,0.0,6,3.6,All-Wheel Drive,504,SIDI; FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,26,26.3377,18,17.8925,0.0,0.0,0.0,0,0,33839,0,16,Buick,LaCrosse AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4,14.9,36.8,25.0,Midsize Cars,2014,-1750,,,,,FFV,E85,270,,GMX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2424,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3384,0,18,Chrysler,LeBaron GTS,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,427,-1,0.0,427.0,21,20.85,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,173,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,33840,0,13,Cadillac,CTS Sedan AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,36.3,0.0,Midsize Cars,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.6644,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,396,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,33841,0,14,Cadillac,CTS AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,36.5,0.0,Midsize Cars,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1033,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,451,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,33842,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.9,0.0,Midsize Cars,2014,-1000,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9168,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,187,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,33843,0,16,Chevrolet,Malibu,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,42.0,0.0,Midsize Cars,2014,500,,,T,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.6871,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,353,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.1314,0,0.0,0.0,0.0,0.0,0,0,33844,0,16,Chevrolet,Malibu eAssist,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,51.2,0.0,Midsize Cars,2014,2500,,,,,Hybrid,,,115V Li-Ion,GMX +11.75609,0.0,0.0,0.0,25,24.5018,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.3689,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,408,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.1493,0,0.0,0.0,0.0,0.0,0,0,33845,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),31.4345,0.0,49.7376,0.0,Midsize Cars,2014,2250,,,,,,,,,GMX +25.336022,0.0,0.0,0.0,11,10.7864,0,0.0,0.0,0.0,0.0,697,-1,0.0,697.0,13,12.763,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,151,SIDI,1,4650,0,Premium,Premium Gasoline,1,-1,16,16.4467,0,0.0,0.0,0.0,0.0,22,90,33846,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),13.1973,0.0,22.66,0.0,Midsize Cars,2014,-11250,G,,,,,,,,FEX +25.336022,0.0,0.0,0.0,11,11.0659,0,0.0,0.0,0.0,0.0,684,-1,0.0,684.0,13,13.0,0,0.0,0.0,0.0,0.0,12,6.3,Part-time 4-Wheel Drive,152,SIDI; with Stop-Start Option,1,4650,0,Premium,Premium Gasoline,1,-1,17,16.5531,0,0.0,0.0,0.0,0.0,22,90,33847,0,0,Ferrari,FF,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),13.552,0.0,22.7818,0.0,Midsize Cars,2014,-11250,G,,,,,,,,FEX +12.657024,0.0,0.0,0.0,24,23.8171,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.4116,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,302,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.4682,0,0.0,0.0,0.0,0.0,0,0,33848,0,13,Mercedes-Benz,E400 Hybrid,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,31.3974,0.0,41.9549,0.0,Midsize Cars,2014,500,,,,,Hybrid,,,126V Li-Ion,MBX +17.337486000000002,0.0,0.0,0.0,16,16.0273,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3219,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,17,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.8053,0,0.0,0.0,0.0,0.0,0,0,33849,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),19.8586,0.0,33.9,0.0,Large Cars,2014,-3750,,,T,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3385,0,17,Chrysler,New Yorker,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,17.715,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1077,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,52,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,28,27.5586,0,0.0,0.0,0.0,0.0,0,0,33850,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),22.3364,0.0,37.2698,0.0,Large Cars,2014,-2250,,,,S,,,,,ADX +20.589638,0.0,0.0,0.0,13,13.1387,0,0.0,0.0,0.0,0.0,565,-1,0.0,565.0,16,15.6978,0,0.0,0.0,0.0,0.0,12,6.3,All-Wheel Drive,61,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.6025,0,0.0,0.0,0.0,0.0,0,0,33851,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),15.9,0.0,25.7,0.0,Large Cars,2014,-6750,G,,,,,,,,ADX +17.337486000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.7072,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,488,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.8457,0,0.0,0.0,0.0,0.0,0,0,33852,0,18,Cadillac,XTS AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),19.8,0.0,33.2,0.0,Large Cars,2014,-3750,,,T,,,,,,GMX +11.360558000000001,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.6871,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,354,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,35,36.1314,0,0.0,0.0,0.0,0.0,0,0,33853,0,19,Chevrolet,Impala eAssist,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,51.2,0.0,Large Cars,2014,2500,,,,,Hybrid,,,115V Li-Ion,GMX +14.964294,4.679378,0.0,0.0,18,17.7948,13,13.4857,0.0,0.0,0.0,408,379,379.0,408.0,22,21.6949,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,386,SIDI; FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,30,29.633,22,22.296,0.0,0.0,0.0,0,0,33854,0,19,Chevrolet,Impala Limited,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Large Cars,2014,-500,,,,,FFV,E85,280,,GMX +14.327048,4.994,0.0,0.0,20,19.9584,14,13.5432,0.0,0.0,0.0,394,404,404.0,394.0,23,22.5112,15,15.3409,0.0,0.0,0.0,4,2.0,All-Wheel Drive,63,SIDI; FFV,6,2600,3050,Premium or E85,Premium Gasoline,6,5,27,26.6824,18,18.3117,0.0,0.0,0.0,0,0,33855,0,28,Audi,allroad quattro,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2,17.1,37.3,25.6,Small Station Wagons,2014,-1000,,,T,,FFV,E85,254,,ADX +15.689436,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.4135,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,377,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.4067,0,0.0,0.0,0.0,0.0,0,0,33856,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,36.9,0.0,Small Station Wagons,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,18.3949,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1188,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,378,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,33857,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,36.0,0.0,Small Station Wagons,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.6644,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,397,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,33858,0,29,Cadillac,CTS Wagon AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.1,0.0,36.5,0.0,Small Station Wagons,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.8178,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,452,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,26,26.4756,0,0.0,0.0,0.0,0.0,0,0,33859,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,37.0,0.0,Small Station Wagons,2014,-1000,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3386,0,17,Chrysler,New Yorker,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,30,29.6183,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,34,34.104,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,43,,8,1750,0,Diesel,Diesel,8,-1,42,41.8508,0,0.0,0.0,0.0,0.0,0,0,33860,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.7301,0.0,59.7524,0.0,Small Station Wagons,2014,3250,,,T,,Diesel,,,,VWX +19.381068,0.0,0.0,0.0,15,15.1397,0,0.0,0.0,0.0,0.0,507,-1,0.0,507.0,17,17.4366,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,323,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,21,21.4059,0,0.0,0.0,0.0,0.0,0,0,33861,0,36,Mercedes-Benz,E63 AMG 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.8,0.0,29.8,0.0,Midsize Station Wagons,2014,-5750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.4456,0,0.0,0.0,0.0,0.0,498,-1,0.0,498.0,18,17.6795,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,326,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,33862,0,36,Mercedes-Benz,E63 AMG S 4matic (wagon),N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.2,0.0,29.8,0.0,Midsize Station Wagons,2014,-4750,,,T,,,,,,MBX +16.4805,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5158,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,146,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.8862,0,0.0,0.0,0.0,0.0,0,0,33863,0,28,Chevrolet,Equinox FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,34.7,0.0,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,347,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,33864,0,28,Chevrolet,Equinox FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,GMX +16.4805,4.679378,0.0,0.0,17,17.7948,13,13.4857,0.0,0.0,0.0,408,379,379.0,408.0,20,21.6949,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,385,SIDI; FFV,5,2750,2850,Gasoline or E85,Regular Gasoline,5,6,24,29.633,22,22.296,0.0,0.0,0.0,0,0,33865,0,28,Chevrolet,Equinox FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,FFV,E85,330,,GMX +16.4805,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5158,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,147,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.8862,0,0.0,0.0,0.0,0.0,0,0,33866,0,28,GMC,Terrain FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,0.0,34.7,0.0,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,GMX +12.657024,0.0,0.0,0.0,22,22.3062,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,26,25.8416,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,348,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.0502,0,0.0,0.0,0.0,0.0,0,0,33867,0,28,GMC,Terrain FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,0.0,45.1499,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,GMX +16.4805,4.679378,0.0,0.0,17,17.7948,13,13.4857,0.0,0.0,0.0,408,379,379.0,408.0,20,21.6949,16,16.4023,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,387,SIDI; FFV,5,2750,2850,Gasoline or E85,Regular Gasoline,5,6,24,29.633,22,22.296,0.0,0.0,0.0,0,0,33868,0,28,GMC,Terrain FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.3,16.9,41.6,31.3,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,FFV,E85,330,,GMX +17.337486000000002,0.0,0.0,0.0,17,16.7386,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.2901,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,581,,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,33869,0,0,Infiniti,QX70 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.9,0.0,33.0,0.0,Small Sport Utility Vehicle 2WD,2014,-3750,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3387,0,16,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1987,-5750,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.599,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,86,SIDI; PZEV (SULEV) emissions,5,2750,0,Premium,Premium Gasoline,5,-1,26,25.7838,0,0.0,0.0,0.0,0.0,0,0,33870,0,0,Mercedes-Benz,GLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0,0.0,35.7,0.0,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,MBX +14.327048,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.6161,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,80,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,33871,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.9873,0.0,36.0386,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,T,,,,,,VWX +15.689436,0.0,0.0,0.0,18,18.1488,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.0791,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,81,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.2617,0,0.0,0.0,0.0,0.0,0,0,33872,0,0,Volkswagen,Tiguan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.8,0.0,Small Sport Utility Vehicle 2WD,2014,-2250,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,24,24.0075,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3065,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,50,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,29.7936,0,0.0,0.0,0.0,0.0,0,0,33873,0,0,Audi,Q5 Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),30.4,0.0,39.9,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,T,,Hybrid,,,266V Li-Ion,ADX +15.689436,0.0,0.0,0.0,18,17.8443,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6536,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,60,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.5746,0,0.0,0.0,0.0,0.0,0,0,33874,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.8446,0.0,35.5,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,,S,,,,,ADX +14.327048,4.679378,0.0,0.0,20,19.6619,14,13.7947,0.0,0.0,0.0,393,392,392.0,393.0,23,22.5781,16,15.8444,0.0,0.0,0.0,4,2.0,All-Wheel Drive,62,SIDI; FFV,6,2600,2850,Premium or E85,Premium Gasoline,6,6,28,27.5771,19,19.3602,0.0,0.0,0.0,0,0,33875,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.8,17.4,38.6,27.1,Small Sport Utility Vehicle 4WD,2014,-1000,,,T,,FFV,E85,317,,ADX +12.657024,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,348,-1,0.0,348.0,26,25.5771,0,0.0,0.0,0.0,0.0,4,1.4,All-Wheel Drive,641,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.5646,0,0.0,0.0,0.0,0.0,0,0,33876,0,0,Buick,Encore AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.4,0.0,41.5,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,T,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,19,18.9385,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,394,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,23,24.0541,0,0.0,0.0,0.0,0.0,0,0,33877,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,590,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,33878,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,GMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,379,375,375.0,379.0,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,596,SIDI; FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,33879,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Small Sport Utility Vehicle 4WD,2014,0,,,,,FFV,E85,320,,GMX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3388,15,15,Dodge,Aries,Y,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1987,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,19,18.9385,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,395,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,23,24.0541,0,0.0,0.0,0.0,0.0,0,0,33880,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1,0.0,33.5,0.0,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,20.4354,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4698,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,591,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.6736,0,0.0,0.0,0.0,0.0,0,0,33881,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,0.0,40.1978,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,GMX +14.327048,4.404708,0.0,0.0,20,20.4354,14,14.4586,0.0,0.0,0.0,379,375,375.0,379.0,23,23.4698,17,16.607,0.0,0.0,0.0,4,2.4,All-Wheel Drive,597,SIDI; FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,29,28.6736,20,20.2922,0.0,0.0,0.0,0,0,33882,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8453,18.2863,40.1978,28.4478,Small Sport Utility Vehicle 4WD,2014,0,,,,,FFV,E85,320,,GMX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,549,-1,0.0,549.0,16,16.2262,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,391,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.7934,0,0.0,0.0,0.0,0.0,0,0,33883,0,0,Infiniti,QX70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),17.5,0.0,27.4,0.0,Small Sport Utility Vehicle 4WD,2014,-6750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.2399,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4037,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,582,,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.9837,0,0.0,0.0,0.0,0.0,0,0,33884,0,0,Infiniti,QX70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.2426,0.0,30.5266,0.0,Small Sport Utility Vehicle 4WD,2014,-4750,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.8966,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,84,SIDI; PZEV (SULEV) emissions,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7302,0,0.0,0.0,0.0,0.0,0,0,33885,0,0,Mercedes-Benz,GLK350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.3,0.0,34.7,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,,,,,,,MBX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,571,533,533.0,571.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,626,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,33886,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,310,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,571,533,533.0,571.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,627,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,33887,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,380,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,571,528,528.0,571.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,576,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,33888,0,0,GMC,Yukon C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.9868,10.1061,18.0875,14.9103,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,310,,GMX +20.589638,6.242500000000001,0.0,0.0,14,13.9868,10,10.1061,0.0,0.0,0.0,571,533,533.0,571.0,16,15.5759,12,11.8199,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,577,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,18,18.0875,15,14.9103,0.0,0.0,0.0,0,0,33889,0,0,GMC,Yukon XL C10 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3,12.5,28.4,20.6609,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,380,,GMX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2360,(POLICE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3389,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +17.351199,0.0,0.0,0.0,19,18.74,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,22,21.9099,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,24,,5,2700,0,Diesel,Diesel,4,-1,28,27.62,0,0.0,0.0,0.0,0.0,0,0,33890,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.8,0.0,39.1,0.0,Standard Sport Utility Vehicle 4WD,2014,-1500,,,T,,Diesel,,,,ADX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,498,-1,0.0,498.0,18,17.8322,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,36,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,33891,0,0,Audi,Q7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4,0.0,30.0,0.0,Standard Sport Utility Vehicle 4WD,2014,-4750,,,,S,,,,,ADX +21.974,6.242500000000001,0.0,0.0,13,13.0,10,9.9496,0.0,0.0,0.0,581,539,539.0,581.0,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,594,FFV,2,3650,3800,Gasoline or E85,Regular Gasoline,2,3,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,33892,0,0,Cadillac,Escalade AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Standard Sport Utility Vehicle 4WD,2014,-6250,,,,,FFV,E85,310,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,615,596,596.0,615.0,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,654,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,33893,0,0,Cadillac,Escalade ESV AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,FFV,E85,320,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,586,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33894,0,0,Chevrolet,Tahoe K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2014,-4250,,,,,FFV,E85,330,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,587,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33895,0,0,Chevrolet,Suburban K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2014,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,588,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33896,0,0,GMC,Yukon XL K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2014,-4250,,,,,FFV,E85,410,,GMX +19.381068,5.758082,0.0,0.0,15,14.7564,11,10.8052,0.0,0.0,0.0,521,492,492.0,521.0,17,17.0933,13,12.6554,0.0,0.0,0.0,8,5.3,4-Wheel Drive,589,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,21.196,16,16.0051,0.0,0.0,0.0,0,0,33897,0,0,GMC,Yukon K10 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.3,13.4,29.4,22.2,Standard Sport Utility Vehicle 4WD,2014,-4250,,,,,FFV,E85,330,,GMX +21.974,6.242500000000001,0.0,0.0,13,13.8324,10,9.9496,0.0,0.0,0.0,581,539,539.0,581.0,15,15.2845,12,11.5728,0.0,0.0,0.0,8,6.2,All-Wheel Drive,595,FFV,2,3650,3800,Gasoline or E85,Regular Gasoline,2,3,18,17.5342,14,14.455,0.0,0.0,0.0,0,0,33898,0,0,GMC,Yukon Denali K10 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.1,12.3,27.6,20.014,Standard Sport Utility Vehicle 4WD,2014,-6250,,,,,FFV,E85,310,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.5133,9,9.0193,0.0,0.0,0.0,615,596,596.0,615.0,14,14.3652,10,10.4946,0.0,0.0,0.0,8,6.2,All-Wheel Drive,655,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,18,17.5375,13,13.1169,0.0,0.0,0.0,0,0,33899,0,0,GMC,Yukon XL K10 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.4,11.1,24.2,18.1,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,FFV,E85,320,,GMX +20.102931,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20040,"(CALIF) (DSL,TRBO)",-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,339,0,15,Mercedes-Benz,300SD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,28.0,0.0,Compact Cars,1985,-3500,,,T,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3390,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0256,0.0,Midsize Cars,1987,1000,,SIL,,,,,,, +3.092538803571429,0.21000000000000002,0.0,4.0,35,34.9,101,101.43,0.0,33.0,0.68,81,-1,0.0,81.0,37,36.9,98,97.77,35.0,0.0,0.66,4,1.4,Front-Wheel Drive,402,PHEV,10,1650,650,Premium Gas or Electricity,Premium Gasoline,10,-1,40,39.7,93,93.3,0.0,36.0,0.65,18,90,33900,0,0,Chevrolet,Volt,N,false,0,0,0,0.0,39.9196,0.0,36.302,Automatic (variable gear ratios),47.6,144.9,53.5,133.3,Compact Cars,2014,7250,,,,,Plug-in Hybrid,Electricity,38,111 kW,GMX +25.336022,0.0,0.0,0.0,11,11.4504,0,0.0,0.0,0.0,0.0,679,-1,0.0,679.0,13,13.0827,0,0.0,0.0,0.0,0.0,12,6.3,Rear-Wheel Drive,153,SIDI,2,4650,0,Premium,Premium Gasoline,2,-1,16,15.8431,0,0.0,0.0,0.0,0.0,0,0,33901,0,0,Ferrari,F12,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.0412,0.0,21.8098,0.0,Two Seaters,2013,-11250,G,,,,,,,,FEX +25.336022,0.0,0.0,0.0,12,11.6914,0,0.0,0.0,0.0,0.0,669,-1,0.0,669.0,13,13.288,0,0.0,0.0,0.0,0.0,12,6.3,Rear-Wheel Drive,154,SIDI; with Stop-Start option,2,4650,0,Premium,Premium Gasoline,2,-1,16,15.9502,0,0.0,0.0,0.0,0.0,0,0,33902,0,0,Ferrari,F12,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),14.3485,0.0,21.9606,0.0,Two Seaters,2013,-11250,G,,,,,,,,FEX +13.73375,0.0,0.0,0.0,21,20.9913,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,24.2836,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,41,,6,2300,0,Regular,Regular Gasoline,6,-1,30,30.0427,0,0.0,0.0,0.0,0.0,13,97,33903,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.6,0.0,42.2,0.0,Midsize Cars,2013,500,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,16.5871,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,20.0939,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,357,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,33904,0,18,Jaguar,XJ LWB,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),20.7,0.0,37.9,0.0,Large Cars,2013,-3000,,,,S,,,,,JCX +0.17400000000000002,0.0,0.0,4.0,132,131.8861,0,0.0,0.0,26.0,0.0,0,-1,0.0,0.0,118,118.142,0,0.0,29.0,0.0,0.0,,,Front-Wheel Drive,11,,10,500,0,Electricity,Electricity,10,-1,105,104.7943,0,0.0,0.0,32.0,0.0,0,0,33905,0,21,Honda,Fit EV,N,false,0,91,82,89.81,0.0,73.56,0.0,Automatic (A1),188.4087,0.0,149.7062,0.0,Small Station Wagons,2014,9500,,,,,EV,,,92 kW DCPM,HNX +10.283832,0.0,0.0,0.0,28,27.9814,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.3263,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,8,SIDI; with i-ELOOP Technology Package,8,1700,0,Regular,Regular Gasoline,8,-1,40,39.8982,0,0.0,0.0,0.0,0.0,0,0,33906,0,15,Mazda,6,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),36.3466,0.0,56.8478,0.0,Midsize Cars,2014,3500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,17,17.1866,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9486,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,102,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,29,28.5999,0,0.0,0.0,0.0,0.0,0,0,33907,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,21.4926,0.0,40.0903,0.0,Two Seaters,2014,-2250,,,,,,,,,GMX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,356,-1,0.0,356.0,25,24.5032,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,13,,6,2400,0,Premium,Premium Gasoline,6,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,33908,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Two Seaters,2014,0,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,23.7609,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,14,,6,2500,0,Premium,Premium Gasoline,6,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,33909,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2014,-500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3391,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,20.6179,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2824,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,15,,6,2600,0,Premium,Premium Gasoline,6,-1,28,27.6496,0,0.0,0.0,0.0,0.0,0,0,33910,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0927,0.0,38.7056,0.0,Two Seaters,2014,-1000,,,,,,,,,TKX +18.304342000000002,0.0,0.0,0.0,16,15.8793,0,0.0,0.0,0.0,0.0,486,-1,0.0,486.0,18,18.2078,0,0.0,0.0,0.0,0.0,8,4.2,All-Wheel Drive,29,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.1836,0,0.0,0.0,0.0,0.0,0,0,33911,10,0,Audi,RS 5 Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.2,0.0,28.9,0.0,Subcompact Cars,2014,-4750,,,,,,,,,ADX +9.690534,0.0,0.0,0.0,30,29.612,0,0.0,0.0,0.0,0.0,264,-1,0.0,264.0,34,33.7153,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,355,,8,1600,0,Regular,Regular Gasoline,8,-1,41,40.5896,0,0.0,0.0,0.0,0.0,15,85,33912,0,12,Ford,Fiesta SFE FWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AM6),38.6909,0.0,57.8913,0.0,Subcompact Cars,2014,4000,,,,,,,,,FMX +20.589638,0.0,0.0,0.0,13,12.937,0,0.0,0.0,0.0,0.0,574,-1,0.0,574.0,16,15.552,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,21,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.656,0,0.0,0.0,0.0,0.0,0,0,33913,6,0,Maserati,GranTurismo,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.9438,0.0,28.6291,0.0,Subcompact Cars,2014,-6750,G,,,,,,,,MAX +13.73375,0.0,0.0,0.0,20,20.4758,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.7645,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,74,SIDI; PZEV (SULEV) emissions,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.569,0,0.0,0.0,0.0,0.0,0,0,33914,11,0,Mercedes-Benz,E350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.9,0.0,41.3,0.0,Subcompact Cars,2014,-500,,,,,,,,,MBX +14.327048,4.404708,0.0,0.0,20,19.5877,14,14.449,0.0,0.0,0.0,390,384,384.0,390.0,23,22.6467,17,16.7639,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,82,SIDI; FFV,6,2600,2700,Premium or E85,Premium Gasoline,6,6,28,27.9892,21,20.8459,0.0,0.0,0.0,0,0,33915,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.7,17.9,39.2,28.9,Subcompact Cars,2014,-1000,,,,,FFV,E85,300,,MBX +14.964294,0.0,0.0,0.0,19,19.2005,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,22.2789,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.7086,0,0.0,0.0,0.0,0.0,0,0,33916,6,0,Mercedes-Benz,E350 Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.7,0.0,39.2,0.0,Subcompact Cars,2014,-1750,,,,,,,,,MBX +13.1844,0.0,0.0,0.0,23,22.7003,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,25.0076,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,77,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,29,28.555,0,0.0,0.0,0.0,0.0,0,0,33917,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.8646,0.0,40.8,0.0,Subcompact Cars,2014,0,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.7634,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,24.8658,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,78,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.1121,0,0.0,0.0,0.0,0.0,0,0,33918,11,0,Volkswagen,Eos,N,false,77,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),27.5,0.0,41.5,0.0,Subcompact Cars,2014,0,,,T,,,,,,VWX +18.304342000000002,0.0,0.0,0.0,15,15.0109,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.1706,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,26,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.4645,0,0.0,0.0,0.0,0.0,0,0,33919,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.0,0.0,33.5,0.0,Compact Cars,2014,-4750,,,T,,,,,,BEX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2460,(POLICE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3392,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5152,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,403,,8,1850,0,Regular,Regular Gasoline,8,-1,35,34.7875,0,0.0,0.0,0.0,0.0,0,0,33920,0,12,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,49.2,0.0,Compact Cars,2014,2750,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,20.1489,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,23,23.4483,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,103,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.3157,0,0.0,0.0,0.0,0.0,0,0,33921,0,12,Mercedes-Benz,C350,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,0.0,40.2,0.0,Compact Cars,2014,-1000,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,19,18.6611,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9761,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,9,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7251,0,0.0,0.0,0.0,0.0,0,0,33922,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4559,0.0,34.4675,0.0,Compact Cars,2014,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.7268,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9529,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,11,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.6348,0,0.0,0.0,0.0,0.0,0,0,33923,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8845,0.0,31.4599,0.0,Compact Cars,2014,-3750,,,T,,,,,,FJX +9.976196,0.0,0.0,0.0,30,30.3875,0,0.0,0.0,0.0,0.0,266,-1,0.0,266.0,33,33.1258,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,15,,8,1650,0,Regular,Regular Gasoline,8,-1,37,37.2257,0,0.0,0.0,0.0,0.0,15,85,33924,0,0,Toyota,Yaris,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.8155,0.0,52.8344,0.0,Compact Cars,2014,3750,,,,,,,,,TYX +10.283832,0.0,0.0,0.0,30,30.1704,0,0.0,0.0,0.0,0.0,273,-1,0.0,273.0,32,32.3916,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,16,,8,1700,0,Regular,Regular Gasoline,8,-1,36,35.5945,0,0.0,0.0,0.0,0.0,15,85,33925,0,0,Toyota,Yaris,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,39.5,0.0,50.4,0.0,Compact Cars,2014,3500,,,,,,,,,TYX +12.657024,0.0,0.0,0.0,24,23.6914,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.0264,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,76,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,29.5911,0,0.0,0.0,0.0,0.0,15,85,33926,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),29.1673,0.0,42.3326,0.0,Compact Cars,2014,500,,,T,,,,,,VWX +10.987,0.0,0.0,0.0,26,25.8912,0,0.0,0.0,0.0,0.0,303,-1,0.0,303.0,30,29.5215,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,86,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.6271,0,0.0,0.0,0.0,0.0,0,0,33927,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.382,0.0,49.523,0.0,Compact Cars,2014,2750,,,T,,,,,,VWX +11.360558000000001,0.0,0.0,0.0,25,25.2476,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,29.023,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,88,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,36,35.5136,0,0.0,0.0,0.0,0.0,0,0,33928,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),31.4506,0.0,49.1933,0.0,Compact Cars,2014,2500,,,T,,,,,,VWX +12.19557,0.0,0.0,0.0,24,23.5751,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.7004,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,90,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,31.8631,0,0.0,0.0,0.0,0.0,0,0,33929,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S6),29.5629,0.0,44.4634,0.0,Compact Cars,2014,750,,,T,,,,,,VWX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3393,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1987,-5750,T,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.8967,0,0.0,0.0,0.0,0.0,338,-1,0.0,338.0,26,26.4421,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,91,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.6145,0,0.0,0.0,0.0,0.0,0,0,33930,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.2818,0.0,45.1635,0.0,Compact Cars,2014,500,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,23,23.1009,0,0.0,0.0,0.0,0.0,344,-1,0.0,344.0,25,25.4822,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,103,,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.1554,0,0.0,0.0,0.0,0.0,0,0,33931,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S6),28.1,0.0,41.499,0.0,Compact Cars,2014,1000,,,,,,,,,VWX +11.75609,0.0,0.0,0.0,24,24.3944,0,0.0,0.0,0.0,0.0,316,-1,0.0,316.0,28,27.8344,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,104,,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.6309,0,0.0,0.0,0.0,0.0,0,0,33932,0,16,Volkswagen,Jetta,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8,0.0,46.2,0.0,Compact Cars,2014,2250,,,,,,,,,VWX +13.172643,0.0,0.0,0.0,24,24.4094,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,29,29.1042,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,15,,7,2050,0,Diesel,Diesel,7,-1,38,38.0485,0,0.0,0.0,0.0,0.0,0,0,33933,0,16,Audi,A6 quattro,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),30.6987,0.0,52.4,0.0,Midsize Cars,2014,1750,,,T,,Diesel,,,,ADX +14.964294,0.0,0.0,0.0,19,19.0,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,22.0,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,357,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0,0,0.0,0.0,0.0,0.0,0,0,33934,0,13,Cadillac,CTS Sedan AWD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,40.6,0.0,Midsize Cars,2014,-500,,,T,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.8102,0,0.0,0.0,0.0,0.0,381,-1,0.0,381.0,23,23.3211,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,509,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,33935,0,13,Cadillac,CTS Sedan,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),25.0,0.0,41.8,0.0,Midsize Cars,2014,0,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5152,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,404,,8,1850,0,Regular,Regular Gasoline,8,-1,35,34.7875,0,0.0,0.0,0.0,0.0,0,0,33936,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.9,0.0,49.2,0.0,Midsize Cars,2014,2750,,,,,,,,,GMX +14.327048,0.0,0.0,0.0,20,19.809,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.3013,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,153,,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.7012,0,0.0,0.0,0.0,0.0,0,0,33937,0,14,Infiniti,Q50a,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S7),24.9984,0.0,41.6998,0.0,Midsize Cars,2014,-1000,,,,,,,,,NSX +14.327048,0.0,0.0,0.0,20,19.6268,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,23.0309,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,154,,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.2263,0,0.0,0.0,0.0,0.0,0,0,33938,0,14,Infiniti,Q50,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),24.7527,0.0,41.0052,0.0,Midsize Cars,2014,-1000,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.7848,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,155,,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.3018,0,0.0,0.0,0.0,0.0,0,0,33939,0,14,Infiniti,Q50a AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S7),23.5,0.0,38.1997,0.0,Midsize Cars,2014,-1750,,,,,,,,,NSX +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS) 2 barrel carb,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3394,0,16,Dodge,Diplomat,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Midsize Cars,1987,-7750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.6505,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.6701,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,158,,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.016,0,0.0,0.0,0.0,0.0,0,0,33940,0,14,Infiniti,Q50 AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),23.4418,0.0,37.7843,0.0,Midsize Cars,2014,-1750,,,,,,,,,NSX +9.976196,0.0,0.0,0.0,29,28.8556,0,0.0,0.0,0.0,0.0,269,-1,0.0,269.0,33,32.9714,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,9,SIDI,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.9328,0,0.0,0.0,0.0,0.0,22,96,33941,0,0,Mazda,3 5-Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.6,0.0,56.9,0.0,Midsize Cars,2014,3750,,,,,,,,,TKX +9.976196,0.0,0.0,0.0,30,29.5492,0,0.0,0.0,0.0,0.0,265,-1,0.0,265.0,33,33.465,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,10,SIDI,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.9328,0,0.0,0.0,0.0,0.0,22,96,33942,0,0,Mazda,3 5-Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),38.6,0.0,56.9,0.0,Midsize Cars,2014,3750,,,,,,,,,TKX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.5771,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,324,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.8022,0,0.0,0.0,0.0,0.0,0,0,33943,0,13,Mercedes-Benz,E63 AMG 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.1,0.0,31.7,0.0,Midsize Cars,2014,-3750,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.3692,0,0.0,0.0,0.0,0.0,498,-1,0.0,498.0,18,17.7084,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,325,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.7555,0,0.0,0.0,0.0,0.0,0,0,33944,0,13,Mercedes-Benz,E63 AMG S 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,19.1,0.0,30.2,0.0,Midsize Cars,2014,-4750,,,T,,,,,,MBX +11.236239000000001,0.0,0.0,0.0,30,30.4633,0,0.0,0.0,0.0,0.0,290,-1,0.0,290.0,34,34.1916,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,84,,8,1750,0,Diesel,Diesel,8,-1,40,40.2057,0,0.0,0.0,0.0,0.0,0,0,33945,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.9,0.0,56.8,0.0,Midsize Cars,2014,3250,,,T,,Diesel,,,,VWX +10.905012000000001,0.0,0.0,0.0,31,30.8024,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,35,35.1943,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,85,,9,1700,0,Diesel,Diesel,8,-1,43,42.6219,0,0.0,0.0,0.0,0.0,0,0,33946,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,62.8,0.0,Midsize Cars,2014,3500,,,T,,Diesel,,,,VWX +11.75609,0.0,0.0,0.0,24,24.4546,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,28.1709,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,87,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.5968,0,0.0,0.0,0.0,0.0,0,0,33947,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.2365,0.0,48.2157,0.0,Midsize Cars,2014,2250,,,T,,,,,,VWX +11.75609,0.0,0.0,0.0,24,24.1046,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.6129,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,89,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.5879,0,0.0,0.0,0.0,0.0,0,0,33948,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),30.1774,0.0,47.9731,0.0,Midsize Cars,2014,2250,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,22,22.1883,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.3422,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,95,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.6704,0,0.0,0.0,0.0,0.0,0,0,33949,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),27.0521,0.0,40.8408,0.0,Midsize Cars,2014,1000,,,,,,,,,VWX +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS) 4 barrel carb,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3395,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1987,-11000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,21.9815,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,25.6219,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,96,,7,2100,0,Regular,Regular Gasoline,7,-1,32,32.1245,0,0.0,0.0,0.0,0.0,0,0,33950,0,16,Volkswagen,Passat,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.1092,0.0,42.8028,0.0,Midsize Cars,2014,1500,,,,,,,,,VWX +15.689436,0.0,0.0,0.0,18,17.9139,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3854,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,57,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,28,28.0227,0,0.0,0.0,0.0,0.0,0,0,33951,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4585,0.0,39.2487,0.0,Large Cars,2014,-1000,,,,,,,,,GMX +12.19557,0.0,0.0,0.0,24,23.6453,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.0041,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,36,,7,2250,0,Premium,Premium Gasoline,7,-1,33,32.6774,0,0.0,0.0,0.0,0.0,0,0,33952,0,21,Fiat,500 L,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.2439,0.0,46.0751,0.0,Small Station Wagons,2014,750,,,T,,,,,,CRX +11.75609,0.0,0.0,0.0,25,25.3666,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.2417,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,37,,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.7832,0,0.0,0.0,0.0,0.0,0,0,33953,0,21,Fiat,500 L,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.6439,0.0,46.2314,0.0,Small Station Wagons,2014,1250,,,T,,,,,,CRX +15.689436,0.0,0.0,0.0,19,18.6611,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9761,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,10,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7251,0,0.0,0.0,0.0,0.0,0,0,33954,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.4559,0.0,34.4675,0.0,Small Station Wagons,2014,-2250,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.7268,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9529,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,12,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.6348,0,0.0,0.0,0.0,0.0,0,0,33955,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8845,0.0,31.4599,0.0,Small Station Wagons,2014,-3750,,,T,,,,,,FJX +11.567466000000001,0.0,0.0,0.0,29,28.8556,0,0.0,0.0,0.0,0.0,310,-1,0.0,310.0,33,32.8278,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,40,,8,1800,0,Diesel,Diesel,7,-1,39,39.4682,0,0.0,0.0,0.0,0.0,0,0,33956,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Auto(AM-S6),37.6,0.0,56.2,0.0,Small Station Wagons,2014,3000,,,T,,Diesel,,,,VWX +20.589638,0.0,0.0,0.0,14,13.7551,0,0.0,0.0,0.0,0.0,560,-1,0.0,560.0,16,15.8819,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,566,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,20,19.5825,0,0.0,0.0,0.0,0.0,0,0,33957,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0,0.0,27.1,0.0,Standard Pickup Trucks 2WD,2014,-6000,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.7409,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,935,,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.3591,0,0.0,0.0,0.0,0.0,0,0,33958,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.1,0.0,32.5,0.0,Standard Pickup Trucks 4WD,2014,-2500,,,,,,,,,CRX +16.4805,5.348574,0.0,0.0,17,17.1,12,12.3,0.0,0.0,0.0,444,434,434.0,444.0,20,20.0,14,14.3,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,613,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,25.1,18,18.0,0.0,0.0,0.0,0,0,33959,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2014,-1750,,,,,FFV,E85,280,,CRX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3396,0,18,Dodge,Lancer,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +16.4805,5.348574,0.0,0.0,17,17.1,12,12.3,0.0,0.0,0.0,444,434,434.0,444.0,20,20.0,14,14.3,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,616,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,25.1,18,18.0,0.0,0.0,0.0,0,0,33960,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,15.1,35.0,24.8,Minivan - 2WD,2014,-1750,,,,,FFV,E85,280,,CRX +16.4805,5.348574,0.0,0.0,17,16.7,12,12.0,0.0,0.0,0.0,455,449,449.0,455.0,20,19.5,14,14.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,640,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,24.7,18,17.7,0.0,0.0,0.0,0,0,33961,0,0,Volkswagen,Routan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.8,14.7,34.5,24.5,Minivan - 2WD,2014,-1750,,,,,FFV,E85,280,,CRX +17.337486000000002,5.348574,0.0,0.0,17,16.5871,12,12.0998,0.0,0.0,0.0,462,450,450.0,462.0,19,19.2198,14,13.9954,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,362,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,24,23.8457,17,17.3097,0.0,0.0,0.0,0,0,33962,0,10,Chevrolet,Captiva FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7,15.1,33.2,24.1,Small Sport Utility Vehicle 2WD,2014,-2500,,,,,FFV,E85,270,,GMX +14.964294,0.0,0.0,0.0,20,19.5866,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.1083,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,93,,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.2368,0,0.0,0.0,0.0,0.0,0,0,33963,0,0,Infiniti,QX60 FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),24.6986,0.0,36.6537,0.0,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,24,23.5584,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,25.9122,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,221,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.5168,0,0.0,0.0,0.0,0.0,0,0,33964,0,22,Mitsubishi,Outlander Sport 2WD,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.1235,0.0,41.43,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,MTX +12.19557,0.0,0.0,0.0,24,24.1173,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,26.6739,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,222,,7,2050,0,Regular,Regular Gasoline,7,-1,31,30.6444,0,0.0,0.0,0.0,0.0,0,0,33965,0,22,Mitsubishi,Outlander Sport 2WD,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.8991,0.0,43.0824,0.0,Small Sport Utility Vehicle 2WD,2014,1750,,,,,,,,,MTX +14.964294,0.0,0.0,0.0,20,19.5439,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,22.149,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,591,,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.4597,0,0.0,0.0,0.0,0.0,0,0,33966,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),24.6411,0.0,36.9769,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,NSX +14.140845,0.0,0.0,0.0,24,23.6266,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,27,26.5783,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,14,,7,2200,0,Diesel,Diesel,6,-1,31,31.3636,0,0.0,0.0,0.0,0.0,0,0,33967,0,0,Audi,Q5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),29.1832,0.0,43.5,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,T,,Diesel,,,,ADX +18.304342000000002,5.758082,0.0,0.0,16,15.9794,11,11.4024,0.0,0.0,0.0,482,480,480.0,482.0,18,18.4245,13,13.109,0.0,0.0,0.0,6,3.0,All-Wheel Drive,363,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.6628,16,16.0438,0.0,0.0,0.0,0,0,33968,0,0,Chevrolet,Captiva AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.9,14.2,31.5,22.3,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,FFV,E85,220,,GMX +17.337486000000002,5.348574,0.0,0.0,16,15.9033,12,11.7267,0.0,0.0,0.0,476,456,456.0,476.0,19,18.6686,14,13.6779,0.0,0.0,0.0,6,3.6,All-Wheel Drive,442,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,23.7068,17,17.1695,0.0,0.0,0.0,0,0,33969,0,0,Chevrolet,Equinox AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,14.6,33.0,23.9,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,FFV,E85,290,,GMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3397,0,18,Dodge,Lancer,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +17.337486000000002,5.348574,0.0,0.0,16,15.9033,12,11.7267,0.0,0.0,0.0,476,456,456.0,476.0,19,18.6686,14,13.6779,0.0,0.0,0.0,6,3.6,All-Wheel Drive,443,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,23.7068,17,17.1695,0.0,0.0,0.0,0,0,33970,0,0,GMC,Terrain AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.8,14.6,33.0,23.9,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,FFV,E85,290,,GMX +15.689436,0.0,0.0,0.0,19,19.1,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4911,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,94,,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.3735,0,0.0,0.0,0.0,0.0,0,0,33971,0,0,Infiniti,QX60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),24.0442,0.0,35.4041,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,481,-1,0.0,481.0,18,18.4283,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,628,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,33972,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.6,0.0,29.8,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,24,23.9704,0,0.0,0.0,0.0,0.0,336,-1,0.0,336.0,26,26.1413,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,224,,7,2100,0,Regular,Regular Gasoline,7,-1,29,29.3952,0,0.0,0.0,0.0,0.0,0,0,33973,0,22,Mitsubishi,Outlander Sport 4WD,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S6),30.695,0.0,41.2522,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,,,,,MTX +15.689436,0.0,0.0,0.0,19,18.9394,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.3345,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,592,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.235,0,0.0,0.0,0.0,0.0,0,0,33974,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.8288,0.0,35.2038,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,491,-1,0.0,491.0,18,18.0451,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,22,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.266,0,0.0,0.0,0.0,0.0,0,0,33975,0,0,Subaru,Tribeca AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.0,0.0,29.5,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,FJX +14.327048,0.0,0.0,0.0,20,20.3813,0,0.0,0.0,0.0,0.0,394,-1,0.0,394.0,23,22.5097,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,79,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,26,25.8032,0,0.0,0.0,0.0,0.0,0,0,33976,0,0,Volkswagen,Tiguan 4motion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7719,0.0,36.0257,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,T,,,,,,VWX +17.337486000000002,4.994,0.0,0.0,17,17.4938,13,13.2131,0.0,0.0,0.0,456,431,431.0,456.0,19,19.4011,15,14.6755,0.0,0.0,0.0,6,3.5,4-Wheel Drive,821,SIDI; FFV,4,3150,3050,Premium or E85,Premium Gasoline,4,5,22,22.3839,17,16.9713,0.0,0.0,0.0,0,0,33977,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.9,16.3,31.1,23.4,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,,FFV,E85,370,,MBX +17.337486000000002,0.0,0.0,0.0,17,17.0411,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2048,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,73,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.7325,0,0.0,0.0,0.0,0.0,0,0,33978,0,0,Volkswagen,Touareg,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),21.3,0.0,31.6,0.0,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,,,,,,VWX +14.964294,4.679378,0.0,0.0,19,18.7687,14,13.8379,0.0,0.0,0.0,399,384,384.0,399.0,22,22.2236,16,16.2003,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,5,SIDI; FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.6751,20,20.472,0.0,0.0,0.0,0,0,33979,0,19,Chevrolet,Impala,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,17.4,40.2,28.7,Large Cars,2014,-500,,,,,FFV,E85,300,,GMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3398,0,18,Dodge,Lancer,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Midsize Cars,1987,500,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,26.5165,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.6789,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,44,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7431,0,0.0,0.0,0.0,0.0,0,0,33980,0,0,MINI,Cooper Clubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.2637,0.0,49.134,0.0,Two Seaters,2014,2000,,,,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.7582,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,30.9508,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,40,,8,1950,0,Premium,Premium Gasoline,8,-1,36,36.0133,0,0.0,0.0,0.0,0.0,0,0,33981,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),36.0278,0.0,51.0239,0.0,Two Seaters,2014,2250,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3967,0,0.0,0.0,0.0,0.0,273,-1,0.0,273.0,32,32.4686,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,41,,8,1900,0,Premium,Premium Gasoline,8,-1,37,37.2228,0,0.0,0.0,0.0,0.0,0,0,33982,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.3797,0.0,52.8301,0.0,Two Seaters,2014,2500,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.5165,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.6789,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7431,0,0.0,0.0,0.0,0.0,0,0,33983,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.2637,0.0,49.134,0.0,Two Seaters,2014,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,53,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33984,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,51,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33985,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,71,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33986,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,73,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33987,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.8201,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5642,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,56,,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.2405,0,0.0,0.0,0.0,0.0,0,0,33988,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6688,0.0,36.6591,0.0,Two Seaters,2014,-1750,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,17.841,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.6647,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,57,,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.6209,0,0.0,0.0,0.0,0.0,0,0,33989,7,0,Nissan,370Z,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.3615,0.0,35.7619,0.0,Two Seaters,2014,-2250,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3399,0,18,Dodge,Lancer,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1987,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,18.1585,0,0.0,0.0,0.0,0.0,431,-1,0.0,431.0,21,20.6577,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,58,,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.8355,0,0.0,0.0,0.0,0.0,0,0,33990,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.7845,0.0,34.6268,0.0,Two Seaters,2014,-2250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.4109,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,20.0458,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,59,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.5952,0,0.0,0.0,0.0,0.0,0,0,33991,4,0,Nissan,370Z Roadster,N,false,52,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.79,0.0,34.2801,0.0,Two Seaters,2014,-3000,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,26.5165,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.6789,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,36,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7431,0,0.0,0.0,0.0,0.0,0,0,33992,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.2637,0.0,49.134,0.0,Minicompact Cars,2014,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33993,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Minicompact Cars,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,79,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,0,0,33994,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Minicompact Cars,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,26.5165,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.6789,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,34,,8,2000,0,Premium,Premium Gasoline,8,-1,35,34.7431,0,0.0,0.0,0.0,0.0,9,80,33995,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.2637,0.0,49.134,0.0,Subcompact Cars,2014,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,9,80,33996,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Subcompact Cars,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.1961,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,30,29.5421,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,75,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.0071,0,0.0,0.0,0.0,0.0,9,80,33997,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.8111,0.0,49.5262,0.0,Subcompact Cars,2014,2000,,,T,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,27,27.1769,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,31,30.8439,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,416,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.9352,0,0.0,0.0,0.0,0.0,23,90,33998,0,13,Ford,Focus FWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),35.2,0.0,52.4,0.0,Compact Cars,2014,3000,,,,,,,,,FMX +10.613442000000001,0.0,0.0,0.0,27,27.1412,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,31,30.8094,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,417,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.9057,0,0.0,0.0,0.0,0.0,23,90,33999,0,13,Ford,Focus FWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),35.1493,0.0,52.356,0.0,Compact Cars,2014,3000,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,62001,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,34,0,0,TVR Engineering Ltd,TVR 280i Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,30.0,0.0,Two Seaters,1985,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,340,0,15,Mercedes-Benz,380SE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,23.0,0.0,Compact Cars,1985,-6250,T,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3400,0,18,Dodge,Lancer,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,25.9755,0,0.0,0.0,0.0,0.0,300,-1,0.0,300.0,30,29.5716,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,418,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.5945,0,0.0,0.0,0.0,0.0,23,90,34000,0,13,Ford,Focus FWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.5,0.0,50.4,0.0,Compact Cars,2014,2750,,,,,,,,,FMX +12.657024,0.0,0.0,0.0,23,23.1075,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3734,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,424,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,32,31.8805,0,0.0,0.0,0.0,0.0,23,90,34001,0,13,Ford,Focus FWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.5,0.0,44.9,0.0,Compact Cars,2014,1500,,,T,,,,,,FMX +10.987,3.256088,0.0,0.0,26,26.4715,20,19.6601,0.0,0.0,0.0,292,277,277.0,292.0,30,30.3798,23,22.5701,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,412,SIDI; FFV,8,1850,2000,Gasoline or E85,Regular Gasoline,8,8,37,37.0689,28,27.5551,0.0,0.0,0.0,23,90,34002,0,13,Ford,Focus FWD FFV,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),34.2,25.4,52.6,39.1,Compact Cars,2014,2750,,,,,FFV,E85,285,,FMX +10.987,3.256088,0.0,0.0,26,26.4616,20,19.6608,0.0,0.0,0.0,292,277,277.0,292.0,30,30.3626,23,22.5635,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,413,SIDI; FFV,8,1850,2000,Gasoline or E85,Regular Gasoline,8,8,37,37.036,28,27.5316,0.0,0.0,0.0,23,90,34003,0,13,Ford,Focus FWD FFV,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (S6),34.186,25.4,52.5508,39.0649,Compact Cars,2014,2750,,,,,FFV,E85,285,,FMX +10.987,3.400914,0.0,0.0,26,25.9045,19,19.3896,0.0,0.0,0.0,300,284,284.0,300.0,30,29.5417,22,21.98,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,415,SIDI; FFV,8,1850,2050,Gasoline or E85,Regular Gasoline,8,8,36,35.6616,26,26.2696,0.0,0.0,0.0,23,90,34004,0,13,Ford,Focus FWD FFV,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.4,25.0,50.5,37.2,Compact Cars,2014,2750,,,,,FFV,E85,273,,FMX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,16,87,34005,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2014,750,,,,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,42,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,14,87,34006,0,0,MINI,Cooper Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2014,750,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,60,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,16,87,34007,0,0,MINI,Cooper S Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2014,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,61,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,32,32.2876,0,0.0,0.0,0.0,0.0,16,87,34008,0,0,MINI,Cooper S Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2014,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.41,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1109,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,62,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3975,0,0.0,0.0,0.0,0.0,16,87,34009,0,0,MINI,Cooper S Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.918,0.0,42.7201,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2424,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3401,0,18,Dodge,Lancer,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,24.8319,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.256,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,63,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9486,0,0.0,0.0,0.0,0.0,16,87,34010,0,0,MINI,Cooper S Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8952,0.0,43.5291,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,64,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,14,87,34011,0,0,MINI,Cooper S Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2014,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,65,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,32,32.2876,0,0.0,0.0,0.0,0.0,14,87,34012,0,0,MINI,Cooper S Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2014,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.41,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1109,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,66,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3975,0,0.0,0.0,0.0,0.0,14,87,34013,0,0,MINI,Cooper S Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.918,0.0,42.7201,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.8319,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.256,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,67,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9486,0,0.0,0.0,0.0,0.0,14,87,34014,0,0,MINI,Cooper S Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8952,0.0,43.5291,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.41,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1109,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,82,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3975,0,0.0,0.0,0.0,0.0,16,87,34015,0,0,MINI,JCW Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.918,0.0,42.7201,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.8319,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.256,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,83,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9486,0,0.0,0.0,0.0,0.0,16,87,34016,0,0,MINI,JCW Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8952,0.0,43.5291,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.41,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1109,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,84,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3975,0,0.0,0.0,0.0,0.0,14,87,34017,0,0,MINI,JCW Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.918,0.0,42.7201,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.8319,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,27,27.256,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,85,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9486,0,0.0,0.0,0.0,0.0,14,87,34018,0,0,MINI,JCW Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.8952,0.0,43.5291,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,562,-1,0.0,562.0,16,15.8644,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,381,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.9162,0,0.0,0.0,0.0,0.0,0,0,34019,0,0,Infiniti,QX80 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.8,0.0,27.5748,0.0,Standard Sport Utility Vehicle 2WD,2014,-6750,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3402,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,13.5231,0,0.0,0.0,0.0,0.0,566,-1,0.0,566.0,16,15.7239,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,382,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,19.6281,0,0.0,0.0,0.0,0.0,0,0,34020,0,0,Infiniti,QX80 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),16.7,0.0,27.1649,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,23,22.6723,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.2804,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,232,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,32.6265,0,0.0,0.0,0.0,0.0,0,0,34021,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,28.9,0.0,46.0,0.0,Two Seaters,2014,500,,,T,,,,,,MBX +12.657024,0.0,0.0,0.0,22,22.4541,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.04,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,233,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,32,32.3554,0,0.0,0.0,0.0,0.0,0,0,34022,0,0,Mercedes-Benz,SLK250,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.6,0.0,45.6,0.0,Two Seaters,2014,500,,,T,,,,,,MBX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,24.1117,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,236,,6,2500,0,Premium,Premium Gasoline,6,-1,29,28.949,0,0.0,0.0,0.0,0.0,0,0,34023,0,0,Mercedes-Benz,SLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,26.8851,0.0,40.5697,0.0,Two Seaters,2014,-500,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,270,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34024,0,0,Mercedes-Benz,SLS AMG Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2014,-8000,G,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,271,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34025,0,0,Mercedes-Benz,SLS AMG Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2014,-8000,G,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,273,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34026,0,0,Mercedes-Benz,SLS AMG GT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2014,-8000,G,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,-1,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,274,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34027,0,0,Mercedes-Benz,SLS AMG GT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2014,-8000,G,,,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,0,0,34028,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Two Seaters,2014,2250,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,50,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34029,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3403,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,52,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34030,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,70,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34031,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,72,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34032,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Two Seaters,2014,2000,,,T,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,37,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,0,0,34033,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Minicompact Cars,2014,2250,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,58,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34034,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Minicompact Cars,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,78,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,0,0,34035,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Minicompact Cars,2014,2000,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.3106,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,116,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.0617,0,0.0,0.0,0.0,0.0,0,0,34036,5,0,Porsche,911 Carrera 4S Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.3,0.0,36.4,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,353,-1,0.0,353.0,25,25.0794,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,102,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,34037,12,0,Mercedes-Benz,C250 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.3,0.0,44.3,0.0,Subcompact Cars,2014,0,,,T,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.2131,0,0.0,0.0,0.0,0.0,578,-1,0.0,578.0,15,15.3988,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,109,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,34038,0,12,Mercedes-Benz,C63 AMG Coupe,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,26.7,0.0,Subcompact Cars,2014,-8000,G,,,,,,,,MBX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.2711,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,111,,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34039,12,0,Mercedes-Benz,C350 4matic Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.4649,0.0,37.8511,0.0,Subcompact Cars,2014,-1750,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3404,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,20.1596,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1641,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,112,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.3235,0,0.0,0.0,0.0,0.0,0,0,34040,12,0,Mercedes-Benz,C350 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.3,0.0,40.0,0.0,Subcompact Cars,2014,-1000,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,431,-1,0.0,431.0,21,20.6651,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,132,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.3377,0,0.0,0.0,0.0,0.0,0,0,34041,11,0,Mercedes-Benz,E550 Coupe,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.0,0.0,36.8,0.0,Subcompact Cars,2014,-2250,,,T,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,9,80,34042,0,0,MINI,Cooper Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Subcompact Cars,2014,2250,,,,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,9,80,34043,0,0,MINI,Cooper S Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Subcompact Cars,2014,2000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,26,26.3273,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,30,29.6883,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,74,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.1769,0,0.0,0.0,0.0,0.0,9,80,34044,0,0,MINI,John Cooper Works Clubman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.9963,0.0,49.7787,0.0,Subcompact Cars,2014,2000,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,21,21.2156,0,0.0,0.0,0.0,0.0,378,-1,0.0,378.0,23,23.4701,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,100,,6,2400,0,Regular,Regular Gasoline,6,-1,27,26.9734,0,0.0,0.0,0.0,0.0,0,0,34045,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.4827,0.0,37.7774,0.0,Subcompact Cars,2014,0,,,,,,,,,VWX +11.75609,0.0,0.0,0.0,24,23.5123,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.857,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,320,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,36,35.9837,0,0.0,0.0,0.0,0.0,0,0,34046,0,13,BMW,320i,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),30.0597,0.0,50.9798,0.0,Compact Cars,2014,1250,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,22.9284,0,0.0,0.0,0.0,0.0,329,-1,0.0,329.0,27,27.1247,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,322,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,35,34.9405,0,0.0,0.0,0.0,0.0,0,0,34047,0,13,BMW,320i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),29.2529,0.0,49.4272,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,21.6153,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.4483,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,335,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.4901,0,0.0,0.0,0.0,0.0,0,0,34048,0,13,BMW,335i,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),27.4506,0.0,45.7986,0.0,Compact Cars,2014,0,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.1009,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,24,23.6886,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,339,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.2983,0,0.0,0.0,0.0,0.0,0,0,34049,0,13,BMW,335i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),25.3925,0.0,42.5746,0.0,Compact Cars,2014,-500,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3261,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3405,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Midsize Cars,1987,-1750,,,,,,,,, +10.318995000000001,0.0,0.0,0.0,32,31.5936,0,0.0,0.0,0.0,0.0,279,-1,0.0,279.0,37,36.5226,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,345,,9,1600,0,Diesel,Diesel,8,-1,45,45.1274,0,0.0,0.0,0.0,0.0,0,0,34050,0,13,BMW,328d,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),41.5772,0.0,64.7919,0.0,Compact Cars,2014,4000,,,T,,Diesel,,,,BMX +10.905012000000001,0.0,0.0,0.0,31,30.8971,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,35,35.2417,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,346,,9,1700,0,Diesel,Diesel,8,-1,43,42.5555,0,0.0,0.0,0.0,0.0,0,0,34051,0,13,BMW,328d xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),40.558,0.0,60.8695,0.0,Compact Cars,2014,3500,,,T,,Diesel,,,,BMX +20.589638,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,558,-1,0.0,558.0,16,15.8647,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,325,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8082,0,0.0,0.0,0.0,0.0,0,0,34052,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,26.0,0.0,Compact Cars,2014,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.8893,0,0.0,0.0,0.0,0.0,630,-1,0.0,630.0,14,14.0546,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,329,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.0789,0,0.0,0.0,0.0,0.0,0,0,34053,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6011,0.0,24.9661,0.0,Compact Cars,2014,-9500,G,,,S,,,,,GMX +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,366,,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,34054,0,12,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Compact Cars,2014,3750,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.5393,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,373,,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.6005,0,0.0,0.0,0.0,0.0,0,0,34055,0,12,Chevrolet,Sonic,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),34.8,0.0,51.9,0.0,Compact Cars,2014,3000,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,27,27.0361,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,30,29.7736,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,418,,8,1850,0,Regular,Regular Gasoline,8,-1,34,33.9787,0,0.0,0.0,0.0,0.0,0,0,34056,0,12,Chevrolet,Sonic RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.0,0.0,48.0,0.0,Compact Cars,2014,2750,,,T,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.2949,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,425,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.7762,0,0.0,0.0,0.0,0.0,0,0,34057,0,12,Chevrolet,Sonic RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,47.7,0.0,Compact Cars,2014,2250,,,T,,,,,,GMX +9.976196,3.256088,0.0,0.0,28,28.0188,20,19.6286,0.0,0.0,0.0,273,277,277.0,273.0,33,32.5001,23,22.5915,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,414,SIDI; FFV,8,1650,2000,Gasoline or E85,Regular Gasoline,8,8,40,40.3967,28,27.7026,0.0,0.0,0.0,23,90,34058,0,13,Ford,Focus SFE FWD FFV,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),36.4,25.5,57.6,39.5,Compact Cars,2014,3750,,,,,FFV,E85,285,,FMX +10.613442000000001,0.0,0.0,0.0,29,28.9917,0,0.0,0.0,0.0,0.0,277,-1,0.0,277.0,31,32.0142,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,142,,8,1950,0,Premium,Premium Gasoline,8,-1,36,36.6839,0,0.0,0.0,0.0,0.0,0,0,34059,0,9,Infiniti,Q50 Hybrid,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),37.7958,0.0,52.0327,0.0,Compact Cars,2014,2250,,,,,Hybrid,,,346V Li-Ion,NSX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3260,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3406,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1987,500,,SIL,,,,,,, +10.987,0.0,0.0,0.0,28,28.1584,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.4731,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,143,,8,2000,0,Premium,Premium Gasoline,8,-1,34,33.8766,0,0.0,0.0,0.0,0.0,0,0,34060,0,9,Infiniti,Q50S Hybrid,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),36.5997,0.0,47.8487,0.0,Compact Cars,2014,2000,,,,,Hybrid,,,346V Li-Ion,NSX +10.987,0.0,0.0,0.0,28,27.9099,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,30,30.8215,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,144,,8,2000,0,Premium,Premium Gasoline,8,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,34061,0,9,Infiniti,Q50 Hybrid AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),36.2444,0.0,50.0,0.0,Compact Cars,2014,2000,,,,,Hybrid,,,346V Li-Ion,NSX +11.75609,0.0,0.0,0.0,27,26.8586,0,0.0,0.0,0.0,0.0,311,-1,0.0,311.0,28,28.5751,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,145,,7,2150,0,Premium,Premium Gasoline,7,-1,31,30.9963,0,0.0,0.0,0.0,0.0,0,0,34062,0,9,Infiniti,Q50S Hybrid AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S7),34.7482,0.0,43.5991,0.0,Compact Cars,2014,1250,,,,,Hybrid,,,346V Li-Ion,NSX +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,352,-1,0.0,352.0,25,25.1341,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,101,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,34063,0,12,Mercedes-Benz,C250,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,27.4,0.0,44.3,0.0,Compact Cars,2014,0,,,T,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.2131,0,0.0,0.0,0.0,0.0,578,-1,0.0,578.0,15,15.3988,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,108,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.3011,0,0.0,0.0,0.0,0.0,0,0,34064,0,12,Mercedes-Benz,C63 AMG,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.3,0.0,26.7,0.0,Compact Cars,2014,-8000,G,,,,,,,,MBX +23.534154,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,638,-1,0.0,638.0,14,13.9015,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,214,,2,4300,0,Premium,Premium Gasoline,2,-1,18,17.9616,0,0.0,0.0,0.0,0.0,0,0,34065,14,0,Mercedes-Benz,CL600,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.4007,0.0,24.8436,0.0,Compact Cars,2014,-9500,G,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,12,12.2258,0,0.0,0.0,0.0,0.0,617,-1,0.0,617.0,14,14.3766,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,218,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.3146,0,0.0,0.0,0.0,0.0,0,0,34066,14,0,Mercedes-Benz,CL65 AMG,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.0315,0.0,25.2915,0.0,Compact Cars,2014,-9500,G,,T,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,39,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,16,87,34067,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Compact Cars,2014,2250,,,,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,43,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,14,87,34068,0,0,MINI,Cooper Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Compact Cars,2014,2250,,,,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.0923,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,25.8824,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,98,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.3667,0,0.0,0.0,0.0,0.0,15,94,34069,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.079,0.0,41.9473,0.0,Compact Cars,2014,1500,,,,,,,,,VWX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3407,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1987,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.2726,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7236,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,99,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5657,0,0.0,0.0,0.0,0.0,15,85,34070,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.3682,0.0,39.0016,0.0,Compact Cars,2014,1000,,,,,,,,,VWX +13.1844,0.0,0.0,0.0,22,21.7373,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.0221,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,102,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.6904,0,0.0,0.0,0.0,0.0,15,85,34071,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4371,0.0,42.9104,0.0,Compact Cars,2014,1000,,,,,,,,,VWX +12.19557,0.0,0.0,0.0,23,22.9727,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.7794,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,528,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5804,0,0.0,0.0,0.0,0.0,0,0,34072,0,14,BMW,528i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),29.314,0.0,47.41,0.0,Midsize Cars,2014,750,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.8934,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.5426,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,535,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.3465,0,0.0,0.0,0.0,0.0,0,0,34073,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1122,0.0,42.6454,0.0,Midsize Cars,2014,-500,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,558,-1,0.0,558.0,16,15.8647,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,322,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8082,0,0.0,0.0,0.0,0.0,0,0,34074,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,26.0,0.0,Midsize Cars,2014,-6750,G,,,S,,,,,GMX +20.589638,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,558,-1,0.0,558.0,16,15.8647,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,324,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8082,0,0.0,0.0,0.0,0.0,0,0,34075,0,16,Cadillac,CTS V,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,26.0,0.0,Midsize Cars,2014,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.8893,0,0.0,0.0,0.0,0.0,630,-1,0.0,630.0,14,14.0546,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,326,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.0789,0,0.0,0.0,0.0,0.0,0,0,34076,15,15,Cadillac,CTS,N,false,99,99,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6011,0.0,24.9661,0.0,Midsize Cars,2014,-9500,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.8893,0,0.0,0.0,0.0,0.0,630,-1,0.0,630.0,14,14.0546,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,328,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.0789,0,0.0,0.0,0.0,0.0,0,0,34077,0,16,Cadillac,CTS V,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6011,0.0,24.9661,0.0,Midsize Cars,2014,-9500,G,,,S,,,,,GMX +10.987,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.2989,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,309,,8,1850,0,Regular,Regular Gasoline,8,-1,38,37.6703,0,0.0,0.0,0.0,0.0,0,0,34078,0,16,Chevrolet,Cruze,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,53.5,0.0,Midsize Cars,2014,2750,,,T,,,,,,GMX +9.976196,0.0,0.0,0.0,28,28.0887,0,0.0,0.0,0.0,0.0,269,-1,0.0,269.0,33,33.0404,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,312,,8,1650,0,Regular,Regular Gasoline,8,-1,42,42.1145,0,0.0,0.0,0.0,0.0,0,0,34079,0,16,Chevrolet,Cruze Eco,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.5,0.0,60.2,0.0,Midsize Cars,2014,3750,,,T,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3408,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +9.976196,0.0,0.0,0.0,29,28.5076,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.7003,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,367,,8,1650,0,Regular,Regular Gasoline,8,-1,40,39.8665,0,0.0,0.0,0.0,0.0,0,0,34080,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.1,0.0,56.8,0.0,Midsize Cars,2014,3750,,,T,,,,,,GMX +10.613442000000001,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.5393,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,374,,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.6005,0,0.0,0.0,0.0,0.0,0,0,34081,0,19,Chevrolet,Sonic 5,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),34.8,0.0,51.9,0.0,Midsize Cars,2014,3000,,,T,,,,,,GMX +10.987,0.0,0.0,0.0,27,27.0361,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,30,29.7736,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,417,,8,1850,0,Regular,Regular Gasoline,8,-1,34,33.9787,0,0.0,0.0,0.0,0.0,0,0,34082,0,19,Chevrolet,Sonic 5 RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.0,0.0,48.0,0.0,Midsize Cars,2014,2750,,,T,,,,,,GMX +11.75609,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.2949,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,424,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.7762,0,0.0,0.0,0.0,0.0,0,0,34083,0,19,Chevrolet,Sonic 5 RS,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,47.7,0.0,Midsize Cars,2014,2250,,,T,,,,,,GMX +11.75609,0.0,0.0,0.0,23,23.1982,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5057,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,230,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,36,35.5806,0,0.0,0.0,0.0,0.0,0,0,34084,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),29.6252,0.0,50.3793,0.0,Midsize Cars,2014,2250,,,T,,,,,,FMX +11.360558000000001,0.0,0.0,0.0,25,25.2491,0,0.0,0.0,0.0,0.0,303,-1,0.0,303.0,29,29.4046,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,308,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,36.809,0,0.0,0.0,0.0,0.0,0,0,34085,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.4791,0.0,52.2114,0.0,Midsize Cars,2014,2500,,,T,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.7175,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.2143,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,309,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.3921,0,0.0,0.0,0.0,0.0,0,0,34086,0,16,Ford,Fusion AWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5903,0.0,44.181,0.0,Midsize Cars,2014,1000,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1802,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,310,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,33.0327,0,0.0,0.0,0.0,0.0,0,0,34087,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,46.6,0.0,Midsize Cars,2014,1500,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.2328,0,0.0,0.0,0.0,0.0,339,-1,0.0,339.0,26,26.2152,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,313,,7,2100,0,Regular,Regular Gasoline,7,-1,34,33.5632,0,0.0,0.0,0.0,0.0,0,0,34088,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),28.296,0.0,47.3846,0.0,Midsize Cars,2014,1500,,,,,,,,,FMX +4.181064109756098,3.2961,0.0,2.5,44,44.2254,108,107.9814,0.0,31.0,0.5,110,-1,0.0,110.0,43,42.7418,100,99.995,34.0,0.0,0.48,4,2.0,Front-Wheel Drive,316,PHEV,10,1300,0,Regular Gas and Electricity,Regular Gasoline,10,-1,41,41.0585,92,91.7052,0.0,37.0,0.44,0,0,34089,0,8,Ford,Fusion Energi Plug-in Hybrid,N,true,0,103,0,0.0,23.086,0.0,19.709,Automatic (variable gear ratios),61.0,154.3,58.6,131.0,Midsize Cars,2014,7250,,,,,Plug-in Hybrid,Electricity,21,68 kW,FMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3409,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,18.9532,0,0.0,0.0,0.0,0.0,387,-1,0.0,387.0,23,22.7545,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,254,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.9574,0,0.0,0.0,0.0,0.0,0,0,34091,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),24.1,0.0,40.1,0.0,Midsize Cars,2014,-1000,,,T,,,,,,JLX +13.1844,0.0,0.0,0.0,22,21.7175,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.2143,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,311,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.3921,0,0.0,0.0,0.0,0.0,0,0,34092,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),27.5903,0.0,44.181,0.0,Midsize Cars,2014,1000,,,T,,,,,,FMX +12.657024,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.1802,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,312,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,33,33.0327,0,0.0,0.0,0.0,0.0,0,0,34093,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,46.6,0.0,Midsize Cars,2014,1500,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.9451,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.7082,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,317,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.509,0,0.0,0.0,0.0,0.0,0,0,34094,0,16,Lincoln,MKZ AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5,0.0,35.6,0.0,Midsize Cars,2014,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.7504,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,318,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.5771,0,0.0,0.0,0.0,0.0,0,0,34095,0,16,Lincoln,MKZ FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,38.6,0.0,Midsize Cars,2014,-500,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,20,20.1009,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,24,23.6886,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,343,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.2983,0,0.0,0.0,0.0,0.0,25,102,34096,0,0,BMW,335i xDrive Gran Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.3925,0.0,42.5746,0.0,Large Cars,2014,-500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.4073,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.3322,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,541,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.4734,0,0.0,0.0,0.0,0.0,0,0,34097,0,10,BMW,535i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),23.1166,0.0,36.9968,0.0,Large Cars,2014,-2250,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,19.1183,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,22.48,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,740,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,28.6335,0,0.0,0.0,0.0,0.0,0,0,34098,0,14,BMW,740i,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),24.0688,0.0,40.1394,0.0,Large Cars,2014,-1750,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,19.1183,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,22.48,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,741,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,28.6335,0,0.0,0.0,0.0,0.0,0,0,34099,0,14,BMW,740Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),24.0688,0.0,40.1394,0.0,Large Cars,2014,-1750,,,T,,,,,,BMX +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,341,15,0,Mercedes-Benz,500SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Compact Cars,1985,-9250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3410,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize Cars,1987,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,13,13.4068,0,0.0,0.0,0.0,0.0,548,-1,0.0,548.0,16,16.2618,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,30,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,22,21.9835,0,0.0,0.0,0.0,0.0,0,0,34100,0,19,Maserati,Quattroporte GTS,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 8-spd,16.5498,0.0,30.5264,0.0,Large Cars,2014,-6750,G,,T,,,,,,MAX +10.905012000000001,0.0,0.0,0.0,31,30.8971,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,35,35.2417,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,348,,9,1700,0,Diesel,Diesel,8,-1,43,42.5555,0,0.0,0.0,0.0,0.0,0,0,34101,0,28,BMW,328d xDrive Sports Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),40.558,0.0,60.8695,0.0,Small Station Wagons,2014,3500,,,T,,Diesel,,,,BMX +20.589638,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,558,-1,0.0,558.0,16,15.8647,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,323,,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.8082,0,0.0,0.0,0.0,0.0,0,0,34102,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.4,0.0,26.0,0.0,Small Station Wagons,2014,-6750,G,,,S,,,,,GMX +23.534154,0.0,0.0,0.0,12,11.8893,0,0.0,0.0,0.0,0.0,630,-1,0.0,630.0,14,14.0546,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,327,,2,4300,0,Premium,Premium Gasoline,2,-1,18,18.0789,0,0.0,0.0,0.0,0.0,0,0,34103,0,29,Cadillac,CTS Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6011,0.0,24.9661,0.0,Small Station Wagons,2014,-9500,G,,,S,,,,,GMX +12.657024,0.0,0.0,0.0,23,23.0923,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,25.8824,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,97,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.3667,0,0.0,0.0,0.0,0.0,0,0,34104,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),27.079,0.0,41.9473,0.0,Small Station Wagons,2014,1500,,,,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.5184,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3496,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,101,,7,2100,0,Regular,Regular Gasoline,7,-1,33,33.2675,0,0.0,0.0,0.0,0.0,0,0,34105,0,33,Volkswagen,Jetta SportWagen,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.2086,0.0,44.0648,0.0,Small Station Wagons,2014,1500,,,,,,,,,VWX +16.4805,5.348574,0.0,0.0,18,17.5172,12,12.1997,0.0,0.0,0.0,449,457,457.0,449.0,20,19.8066,14,13.7869,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,527,SIDI; FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,4,24,23.5718,16,16.3936,0.0,0.0,0.0,0,0,34106,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9311,15.2738,32.8059,22.8157,Standard Pickup Trucks 2WD,2014,-1750,,,,,FFV,E85,360/480,,GMX +16.4805,5.348574,0.0,0.0,18,17.5138,12,12.197,0.0,0.0,0.0,449,457,457.0,449.0,20,19.8037,14,13.7846,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,528,SIDI; FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,4,24,23.5702,16,16.3924,0.0,0.0,0.0,0,0,34107,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9265,15.2701,32.8036,22.814,Standard Pickup Trucks 2WD,2014,-1750,,,,,FFV,E85,360/480,,GMX +19.381068,0.0,0.0,0.0,15,14.9164,0,0.0,0.0,0.0,0.0,514,-1,0.0,514.0,17,17.3108,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,567,,3,3400,0,Midgrade,Midgrade Gasoline,3,-1,22,21.5359,0,0.0,0.0,0.0,0.0,0,0,34108,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5085,0.0,29.8859,0.0,Standard Pickup Trucks 2WD,2014,-5000,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,16.9277,0,0.0,0.0,0.0,0.0,449,-1,0.0,449.0,20,19.7436,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,931,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.7822,0,0.0,0.0,0.0,0.0,0,0,34109,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1499,0.0,34.5499,0.0,Standard Pickup Trucks 2WD,2014,-1750,,,,,,,,,CRX +19.109250000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20051,"(DSL,TRBO) (NO-CAT)",-1,2950,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3411,0,15,Mercedes-Benz,300SDL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,29.0,0.0,Midsize Cars,1987,-2750,,,T,,Diesel,,,, +16.4805,5.348574,0.0,0.0,17,16.9277,12,12.1231,0.0,0.0,0.0,449,449,449.0,449.0,20,19.7436,14,14.0171,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,932,FFV,5,2750,3250,Gasoline or E85,Regular Gasoline,5,5,25,24.7822,17,17.3253,0.0,0.0,0.0,0,0,34110,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1499,14.9,34.5499,23.9,Standard Pickup Trucks 2WD,2014,-1750,,,,,FFV,E85,364/448,,CRX +17.337486000000002,5.758082,0.0,0.0,17,16.6303,12,11.5901,0.0,0.0,0.0,475,478,478.0,475.0,19,18.7419,13,13.0497,0.0,0.0,0.0,6,4.3,4-Wheel Drive,651,SIDI; FFV,4,2900,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.1847,15,15.4238,0.0,0.0,0.0,0,0,34111,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7571,14.4662,30.8146,21.4237,Standard Pickup Trucks 4WD,2014,-2500,,,,,FFV,E85,340/440,,GMX +17.337486000000002,5.758082,0.0,0.0,17,16.6534,12,11.6061,0.0,0.0,0.0,474,479,479.0,474.0,19,18.7574,13,13.0581,0.0,0.0,0.0,6,4.3,4-Wheel Drive,652,SIDI; FFV,4,2900,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.1827,15,15.4151,0.0,0.0,0.0,0,0,34112,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.7875,14.4873,30.8117,21.4116,Standard Pickup Trucks 4WD,2014,-2500,,,,,FFV,E85,340/440,,GMX +21.974,0.0,0.0,0.0,13,13.3681,0,0.0,0.0,0.0,0.0,582,-1,0.0,582.0,15,15.283,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,568,,2,3850,0,Midgrade,Midgrade Gasoline,2,-1,19,18.5262,0,0.0,0.0,0.0,0.0,0,0,34113,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,16.5,0.0,25.6,0.0,Standard Pickup Trucks 4WD,2014,-7250,,,,,,,,,CRX +17.337486000000002,5.758082,0.0,0.0,16,16.1,11,11.4966,0.0,0.0,0.0,474,476,476.0,474.0,19,18.7409,13,13.2218,0.0,0.0,0.0,6,3.6,4-Wheel Drive,936,FFV,4,2900,3500,Gasoline or E85,Regular Gasoline,4,4,23,23.4,16,16.1913,0.0,0.0,0.0,0,0,34114,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.1,14.1,32.5,22.3,Standard Pickup Trucks 4WD,2014,-2500,,,,,FFV,E85,338/416,,CRX +19.381068,0.0,0.0,0.0,15,14.61,0,0.0,0.0,0.0,0.0,528,-1,0.0,528.0,17,16.7808,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,938,,3,3400,0,Midgrade,Midgrade Gasoline,3,-1,21,20.5043,0,0.0,0.0,0.0,0.0,0,0,34115,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.1093,0.0,28.4127,0.0,Standard Pickup Trucks 4WD,2014,-5000,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,17.1,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.974,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,612,,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,34116,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.0,0.0,Minivan - 2WD,2014,-1750,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,17.1,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.974,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,615,,5,2750,0,Regular,Regular Gasoline,5,-1,25,25.0,0,0.0,0.0,0.0,0.0,0,0,34117,0,0,Dodge,Grand Caravan,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.4,0.0,35.0,0.0,Minivan - 2WD,2014,-1750,,,,,,,,,CRX +15.689436,4.994,0.0,0.0,18,17.7,13,12.7,0.0,0.0,0.0,432,427,427.0,432.0,21,20.5664,15,14.8,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,614,FFV,5,2600,3050,Gasoline or E85,Regular Gasoline,5,5,26,25.8,18,18.5,0.0,0.0,0.0,0,0,34118,0,0,Ram,C/V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.1,15.6,36.0,25.5,Minivan - 2WD,2014,-1000,,,,,FFV,E85,300,,CRX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,344,355,355.0,344.0,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,388,SIDI; FFV,7,2100,2550,Gasoline or E85,Regular Gasoline,7,6,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,34119,0,28,Chevrolet,Equinox FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2014,1500,,,,,FFV,E85,340,,GMX +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3412,0,15,Mercedes-Benz,420SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Midsize Cars,1987,-8000,T,,,,,,,, +14.327048,4.160002,0.0,0.0,20,22.3062,15,15.1089,0.0,0.0,0.0,344,355,355.0,344.0,23,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,389,SIDI; FFV,6,2400,2550,Gasoline or E85,Regular Gasoline,6,6,28,32.0502,22,21.7572,0.0,0.0,0.0,0,0,34120,0,10,Chevrolet,Captiva FWD,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2014,0,,,,,FFV,E85,300,,GMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,419,-1,0.0,419.0,21,21.2057,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,559,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7,0,0.0,0.0,0.0,0.0,0,0,34121,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3,0.0,35.9,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,CRX +17.337486000000002,5.348574,0.0,0.0,17,16.5112,12,15.2999,0.0,0.0,0.0,456,434,434.0,456.0,19,19.4959,14,18.5611,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,573,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,25,25.0247,18,25.1,0.0,0.0,0.0,0,0,34122,0,0,Dodge,Journey FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.6,15.5945,34.9,25.6117,Small Sport Utility Vehicle 2WD,2014,-2500,,,,,FFV,E85,287,,CRX +12.657024,4.160002,0.0,0.0,22,22.3062,15,15.1089,0.0,0.0,0.0,344,355,355.0,344.0,26,25.8416,18,17.5177,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,390,SIDI; FFV,7,2100,2550,Gasoline or E85,Regular Gasoline,7,6,32,32.0502,22,21.7572,0.0,0.0,0.0,0,0,34123,0,28,GMC,Terrain FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.3968,19.2343,45.1499,30.6499,Small Sport Utility Vehicle 2WD,2014,1500,,,,,FFV,E85,340,,GMX +15.689436,0.0,0.0,0.0,19,18.7819,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.2673,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,802,,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,34124,0,0,Mercedes-Benz,GLK350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,23.6177,0.0,35.4,0.0,Small Sport Utility Vehicle 2WD,2014,-2250,,,,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,16.2,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.8976,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,574,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.7,0,0.0,0.0,0.0,0.0,0,0,34125,0,0,Dodge,Journey AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.2,0.0,33.0,0.0,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.9033,0,0.0,0.0,0.0,0.0,505,-1,0.0,505.0,18,17.5436,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,617,,4,3050,0,Regular,Regular Gasoline,4,-1,20,20.0743,0,0.0,0.0,0.0,0.0,0,0,34126,0,0,Jeep,Wrangler Unlimited 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.8,0.0,27.8,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.5989,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,618,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,34127,0,0,Jeep,Wrangler Unlimited 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.5,0.0,28.7,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,17,16.6628,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,18,18.4134,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,627,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.126,0,0.0,0.0,0.0,0.0,0,0,34128,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.8,0.0,29.3,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,20,19.9,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.472,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,9,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,24,23.8,0,0.0,0.0,0.0,0.0,0,0,34129,0,0,Porsche,Cayenne S Hybrid,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,25.1,0.0,33.1,0.0,Standard Sport Utility Vehicle 4WD,2014,-2250,,,,S,Hybrid,,,288V Ni-MH,PRX +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3413,0,15,Mercedes-Benz,560SEL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,20.0,0.0,Midsize Cars,1987,-11250,T,,,,,,,, +0.192,0.0,0.0,3.6,110,110.048,0,0.0,0.0,31.0,0.0,0,-1,0.0,0.0,105,104.7587,0,0.0,32.0,0.0,0.0,,,Front-Wheel Drive,422,,10,600,0,Electricity,Electricity,10,-1,99,98.9461,0,0.0,0.0,34.0,0.0,23,90,34130,0,13,Ford,Focus Electric,N,false,0,90,76,79.7573,0.0,71.5259,0.0,Automatic (A1),157.2114,0.0,141.3516,0.0,Compact Cars,2014,9000,,,,,EV,,,107 kW AC PMSM,FMX +21.974,0.0,0.0,0.0,12,12.1186,0,0.0,0.0,0.0,0.0,607,-1,0.0,607.0,15,14.5305,0,0.0,0.0,0.0,0.0,10,8.4,Rear-Wheel Drive,314,,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.2014,0,0.0,0.0,0.0,0.0,0,0,34131,0,0,SRT,Viper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,14.4,0.0,25.0,0.0,Two Seaters,2014,-8000,G,,,,,,,,CRX +16.4805,0.0,0.0,0.0,18,17.703,0,0.0,0.0,0.0,0.0,435,-1,0.0,435.0,20,20.4578,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,74,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2625,0,0.0,0.0,0.0,0.0,0,0,34132,7,0,Infiniti,Q60 AWD Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1779,0.0,35.2436,0.0,Subcompact Cars,2014,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.5217,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,20.4073,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,54,,5,3000,0,Premium,Premium Gasoline,5,-1,26,25.55,0,0.0,0.0,0.0,0.0,0,0,34133,10,0,Infiniti,Q60 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.937,0.0,35.6593,0.0,Subcompact Cars,2014,-3000,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.4354,0,0.0,0.0,0.0,0.0,464,-1,0.0,464.0,19,19.1673,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,55,,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0541,0,0.0,0.0,0.0,0.0,0,0,34134,10,0,Infiniti,Q60 Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.5,0.0,33.5,0.0,Subcompact Cars,2014,-3750,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,19,18.769,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.7137,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,73,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.8654,0,0.0,0.0,0.0,0.0,0,0,34135,7,0,Infiniti,Q60 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic (S7),23.6004,0.0,37.5657,0.0,Subcompact Cars,2014,-1750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.3431,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,20.2027,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,72,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.3015,0,0.0,0.0,0.0,0.0,0,0,34136,7,0,Infiniti,Q60 Coupe,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.7,0.0,35.3,0.0,Subcompact Cars,2014,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,20.258,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,401,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.5677,0,0.0,0.0,0.0,0.0,0,0,34137,0,0,Mercedes-Benz,ML350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.8,0.0,32.8,0.0,Standard Sport Utility Vehicle 2WD,2014,-3000,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.447,0,0.0,0.0,0.0,0.0,587,-1,0.0,587.0,15,15.1099,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,423,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,18,17.8002,0,0.0,0.0,0.0,0.0,0,0,34138,0,0,Mercedes-Benz,GL550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.6,0.0,24.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-8000,,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,13,12.95,0,0.0,0.0,0.0,0.0,615,-1,0.0,615.0,14,14.4291,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,424,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,16.7703,0,0.0,0.0,0.0,0.0,0,0,34139,0,0,Mercedes-Benz,GL63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,16.4,0.0,24.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-9500,,,T,,,,,,MBX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3414,0,17,Mcevoy Motors,740 GLE Sedan,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,456,-1,0.0,456.0,19,19.4011,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,402,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,22,22.3839,0,0.0,0.0,0.0,0.0,0,0,34140,0,0,Mercedes-Benz,ML350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.9,0.0,31.1,0.0,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,13.0729,0,0.0,0.0,0.0,0.0,611,-1,0.0,611.0,15,14.5414,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,406,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,17,16.8556,0,0.0,0.0,0.0,0.0,0,0,34141,0,0,Mercedes-Benz,ML63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.1,0.0,24.4,0.0,Standard Sport Utility Vehicle 4WD,2014,-8000,,,T,,,,,,MBX +14.327048,0.0,0.0,0.0,20,19.9779,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4801,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,336,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.8826,0,0.0,0.0,0.0,0.0,0,0,34142,0,13,BMW,335i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2264,0.0,41.9655,0.0,Compact Cars,2014,-1000,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.9779,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4801,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,536,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.8826,0,0.0,0.0,0.0,0.0,0,0,34143,0,14,BMW,535i,N,false,0,102,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2264,0.0,41.9655,0.0,Midsize Cars,2014,-1000,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,19.0204,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.1959,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,742,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.8862,0,0.0,0.0,0.0,0.0,0,0,34144,0,14,BMW,740Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),23.9374,0.0,39.0499,0.0,Large Cars,2014,-1750,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,438,-1,0.0,438.0,20,20.2947,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,156,,5,3000,0,Premium,Premium Gasoline,5,-1,25,25.2323,0,0.0,0.0,0.0,0.0,0,0,34145,0,19,Infiniti,QX50,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.9,0.0,35.2,0.0,Small Station Wagons,2014,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.2931,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.9019,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,157,,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,34146,0,19,Infiniti,QX50 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.6337,0.0,34.0,0.0,Small Station Wagons,2014,-3000,,,,,,,,,NSX +10.613442000000001,0.0,0.0,0.0,28,27.578,0,0.0,0.0,0.0,0.0,291,-1,0.0,291.0,31,30.522,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,45,,8,1950,0,Premium,Premium Gasoline,8,-1,35,35.102,0,0.0,0.0,0.0,0.0,0,0,34147,0,0,MINI,Cooper Clubvan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.7708,0.0,49.6673,0.0,Two Seaters,2014,2250,,,,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.9664,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.0031,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,3,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.4719,0,0.0,0.0,0.0,0.0,0,0,34148,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.4739,0.0,34.6744,0.0,Minicompact Cars,2014,-2250,,,,,,,,,LTX +16.4805,0.0,0.0,0.0,17,17.3694,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,20,20.2797,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,4,,5,3000,0,Premium,Premium Gasoline,5,-1,26,25.5023,0,0.0,0.0,0.0,0.0,0,0,34149,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8037,0.0,33.7799,0.0,Minicompact Cars,2014,-3000,,,,S,,,,,LTX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3415,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,19.3033,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,22.3102,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,5,,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.5566,0,0.0,0.0,0.0,0.0,0,0,34150,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),23.358,0.0,37.8423,0.0,Minicompact Cars,2014,-1750,,,,,,,,,LTX +14.964294,0.0,0.0,0.0,19,18.5699,0,0.0,0.0,0.0,0.0,402,-1,0.0,402.0,22,21.9015,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,6,,5,2750,0,Premium,Premium Gasoline,5,-1,28,28.0527,0,0.0,0.0,0.0,0.0,0,0,34151,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4536,0.0,37.5581,0.0,Minicompact Cars,2014,-1750,,,,S,,,,,LTX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.5542,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,1,,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.7013,0,0.0,0.0,0.0,0.0,0,0,34152,7,0,Subaru,BRZ,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3,0.0,41.7,0.0,Minicompact Cars,2014,0,,,,,,,,,FJX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.9059,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,2,,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.5061,0,0.0,0.0,0.0,0.0,0,0,34153,7,0,Subaru,BRZ,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,47.3,0.0,Minicompact Cars,2014,1250,,,,,,,,,FJX +21.974,0.0,0.0,0.0,13,12.924,0,0.0,0.0,0.0,0.0,579,-1,0.0,579.0,15,15.4271,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,25,,2,4000,0,Premium,Premium Gasoline,2,-1,20,20.212,0,0.0,0.0,0.0,0.0,0,0,34154,5,0,Maserati,GranTurismo Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.9275,0.0,27.996,0.0,Subcompact Cars,2014,-8000,G,,,,,,,,MAX +12.19557,0.0,0.0,0.0,23,22.854,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.1972,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,300,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,35,35.4257,0,0.0,0.0,0.0,0.0,0,0,34155,0,13,BMW,328i,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),29.1503,0.0,50.1488,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.1741,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3533,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,301,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.2409,0,0.0,0.0,0.0,0.0,0,0,34156,0,13,BMW,328i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.2155,0.0,48.3887,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2981,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.1808,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,304,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2591,0,0.0,0.0,0.0,0.0,0,0,34157,0,13,BMW,328i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),28.3857,0.0,46.9347,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,27,27.4361,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,321,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,36,35.7948,0,0.0,0.0,0.0,0.0,0,0,34158,0,13,BMW,320i,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.4,0.0,50.6984,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.7018,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.8414,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,340,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.3662,0,0.0,0.0,0.0,0.0,0,0,34159,0,13,BMW,335i xDrive,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8538,0.0,39.7494,0.0,Compact Cars,2014,-1000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3416,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,18,18.2,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,21.9,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,,5,2500,0,Regular,Regular Gasoline,5,-1,29,29.2,0,0.0,0.0,0.0,0.0,0,0,34160,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.8,0.0,40.9,0.0,Compact Cars,2014,-500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3366,16,16.3577,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,43,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8705,21,21.056,0.0,0.0,0.0,0,0,34161,13,0,Chrysler,200 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Compact Cars,2014,-500,,,,,FFV,E85,275,,CRX +10.283832,0.0,0.0,0.0,29,29.2722,0,0.0,0.0,0.0,0.0,281,-1,0.0,281.0,32,31.62,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,20,,8,1700,0,Regular,Regular Gasoline,8,-1,35,35.0567,0,0.0,0.0,0.0,0.0,13,87,34162,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.2,0.0,49.6,0.0,Compact Cars,2014,3500,,,,,,,,,TKX +10.987,0.0,0.0,0.0,28,28.1586,0,0.0,0.0,0.0,0.0,292,-1,0.0,292.0,30,30.4858,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,21,,8,1850,0,Regular,Regular Gasoline,8,-1,34,33.9113,0,0.0,0.0,0.0,0.0,13,87,34163,0,0,Mazda,2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,36.6,0.0,47.9,0.0,Compact Cars,2014,2750,,,,,,,,,TKX +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,3,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,34164,11,0,Rolls-Royce,Phantom Drophead Coupe,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Compact Cars,2014,-9500,G,,,,,,,,RRG +11.75609,0.0,0.0,0.0,25,24.5714,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,28,27.9338,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,3,,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.544,0,0.0,0.0,0.0,0.0,0,0,34165,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.5315,0.0,47.3561,0.0,Compact Cars,2014,2250,,,,,,,,,FJX +10.987,0.0,0.0,0.0,27,26.7354,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.0801,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,5,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.5097,0,0.0,0.0,0.0,0.0,0,0,34166,0,12,Subaru,Impreza AWD,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.5736,0.0,50.2738,0.0,Compact Cars,2014,2750,,,,,,,,,FJX +7.317342,0.0,0.0,0.0,42,42.0354,0,0.0,0.0,0.0,0.0,200,-1,0.0,200.0,45,44.6144,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,105,SIDI,10,1350,0,Premium,Premium Gasoline,10,-1,48,48.231,0,0.0,0.0,0.0,0.0,0,0,34167,0,16,Volkswagen,Jetta Hybrid,N,false,0,94,0,0.0,0.0,0.0,0.0,Auto(AM-S7),57.5,0.0,65.3,0.0,Compact Cars,2014,5250,,,T,,Hybrid,,,220V Li-Ion,VWX +12.19557,0.0,0.0,0.0,24,24.093,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,27.2159,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,107,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,32.339,0,0.0,0.0,0.0,0.0,15,94,34168,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),29.6,0.0,42.9,0.0,Compact Cars,2014,750,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,21,21.0437,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5074,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,108,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,31,30.6792,0,0.0,0.0,0.0,0.0,15,94,34169,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,40.9,0.0,Compact Cars,2014,0,,,T,,,,,,VWX +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3417,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,22.2981,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.1808,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,530,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2591,0,0.0,0.0,0.0,0.0,0,0,34170,0,14,BMW,528i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.3857,0.0,46.9347,0.0,Midsize Cars,2014,500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.7919,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1301,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,537,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.1363,0,0.0,0.0,0.0,0.0,0,0,34171,0,14,BMW,535i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),24.9753,0.0,40.8737,0.0,Midsize Cars,2014,-1000,,,T,,,,,,BMX +12.739500000000001,0.0,0.0,0.0,26,25.7837,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,30,30.2158,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,543,,8,2000,0,Diesel,Diesel,7,-1,38,38.2527,0,0.0,0.0,0.0,0.0,0,0,34172,0,14,BMW,535d,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),33.2299,0.0,54.373,0.0,Midsize Cars,2014,2000,,,T,,Diesel,,,,BMX +12.739500000000001,0.0,0.0,0.0,26,25.8798,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,30,29.9326,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,544,,8,2000,0,Diesel,Diesel,7,-1,37,37.018,0,0.0,0.0,0.0,0.0,0,0,34173,0,14,BMW,535d xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),33.3652,0.0,52.5238,0.0,Midsize Cars,2014,2000,,,T,,Diesel,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6765,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5757,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,550,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8577,0,0.0,0.0,0.0,0.0,0,0,34174,0,14,BMW,550i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.818,0.0,34.6589,0.0,Midsize Cars,2014,-3000,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.2967,0,0.0,0.0,0.0,0.0,466,-1,0.0,466.0,19,19.1458,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,552,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.3485,0,0.0,0.0,0.0,0.0,0,0,34175,0,14,BMW,550i xDrive,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.3173,0.0,33.9243,0.0,Midsize Cars,2014,-3750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.9139,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3854,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,52,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,28,28.0227,0,0.0,0.0,0.0,0.0,0,0,34176,0,16,Buick,LaCrosse,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4585,0.0,39.2487,0.0,Midsize Cars,2014,-1000,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,21,20.5496,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.9168,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,184,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,34177,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0,0.0,42.0,0.0,Midsize Cars,2014,500,,,T,,,,,,GMX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.3584,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,349,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.9969,0,0.0,0.0,0.0,0.0,0,0,34178,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,43.6,0.0,Midsize Cars,2014,0,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.0905,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,440,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,34179,0,13,Buick,Regal,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.7,0.0,43.8,0.0,Midsize Cars,2014,500,,,T,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3418,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.1,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.6,0,0.0,0.0,0.0,0.0,0,0,34180,0,14,Chrysler,200,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.517,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,15,,6,2300,0,Regular,Regular Gasoline,6,-1,31,30.9288,0,0.0,0.0,0.0,0.0,0,0,34181,0,14,Chrysler,200,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2014,500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3366,16,16.3577,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,40,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8705,21,21.056,0.0,0.0,0.0,0,0,34182,0,14,Chrysler,200,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2014,-500,,,,,FFV,E85,275,,CRX +13.73375,0.0,0.0,0.0,21,20.9,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.1,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,21,,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.6,0,0.0,0.0,0.0,0.0,0,0,34183,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.5,0.0,41.5,0.0,Midsize Cars,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,377,-1,0.0,377.0,24,23.517,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,22,,6,2300,0,Regular,Regular Gasoline,6,-1,31,30.9288,0,0.0,0.0,0.0,0.0,0,0,34184,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.8,0.0,43.5,0.0,Midsize Cars,2014,500,,,,,,,,,CRX +14.964294,4.679378,0.0,0.0,19,18.8433,14,13.8324,0.0,0.0,0.0,397,379,379.0,397.0,22,22.3366,16,16.3577,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,57,FFV,5,2500,2850,Gasoline or E85,Regular Gasoline,5,6,29,28.8705,21,21.056,0.0,0.0,0.0,0,0,34185,0,13,Dodge,Avenger,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,17.1,40.5,29.2,Midsize Cars,2014,-500,,,,,FFV,E85,275,,CRX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.0456,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,66,,5,2750,0,Midgrade,Midgrade Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34186,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,37.9,0.0,Midsize Cars,2014,-1750,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.9864,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.1695,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,67,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,25,24.5397,0,0.0,0.0,0.0,0.0,0,0,34187,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,34.2,0.0,Midsize Cars,2014,-4000,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7573,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,251,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,34188,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),18.6437,0.0,31.8935,0.0,Midsize Cars,2014,-4750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,461,-1,0.0,461.0,19,19.2612,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,253,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.7164,0,0.0,0.0,0.0,0.0,0,0,34189,0,18,Jaguar,XF AWD,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9,0.0,35.9,0.0,Midsize Cars,2014,-3750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3419,16,15,Oldsmobile,Cutlass Supreme,N,false,99,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.3174,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,35,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,25,24.8897,0,0.0,0.0,0.0,0.0,0,0,34190,0,10,Maserati,Ghibli V6 AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.7,0.0,34.705,0.0,Midsize Cars,2014,-4750,,,T,,,,,,MAX +21.974,0.0,0.0,0.0,13,12.6018,0,0.0,0.0,0.0,0.0,577,-1,0.0,577.0,15,15.4084,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,7,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,21,21.1714,0,0.0,0.0,0.0,0.0,0,0,34191,13,0,Rolls-Royce,Wraith,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic (S8),15.5,0.0,27.7,0.0,Midsize Cars,2014,-8000,G,,T,,,,,,RRG +12.657024,0.0,0.0,0.0,22,22.2981,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.1808,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,326,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2591,0,0.0,0.0,0.0,0.0,25,102,34192,0,0,BMW,328i xDrive Gran Turismo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.3857,0.0,46.9347,0.0,Large Cars,2014,500,,,T,,,,,,BMX +14.964294,0.0,0.0,0.0,19,18.9949,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.0739,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,540,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.5276,0,0.0,0.0,0.0,0.0,0,0,34193,0,10,BMW,535i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),23.9032,0.0,38.5281,0.0,Large Cars,2014,-1750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.2505,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1588,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,554,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5228,0,0.0,0.0,0.0,0.0,0,0,34194,0,10,BMW,550i Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),20.2565,0.0,34.1756,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,555,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,34195,0,10,BMW,550i xDrive Gran Turismo,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6765,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5757,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,750,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.8577,0,0.0,0.0,0.0,0.0,0,0,34196,0,14,BMW,750i,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),20.818,0.0,34.6589,0.0,Large Cars,2014,-3000,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.2505,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1588,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,751,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5228,0,0.0,0.0,0.0,0.0,0,0,34197,0,14,BMW,750Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),20.2565,0.0,34.1756,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,752,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,34198,0,14,BMW,750i xDrive,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,753,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,34199,0,14,BMW,750Li xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49051,(CAL)(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,342,0,12,Mitsubishi,Galant,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.3333,0.0,Compact Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3420,16,15,Oldsmobile,Cutlass Supreme,N,false,99,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.2505,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1588,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,754,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5228,0,0.0,0.0,0.0,0.0,0,0,34200,0,14,BMW,Alpina B7 SWB,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),20.2565,0.0,34.1756,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,16.2505,0,0.0,0.0,0.0,0.0,465,-1,0.0,465.0,19,19.1588,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,755,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5228,0,0.0,0.0,0.0,0.0,0,0,34201,0,14,BMW,Alpina B7 LWB,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),20.2565,0.0,34.1756,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,756,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,34202,0,14,BMW,Alpina B7 SWB xDrive,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.8798,0,0.0,0.0,0.0,0.0,470,-1,0.0,470.0,19,18.7253,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,757,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.9763,0,0.0,0.0,0.0,0.0,0,0,34203,0,14,BMW,Alpina B7 LWB xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7692,0.0,33.388,0.0,Large Cars,2014,-3750,,,T,,,,,,BMX +21.974,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,586,-1,0.0,586.0,15,15.2002,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,760,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,20,20.3551,0,0.0,0.0,0.0,0.0,0,0,34204,0,14,BMW,760Li,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),15.5,0.0,28.2,0.0,Large Cars,2014,-8000,G,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.9138,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3853,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,54,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,28,28.0224,0,0.0,0.0,0.0,0.0,0,0,34205,0,18,Cadillac,XTS,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4584,0.0,39.2483,0.0,Large Cars,2014,-1000,,,,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,14.9864,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.1695,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,46,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,25,24.5397,0,0.0,0.0,0.0,0.0,0,0,34206,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,34.2,0.0,Large Cars,2014,-4000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4842,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,47,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,34207,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,0.0,38.1,0.0,Large Cars,2014,-1000,,,,,,,,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,413,392,392.0,413.0,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,48,FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,6,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,34208,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2014,-1000,,,,,FFV,E85,306,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6411,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.614,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,49,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,23,23.4285,0,0.0,0.0,0.0,0.0,0,0,34209,0,16,Chrysler,300 AWD,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2014,-4000,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3421,16,15,Oldsmobile,Cutlass Supreme,Y,false,99,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.0456,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,58,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34210,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,37.9,0.0,Large Cars,2014,-1000,,,,,,,,,CRX +15.689436,4.994,0.0,0.0,18,17.7948,13,12.8248,0.0,0.0,0.0,421,414,414.0,421.0,21,21.0456,15,14.9473,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,60,FFV,5,2600,3050,Gasoline or E85,Regular Gasoline,5,5,27,27.0956,19,18.7377,0.0,0.0,0.0,0,0,34211,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,15.8,37.9,25.9,Large Cars,2014,-1000,,,,,FFV,E85,287,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.9864,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.1695,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,62,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,25,24.5397,0,0.0,0.0,0.0,0.0,0,0,34212,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6,0.0,34.2,0.0,Large Cars,2014,-4000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.4842,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,63,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.2332,0,0.0,0.0,0.0,0.0,0,0,34213,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,0.0,38.1,0.0,Large Cars,2014,-1000,,,,,,,,,CRX +15.689436,4.679378,0.0,0.0,18,18.32,14,13.6005,0.0,0.0,0.0,413,392,392.0,413.0,21,21.4842,16,15.9093,0.0,0.0,0.0,6,3.6,All-Wheel Drive,64,FFV,5,2600,2850,Gasoline or E85,Regular Gasoline,5,6,27,27.2332,20,20.0743,0.0,0.0,0.0,0,0,34214,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.0,16.8,38.1,27.8,Large Cars,2014,-1000,,,,,FFV,E85,306,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.6411,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.614,0,0.0,0.0,0.0,0.0,8,5.7,All-Wheel Drive,65,,4,3200,0,Midgrade,Midgrade Gasoline,4,-1,23,23.4285,0,0.0,0.0,0.0,0.0,0,0,34215,0,16,Dodge,Charger AWD,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.1499,0.0,32.5997,0.0,Large Cars,2014,-4000,,,,,,,,,CRX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,352,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34216,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2014,-4750,,,,S,,,,,JLX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,353,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34217,0,18,Jaguar,XJL,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2014,-4750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,16.0555,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.9949,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,355,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.4704,0,0.0,0.0,0.0,0.0,0,0,34218,0,18,Jaguar,XJ AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.0,0.0,34.1,0.0,Large Cars,2014,-3750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,471,-1,0.0,471.0,19,18.9175,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,356,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,34219,0,18,Jaguar,XJL AWD,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9,0.0,34.0,0.0,Large Cars,2014,-3750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3422,14,0,Oldsmobile,Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,14.9861,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,18.101,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,33,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.2653,0,0.0,0.0,0.0,0.0,0,0,34220,0,19,Maserati,Quattroporte SQ4 V6,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5995,0.0,33.8044,0.0,Large Cars,2014,-4750,,,T,,,,,,MAX +23.534154,0.0,0.0,0.0,11,11.485,0,0.0,0.0,0.0,0.0,638,-1,0.0,638.0,14,13.867,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,1,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5758,0,0.0,0.0,0.0,0.0,0,0,34221,0,14,Rolls-Royce,Phantom,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.6,0.0,Large Cars,2014,-9500,G,,,,,,,,RRG +23.534154,0.0,0.0,0.0,11,11.4889,0,0.0,0.0,0.0,0.0,637,-1,0.0,637.0,14,13.8634,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,2,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5489,0,0.0,0.0,0.0,0.0,0,0,34222,0,14,Rolls-Royce,Phantom EWB,N,false,0,125,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.3,0.0,Large Cars,2014,-9500,G,,,,,,,,RRG +21.974,0.0,0.0,0.0,13,12.5264,0,0.0,0.0,0.0,0.0,580,-1,0.0,580.0,15,15.3013,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,5,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,21,20.9824,0,0.0,0.0,0.0,0.0,0,0,34223,0,14,Rolls-Royce,Ghost,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic (S8),15.1,0.0,26.4,0.0,Large Cars,2014,-8000,G,,T,,,,,,RRG +21.974,0.0,0.0,0.0,13,12.5264,0,0.0,0.0,0.0,0.0,580,-1,0.0,580.0,15,15.3013,0,0.0,0.0,0.0,0.0,12,6.6,Rear-Wheel Drive,6,SIDI,2,4000,0,Premium,Premium Gasoline,2,-1,21,20.9824,0,0.0,0.0,0.0,0.0,0,0,34224,0,14,Rolls-Royce,Ghost EWB,N,false,0,117,0,0.0,0.0,0.0,0.0,Automatic (S8),15.1,0.0,26.4,0.0,Large Cars,2014,-8000,G,,T,,,,,,RRG +11.75609,0.0,0.0,0.0,25,24.5048,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.8014,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,4,,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.2722,0,0.0,0.0,0.0,0.0,0,0,34225,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.4386,0.0,46.954,0.0,Small Station Wagons,2014,2250,,,,,,,,,FJX +10.987,0.0,0.0,0.0,27,26.7354,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,30.0801,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,6,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.5097,0,0.0,0.0,0.0,0.0,0,0,34226,0,23,Subaru,Impreza Wagon AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.5736,0.0,50.2738,0.0,Small Station Wagons,2014,2750,,,,,,,,,FJX +12.657024,0.0,0.0,0.0,23,22.8293,0,0.0,0.0,0.0,0.0,342,-1,0.0,342.0,26,25.8726,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,13,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.9084,0,0.0,0.0,0.0,0.0,0,0,34227,0,0,Honda,CR-V 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,29.1163,0.0,43.47,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,HNX +17.337486000000002,0.0,0.0,0.0,17,16.8911,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.448,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,22,,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.8627,0,0.0,0.0,0.0,0.0,0,0,34228,0,0,Mazda,CX-9 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.1016,0.0,33.2245,0.0,Small Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,TKX +17.337486000000002,0.0,0.0,0.0,16,16.2518,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.6384,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,106,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.7154,0,0.0,0.0,0.0,0.0,0,0,34229,0,0,Audi,SQ5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.7468,0.0,32.4,0.0,Small Sport Utility Vehicle 4WD,2014,-3750,,,,S,,,,,ADX +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3423,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,22.1935,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.0302,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,14,,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.6644,0,0.0,0.0,0.0,0.0,0,0,34230,0,0,Honda,CR-V 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,28.2422,0.0,41.646,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,,,,,,,HNX +18.304342000000002,0.0,0.0,0.0,16,16.3919,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,18,18.4981,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel Drive,23,,4,3050,0,Regular,Regular Gasoline,4,-1,22,21.9442,0,0.0,0.0,0.0,0.0,0,0,34231,0,0,Mazda,CX-9 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.4427,0.0,30.4701,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.6917,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,804,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,24.7476,0,0.0,0.0,0.0,0.0,0,0,34232,0,0,Mercedes-Benz,GLK350 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,22.9,0.0,34.5,0.0,Small Sport Utility Vehicle 4WD,2014,-2250,,,,,,,,,MBX +12.657024,0.0,0.0,0.0,23,23.1003,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6443,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,14,,7,2100,0,Regular,Regular Gasoline,7,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,34233,0,0,Subaru,XV Crosstrek AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.49,0.0,41.6,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,,,,,FJX +11.75609,0.0,0.0,0.0,25,25.0209,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,28.0333,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,15,,7,1950,0,Regular,Regular Gasoline,7,-1,33,32.8701,0,0.0,0.0,0.0,0.0,0,0,34234,0,0,Subaru,XV Crosstrek AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.1595,0.0,46.3597,0.0,Small Sport Utility Vehicle 4WD,2014,2250,,,,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,16.5226,0,0.0,0.0,0.0,0.0,461,-1,0.0,461.0,19,19.198,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,53,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,24,23.9348,0,0.0,0.0,0.0,0.0,0,0,34235,0,30,Cadillac,SRX 2WD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S6),20.615,0.0,33.3283,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,GMX +21.974,0.0,0.0,0.0,13,12.8774,0,0.0,0.0,0.0,0.0,608,-1,0.0,608.0,15,14.6029,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,75,,2,3650,0,Regular,Regular Gasoline,2,-1,17,17.4628,0,0.0,0.0,0.0,0.0,0,0,34236,0,0,Toyota,Sequoia 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8677,0.0,24.0944,0.0,Standard Sport Utility Vehicle 2WD,2014,-6250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.2992,0,0.0,0.0,0.0,0.0,419,-1,0.0,419.0,21,21.3009,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,571,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.6424,0,0.0,0.0,0.0,0.0,0,0,34237,0,0,BMW,X5 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),22.9722,0.0,37.2419,0.0,Standard Sport Utility Vehicle 4WD,2014,-2250,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,14.4474,0,0.0,0.0,0.0,0.0,525,-1,0.0,525.0,17,16.9784,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,572,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,22,21.6043,0,0.0,0.0,0.0,0.0,0,0,34238,0,0,BMW,X5 xDrive50i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.8978,0.0,29.9837,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,T,,,,,,BMX +16.612308000000002,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,445,-1,0.0,445.0,23,22.834,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,403,,6,2600,0,Diesel,Diesel,5,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,34239,0,0,Mercedes-Benz,ML350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,25.2,0.0,38.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-1000,,,T,,Diesel,,,,MBX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3424,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1987,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,14.1193,0,0.0,0.0,0.0,0.0,552,-1,0.0,552.0,16,16.091,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,405,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,19,19.4027,0,0.0,0.0,0.0,0.0,0,0,34240,0,0,Mercedes-Benz,ML550 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.5,0.0,27.5,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,T,,,,,,MBX +20.589638,0.0,0.0,0.0,14,13.6943,0,0.0,0.0,0.0,0.0,569,-1,0.0,569.0,16,15.5444,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,421,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,19,18.6187,0,0.0,0.0,0.0,0.0,0,0,34241,0,0,Mercedes-Benz,GL450 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.3,0.0,26.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,T,,,,,,MBX +23.534154,7.4910000000000005,0.0,0.0,13,12.6848,9,9.0383,0.0,0.0,0.0,613,588,588.0,613.0,14,14.4277,10,10.3191,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,71,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,17.3397,12,12.4901,0.0,0.0,0.0,0,0,34242,0,0,Toyota,Sequoia 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.6202,11.1299,23.9203,17.2302,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,FFV,E85,264,,TYX +23.534154,0.0,0.0,0.0,13,12.5369,0,0.0,0.0,0.0,0.0,615,-1,0.0,615.0,14,14.2092,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,76,,2,3950,0,Regular,Regular Gasoline,2,-1,17,16.977,0,0.0,0.0,0.0,0.0,0,0,34243,0,0,Toyota,Sequoia 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.4302,0.0,23.408,0.0,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,515,-1,0.0,515.0,17,17.2981,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,909,,4,3400,0,Midgrade,Midgrade Gasoline,4,-1,22,21.5091,0,0.0,0.0,0.0,0.0,0,0,34244,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5,0.0,29.8479,0.0,Standard Pickup Trucks 2WD,2013,-5000,,,,,,,,,CRX +9.690534,0.0,0.0,0.0,30,29.8946,0,0.0,0.0,0.0,0.0,262,-1,0.0,262.0,34,34.0007,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,SIDI,8,1600,0,Regular,Regular Gasoline,8,-1,41,40.8601,0,0.0,0.0,0.0,0.0,0,0,34245,0,12,Mazda,3 4-Door,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),39.1,0.0,58.3,0.0,Compact Cars,2014,4000,,,,,,,,,TKX +9.976196,0.0,0.0,0.0,29,29.2722,0,0.0,0.0,0.0,0.0,265,-1,0.0,265.0,33,33.494,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,SIDI,8,1650,0,Regular,Regular Gasoline,8,-1,41,40.6616,0,0.0,0.0,0.0,0.0,0,0,34246,0,12,Mazda,3 4-Door,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2,0.0,58.0,0.0,Compact Cars,2014,3750,,,,,,,,,TKX +10.613442000000001,0.0,0.0,0.0,27,27.0782,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,31.1761,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,23,,8,1800,0,Regular,Regular Gasoline,8,-1,38,38.2512,0,0.0,0.0,0.0,0.0,0,0,34247,0,15,Nissan,Altima,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.0598,0.0,54.3708,0.0,Midsize Cars,2014,3000,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,21.8173,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.325,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,41,,6,2200,0,Regular,Regular Gasoline,6,-1,31,31.5184,0,0.0,0.0,0.0,0.0,0,0,34248,0,15,Nissan,Altima,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S7),27.7267,0.0,44.3669,0.0,Midsize Cars,2014,1000,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,16,15.7313,0,0.0,0.0,0.0,0.0,507,-1,0.0,507.0,17,17.295,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,10,,3,3250,0,Regular,Regular Gasoline,3,-1,20,19.6867,0,0.0,0.0,0.0,0.0,0,0,34249,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),19.5744,0.0,27.2483,0.0,Standard Pickup Trucks 2WD,2014,-4250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3425,0,17,Plymouth,Caravelle,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,16,16.4876,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,19,,3,3450,0,Regular,Regular Gasoline,3,-1,19,19.09,0,0.0,0.0,0.0,0.0,0,0,34250,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,26.4,0.0,Standard Pickup Trucks 2WD,2014,-5250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.0184,0,0.0,0.0,0.0,0.0,602,-1,0.0,602.0,15,14.7521,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,77,,2,3650,0,Regular,Regular Gasoline,2,-1,18,17.6202,0,0.0,0.0,0.0,0.0,0,0,34251,0,0,Toyota,Tundra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.0491,0.0,24.317,0.0,Standard Pickup Trucks 2WD,2014,-6250,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,14,13.9087,0,0.0,0.0,0.0,0.0,565,-1,0.0,565.0,16,15.6126,0,0.0,0.0,0.0,0.0,8,4.6,Part-time 4-Wheel Drive,20,,3,3450,0,Regular,Regular Gasoline,3,-1,18,18.3618,0,0.0,0.0,0.0,0.0,0,0,34252,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.1988,0.0,25.3669,0.0,Standard Pickup Trucks 4WD,2014,-5250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,13.0606,0,0.0,0.0,0.0,0.0,606,-1,0.0,606.0,15,14.5976,0,0.0,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,78,,2,3650,0,Regular,Regular Gasoline,2,-1,17,17.05,0,0.0,0.0,0.0,0.0,0,0,34253,0,0,Toyota,Tundra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1035,0.0,23.5111,0.0,Standard Pickup Trucks 4WD,2014,-6250,,,,,,,,,TYX +21.974,6.806822,0.0,0.0,13,13.0948,9,9.3631,0.0,0.0,0.0,602,591,591.0,602.0,15,14.7496,11,10.5061,0.0,0.0,0.0,8,5.7,Part-time 4-Wheel Drive,72,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,17,17.4439,12,12.3396,0.0,0.0,0.0,0,0,34254,0,0,Toyota,Tundra 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1475,11.5458,24.0677,17.0252,Standard Pickup Trucks 4WD,2014,-6250,,,,,FFV,E85,290,,TYX +14.327048,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.5797,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,2,,6,2400,0,Regular,Regular Gasoline,6,-1,26,26.1148,0,0.0,0.0,0.0,0.0,0,0,34255,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7,0.0,39.9,0.0,Small Sport Utility Vehicle 2WD,2014,0,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,412,-1,0.0,412.0,22,21.505,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,38,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,34256,0,0,Toyota,Venza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,36.3,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,20.3282,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,22,22.4342,0,0.0,0.0,0.0,0.0,4,2.7,All-Wheel Drive,82,,5,2500,0,Regular,Regular Gasoline,5,-1,26,25.6866,0,0.0,0.0,0.0,0.0,0,0,34257,0,0,Toyota,Venza 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.7,0.0,39.6,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.8746,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,83,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1631,0,0.0,0.0,0.0,0.0,0,0,34258,0,0,Toyota,Venza 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,35.1,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,16,15.7509,0,0.0,0.0,0.0,0.0,455,-1,0.0,455.0,20,19.5635,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,333,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,34259,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.6,0.0,38.9,0.0,Two Seaters,2014,-3000,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3426,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,27.0,0.0,Midsize Cars,1987,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,539,-1,0.0,539.0,17,16.5347,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,228,,3,3550,0,Premium,Premium Gasoline,3,-1,21,21.056,0,0.0,0.0,0.0,0.0,0,0,34260,0,0,Mercedes-Benz,SL65 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,17.4,0.0,29.2,0.0,Two Seaters,2014,-5750,G,,T,,,,,,MBX +23.534154,0.0,0.0,0.0,13,12.5912,0,0.0,0.0,0.0,0.0,627,-1,0.0,627.0,14,14.2232,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,272,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,17,16.9005,0,0.0,0.0,0.0,0.0,0,0,34261,0,0,Mercedes-Benz,SLS AMG Black Series Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),15.5,0.0,23.3,0.0,Two Seaters,2014,-9500,G,,,,,,,,MBX +13.1844,0.0,0.0,0.0,22,21.5717,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.8278,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,202,,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.4446,0,0.0,0.0,0.0,0.0,0,0,34262,7,0,Scion,FR-S,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.391,0.0,42.7892,0.0,Minicompact Cars,2014,0,,,,,,,,,TYX +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,316,-1,0.0,316.0,28,28.0012,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,203,,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.8131,0,0.0,0.0,0.0,0.0,0,0,34263,7,0,Scion,FR-S,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,47.7546,0.0,Minicompact Cars,2014,1250,,,,,,,,,TYX +12.19557,0.0,0.0,0.0,23,22.854,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.1972,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,400,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,35,35.4257,0,0.0,0.0,0.0,0.0,0,0,34267,12,0,BMW,428i Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S8),29.1503,0.0,50.1488,0.0,Compact Cars,2014,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.1741,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.3533,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,401,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.2409,0,0.0,0.0,0.0,0.0,0,0,34268,12,0,BMW,428i Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.2155,0.0,48.3887,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2981,0,0.0,0.0,0.0,0.0,343,-1,0.0,343.0,26,26.1808,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,402,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,33,33.2591,0,0.0,0.0,0.0,0.0,0,0,34269,12,0,BMW,428i xDrive Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.3857,0.0,46.9347,0.0,Compact Cars,2014,500,,,T,,,,,,BMX +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS) 2 barrel carb,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3427,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Midsize Cars,1987,-7750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.6153,0,0.0,0.0,0.0,0.0,349,-1,0.0,349.0,25,25.4483,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,410,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.4901,0,0.0,0.0,0.0,0.0,0,0,34270,12,0,BMW,435i Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.4506,0.0,45.7986,0.0,Compact Cars,2014,0,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.9779,0,0.0,0.0,0.0,0.0,379,-1,0.0,379.0,23,23.4801,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,411,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,30,29.8826,0,0.0,0.0,0.0,0.0,0,0,34271,12,0,BMW,435i Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2264,0.0,41.9655,0.0,Compact Cars,2014,-1000,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,20.1009,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,24,23.6886,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,412,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.2983,0,0.0,0.0,0.0,0.0,0,0,34272,12,0,BMW,435i xDrive Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.3925,0.0,42.5746,0.0,Compact Cars,2014,-500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.7018,0,0.0,0.0,0.0,0.0,390,-1,0.0,390.0,23,22.8414,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,413,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.3662,0,0.0,0.0,0.0,0.0,0,0,34273,12,0,BMW,435i xDrive Coupe,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.8538,0.0,39.7494,0.0,Compact Cars,2014,-1000,,,T,,,,,,BMX +10.283832,0.0,0.0,0.0,28,27.9782,0,0.0,0.0,0.0,0.0,277,-1,0.0,277.0,32,32.0034,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,18,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,39,38.8315,0,0.0,0.0,0.0,0.0,0,0,34274,0,12,Mazda,3 4-Door,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),36.3419,0.0,55.2422,0.0,Compact Cars,2014,3500,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,28,28.3714,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.3834,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,19,SIDI; with i-ELOOP Technology Package,8,1700,0,Regular,Regular Gasoline,8,-1,39,39.1499,0,0.0,0.0,0.0,0.0,0,0,34275,0,12,Mazda,3 4-Door,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S6),36.9047,0.0,55.721,0.0,Compact Cars,2014,3500,,,,,,,,,TKX +14.964294,0.0,0.0,0.0,20,19.7361,0,0.0,0.0,0.0,0.0,393,-1,0.0,393.0,22,22.4842,0,0.0,0.0,0.0,0.0,6,3.5,4-Wheel Drive,601,,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34276,0,12,Mercedes-Benz,C300 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.9,0.0,37.9,0.0,Compact Cars,2014,-1750,,,,,,,,,MBX +23.534154,0.0,0.0,0.0,11,11.485,0,0.0,0.0,0.0,0.0,638,-1,0.0,638.0,14,13.867,0,0.0,0.0,0.0,0.0,12,6.7,Rear-Wheel Drive,4,SIDI,2,4300,0,Premium,Premium Gasoline,2,-1,19,18.5758,0,0.0,0.0,0.0,0.0,0,0,34277,13,0,Rolls-Royce,Phantom Coupe,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic (S8),13.9,0.0,25.6,0.0,Compact Cars,2014,-9500,G,,,,,,,,RRG +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS) 4 barrel carb,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3428,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1987,-11000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.9459,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,355,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34283,0,13,Buick,Regal AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.9,0.0,37.9,0.0,Midsize Cars,2014,-500,,,T,,,,,,GMX +18.304342000000002,0.0,0.0,0.0,15,15.0631,0,0.0,0.0,0.0,0.0,493,-1,0.0,493.0,18,18.002,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,159,,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0,0,0.0,0.0,0.0,0.0,0,0,34284,16,0,Dodge,Challenger,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.7,0.0,32.6,0.0,Midsize Cars,2014,-4750,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,521,-1,0.0,521.0,17,16.9945,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,160,,3,3550,0,Premium,Premium Gasoline,3,-1,23,22.8018,0,0.0,0.0,0.0,0.0,0,0,34285,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Midsize Cars,2014,-5750,G,,,,,,,,CRX +19.381068,0.0,0.0,0.0,14,13.9868,0,0.0,0.0,0.0,0.0,521,-1,0.0,521.0,17,16.9921,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,161,,3,3550,0,Premium,Premium Gasoline,3,-1,23,23.0437,0,0.0,0.0,0.0,0.0,0,0,34286,16,0,Dodge,Challenger SRT8,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,17.3,0.0,31.4,0.0,Midsize Cars,2014,-5750,G,,,,,,,,CRX +10.613442000000001,0.0,0.0,0.0,27,27.3133,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.8304,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.5889,0,0.0,0.0,0.0,0.0,22,96,34287,0,0,Mazda,3 5-Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.3939,0.0,51.8827,0.0,Midsize Cars,2014,3000,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,28,28.4001,0,0.0,0.0,0.0,0.0,276,-1,0.0,276.0,32,32.1067,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,17,SIDI; with i-ELOOP Technology Package,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.2002,0,0.0,0.0,0.0,0.0,22,96,34288,0,0,Mazda,3 5-Door,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),36.9459,0.0,54.2943,0.0,Midsize Cars,2014,3500,,,,,,,,,TKX +11.75609,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,28,28.7184,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,88,,7,1950,0,Regular,Regular Gasoline,7,-1,35,35.3257,0,0.0,0.0,0.0,0.0,0,0,34289,0,15,Toyota,Camry,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),32.0,0.0,50.0,0.0,Midsize Cars,2014,2250,,,,,,,,,TYX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3429,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1987,-500,,,,,,,,, +8.02051,0.0,0.0,0.0,43,42.6649,0,0.0,0.0,0.0,0.0,215,-1,0.0,215.0,41,41.132,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,89,,9,1350,0,Regular,Regular Gasoline,9,-1,39,39.4018,0,0.0,0.0,0.0,0.0,0,0,34290,0,13,Toyota,Camry Hybrid LE,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),58.5,0.0,56.1,0.0,Midsize Cars,2014,5250,,,,,Hybrid,,,245V Ni-MH,TYX +8.24025,0.0,0.0,0.0,40,40.4959,0,0.0,0.0,0.0,0.0,224,-1,0.0,224.0,40,39.5151,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,90,,9,1400,0,Regular,Regular Gasoline,9,-1,38,38.379,0,0.0,0.0,0.0,0.0,0,0,34291,0,13,Toyota,Camry Hybrid XLE/SE,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.0738,0.0,54.5626,0.0,Midsize Cars,2014,5000,,,,,Hybrid,,,245V Ni-MH,TYX +13.1844,0.0,0.0,0.0,21,21.3584,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7541,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,34292,0,15,Toyota,Camry,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1,0.0,43.2,0.0,Midsize Cars,2014,1000,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,17,16.5541,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,533,,3,3250,0,Regular,Regular Gasoline,3,-1,21,21.126,0,0.0,0.0,0.0,0.0,0,0,34293,0,17,Chevrolet,SS,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic (S6),17.4,0.0,29.3,0.0,Large Cars,2014,-4250,G,,,,,,,,GMX +14.327048,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.916,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,44,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,34294,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.9,0.0,43.1,0.0,Large Cars,2014,0,,,,,,,,,CRX +14.327048,4.404708,0.0,0.0,19,18.9925,14,13.9868,0.0,0.0,0.0,386,368,368.0,386.0,23,22.916,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,45,FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,34295,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.9,17.3,43.1,31.7,Large Cars,2014,0,,,,,FFV,E85,325,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,521,-1,0.0,521.0,17,16.9945,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,129,,3,3550,0,Premium,Premium Gasoline,3,-1,23,22.8018,0,0.0,0.0,0.0,0.0,0,0,34296,0,16,Chrysler,300 SRT8,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2014,-5750,G,,,,,,,,CRX +14.327048,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,386,-1,0.0,386.0,23,22.916,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,59,,6,2400,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,34297,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.9,0.0,43.1,0.0,Large Cars,2014,0,,,,,,,,,CRX +14.327048,4.404708,0.0,0.0,19,18.9925,14,13.9868,0.0,0.0,0.0,386,368,368.0,386.0,23,22.916,17,16.9326,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,61,FFV,6,2400,2700,Gasoline or E85,Regular Gasoline,6,6,31,30.6564,23,22.8022,0.0,0.0,0.0,0,0,34298,0,16,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 8-spd,23.9,17.3,43.1,31.7,Large Cars,2014,0,,,,,FFV,E85,325,,CRX +19.381068,0.0,0.0,0.0,14,14.0639,0,0.0,0.0,0.0,0.0,521,-1,0.0,521.0,17,16.9945,0,0.0,0.0,0.0,0.0,8,6.4,Rear-Wheel Drive,128,,3,3550,0,Premium,Premium Gasoline,3,-1,23,22.8018,0,0.0,0.0,0.0,0.0,0,0,34299,0,16,Dodge,Charger SRT8,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,17.4,0.0,31.8,0.0,Large Cars,2014,-5750,G,,,,,,,,CRX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49050,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,343,0,12,Mitsubishi,Galant,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.3333,0.0,Compact Cars,1985,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2360,(POLICE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3430,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6867,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,511,,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0426,0,0.0,0.0,0.0,0.0,0,0,34300,0,0,Jeep,Patriot FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.3,0.0,42.2,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,CRX +13.631265,0.0,0.0,0.0,24,24.4053,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,28,27.7195,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel Drive,803,,7,2100,0,Diesel,Diesel,6,-1,33,33.2357,0,0.0,0.0,0.0,0.0,0,0,34302,0,0,Mercedes-Benz,GLK250 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,31.3,0.0,46.9,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,T,,Diesel,,,,MBX +14.964294,0.0,0.0,0.0,19,18.8279,0,0.0,0.0,0.0,0.0,406,-1,0.0,406.0,22,21.9143,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,574,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.4051,0,0.0,0.0,0.0,0.0,0,0,34304,0,0,BMW,X5 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.6793,0.0,38.3499,0.0,Standard Sport Utility Vehicle 4WD,2014,-1750,,,T,,,,,,BMX +17.337486000000002,4.994,0.0,0.0,17,16.8899,13,13.2907,0.0,0.0,0.0,458,415,415.0,458.0,19,19.4627,15,15.0743,0.0,0.0,0.0,6,3.6,4-Wheel Drive,504,FFV,4,2900,3050,Gasoline or E85,Regular Gasoline,4,5,24,23.9152,18,18.0322,0.0,0.0,0.0,0,0,34305,0,0,Dodge,Durango AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.1,16.4,33.3,24.9,Standard Sport Utility Vehicle 4WD,2014,-2500,,,,,FFV,E85,370,,CRX +17.337486000000002,5.348574,0.0,0.0,17,16.5871,12,12.1231,0.0,0.0,0.0,471,465,465.0,471.0,19,18.9702,14,13.5296,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,43,SIDI; FFV,4,3150,3250,Premium or E85,Premium Gasoline,4,4,23,23.0111,16,15.7651,0.0,0.0,0.0,0,0,34306,0,0,Land Rover,Range Rover Sport FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.7,14.9,32.0,21.7,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,S,FFV,E85,388,,JLX +17.351199,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,469,-1,0.0,469.0,22,21.6646,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,422,,5,2700,0,Diesel,Diesel,4,-1,26,25.9926,0,0.0,0.0,0.0,0.0,0,0,34307,0,0,Mercedes-Benz,GL350 Bluetec 4matic,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,24.0,0.0,36.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-1500,,,T,,Diesel,,,,MBX +11.360558000000001,0.0,0.0,0.0,27,26.6835,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.3517,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66,,7,1900,0,Regular,Regular Gasoline,7,-1,33,33.4385,0,0.0,0.0,0.0,0.0,11,84,34308,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,34.5,0.0,47.2,0.0,Subcompact Cars,2014,2500,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,27,26.8246,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,29,29.3744,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,65,,7,1900,0,Regular,Regular Gasoline,7,-1,33,33.2357,0,0.0,0.0,0.0,0.0,11,84,34309,0,0,Scion,xD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.7,0.0,46.9,0.0,Subcompact Cars,2014,2500,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3431,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0256,0.0,Midsize Cars,1987,1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,10.5402,0,0.0,0.0,0.0,0.0,688,-1,0.0,688.0,13,12.8889,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,109,,1,4650,0,Premium,Premium Gasoline,1,-1,18,17.7129,0,0.0,0.0,0.0,0.0,0,0,34310,0,11,Bentley,Mulsanne,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S8),12.9,0.0,21.8,0.0,Midsize Cars,2014,-11250,G,,T,,,,,,BEX +11.360558000000001,0.0,0.0,0.0,25,25.2107,0,0.0,0.0,0.0,0.0,303,-1,0.0,303.0,29,29.3064,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,294,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.5673,0,0.0,0.0,0.0,0.0,0,0,34311,0,16,Chevrolet,Malibu,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4254,0.0,51.8504,0.0,Midsize Cars,2014,2500,,,,,,,,,GMX +7.009706,0.0,0.0,0.0,47,46.726,0,0.0,0.0,0.0,0.0,190,-1,0.0,190.0,47,46.754,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,314,,10,1150,0,Regular,Regular Gasoline,10,-1,47,46.7882,0,0.0,0.0,0.0,0.0,0,0,34312,0,16,Ford,Fusion Hybrid FWD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),65.0687,0.0,67.3404,0.0,Midsize Cars,2014,6250,,,,,Hybrid,,,280V Li-Ion,FMX +11.360558000000001,0.0,0.0,0.0,26,26.0283,0,0.0,0.0,0.0,0.0,304,-1,0.0,304.0,29,29.2085,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,34,34.3359,0,0.0,0.0,0.0,0.0,0,0,34313,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Auto(AV-S7),33.5744,0.0,48.5295,0.0,Midsize Cars,2014,2500,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,21,20.6013,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,25,24.5532,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,6,2200,0,Regular,Regular Gasoline,6,-1,32,32.0729,0,0.0,0.0,0.0,0.0,0,0,34314,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Automatic (S6),26.0702,0.0,45.1834,0.0,Midsize Cars,2014,1000,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,18,18.1326,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,22,21.5562,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,20,,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0231,0,0.0,0.0,0.0,0.0,0,0,34315,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.7499,0.0,39.2494,0.0,Midsize Cars,2014,-500,,,,,,,,,HNX +7.317342,0.0,0.0,0.0,45,45.0,0,0.0,0.0,0.0,0.0,198,-1,0.0,198.0,45,45.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,315,,10,1200,0,Regular,Regular Gasoline,10,-1,45,45.0,0,0.0,0.0,0.0,0.0,0,0,34316,0,12,Lincoln,MKZ Hybrid FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),65.0687,0.0,67.3404,0.0,Midsize Cars,2014,6000,,,,,Hybrid,,,280V Li-Ion,FMX +7.844718,0.0,0.0,0.0,44,43.5047,0,0.0,0.0,0.0,0.0,211,-1,0.0,211.0,42,41.9444,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,69,,9,1300,0,Regular,Regular Gasoline,9,-1,40,40.183,0,0.0,0.0,0.0,0.0,0,0,34317,0,34,Toyota,Prius v,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),59.8417,0.0,57.2774,0.0,Midsize Station Wagons,2014,5500,,,,,Hybrid,,,202V Ni-MH,TYX +13.73375,0.0,0.0,0.0,22,21.5081,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,23.9228,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,25,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.7274,0,0.0,0.0,0.0,0.0,0,0,34318,0,0,Mazda,5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.3042,0.0,41.0545,0.0,Minivan - 2WD,2014,500,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,23.9973,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,24,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.424,0,0.0,0.0,0.0,0.0,0,0,34319,0,0,Mazda,5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.0,0.0,40.9,0.0,Minivan - 2WD,2014,500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2460,(POLICE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3432,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.3333,0.0,Midsize Cars,1987,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8144,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,11,,4,3050,0,Regular,Regular Gasoline,4,-1,20,20.4178,0,0.0,0.0,0.0,0.0,0,0,34320,0,0,Toyota,FJ Cruiser 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,29.3,0.0,Small Sport Utility Vehicle 2WD,2014,-3250,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5112,0,0.0,0.0,0.0,0.0,495,-1,0.0,495.0,18,17.8557,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,13,,4,3050,0,Regular,Regular Gasoline,4,-1,20,19.8291,0,0.0,0.0,0.0,0.0,0,0,34321,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.6,0.0,29.0,0.0,Small Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,TYX +20.589638,0.0,0.0,0.0,15,15.2162,0,0.0,0.0,0.0,0.0,534,-1,0.0,534.0,16,16.3416,0,0.0,0.0,0.0,0.0,6,4.0,All-Wheel Drive,12,,3,3450,0,Regular,Regular Gasoline,3,-1,18,17.9657,0,0.0,0.0,0.0,0.0,0,0,34322,0,0,Toyota,FJ Cruiser 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.9,0.0,26.8,0.0,Small Sport Utility Vehicle 4WD,2014,-5250,,,,,,,,,TYX +20.589638,6.242500000000001,0.0,0.0,14,13.7866,10,10.1173,0.0,0.0,0.0,557,536,536.0,557.0,16,15.9276,12,11.6964,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,188,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,20,19.6589,14,14.4536,0.0,0.0,0.0,0,0,34323,0,0,Ford,Expedition 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0407,12.5054,27.2087,20.0043,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,336/402,,FMX +20.589638,6.242500000000001,0.0,0.0,14,13.7887,10,10.1189,0.0,0.0,0.0,557,536,536.0,557.0,16,15.9304,12,11.6986,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,192,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,20,19.6633,14,14.4572,0.0,0.0,0.0,0,0,34324,0,0,Lincoln,Navigator 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.0434,12.5074,27.215,20.0095,Standard Sport Utility Vehicle 2WD,2014,-5250,,,,,FFV,E85,336/402,,FMX +21.974,6.806822,0.0,0.0,13,12.7929,9,9.4668,0.0,0.0,0.0,609,584,584.0,609.0,15,14.5652,11,10.7427,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,190,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,18,17.5342,13,12.8614,0.0,0.0,0.0,0,0,34325,0,0,Ford,Expedition 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.759,11.6617,24.1953,17.7474,Standard Sport Utility Vehicle 4WD,2014,-6250,,,,,FFV,E85,308/368,,FMX +21.974,6.806822,0.0,0.0,13,12.7929,9,9.4668,0.0,0.0,0.0,609,584,584.0,609.0,15,14.5652,11,10.7427,0.0,0.0,0.0,8,5.4,Part-time 4-Wheel Drive,191,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,18,17.5342,13,12.8614,0.0,0.0,0.0,0,0,34326,0,0,Lincoln,Navigator 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,15.759,11.6617,24.1953,17.7474,Standard Sport Utility Vehicle 4WD,2014,-6250,,,,,FFV,E85,308/368,,FMX +21.974,0.0,0.0,0.0,13,13.0579,0,0.0,0.0,0.0,0.0,596,-1,0.0,596.0,15,14.8208,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,73,,2,3650,0,Regular,Regular Gasoline,2,-1,18,17.7496,0,0.0,0.0,0.0,0.0,0,0,34327,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),16.1,0.0,24.5,0.0,Standard Sport Utility Vehicle 4WD,2014,-6250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,12.9916,0,0.0,0.0,0.0,0.0,581,-1,0.0,581.0,15,15.1973,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,1,,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.1766,0,0.0,0.0,0.0,0.0,0,0,34328,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2014,-8000,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,551,-1,0.0,551.0,16,16.034,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,2,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,34329,0,0,Aston Martin,V8 Vantage,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2014,-6750,G,,,,,,,,ASX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3433,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,12.9916,0,0.0,0.0,0.0,0.0,581,-1,0.0,581.0,15,15.1973,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,3,,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.1766,0,0.0,0.0,0.0,0.0,0,0,34330,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0147,0.0,26.5231,0.0,Two Seaters,2014,-8000,G,,,,,,,,ASX +20.589638,0.0,0.0,0.0,14,13.5127,0,0.0,0.0,0.0,0.0,551,-1,0.0,551.0,16,16.034,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,4,,3,3750,0,Premium,Premium Gasoline,3,-1,21,20.7709,0,0.0,0.0,0.0,0.0,0,0,34331,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2014,-6750,G,,,,,,,,ASX +10.987,0.0,0.0,0.0,28,27.7387,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.1893,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,10,,8,2000,0,Premium,Premium Gasoline,8,-1,34,33.8438,0,0.0,0.0,0.0,0.0,7,76,34332,0,0,Fiat,500,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,47.8,0.0,Minicompact Cars,2014,2000,,,T,,,,,,CRX +10.987,0.0,0.0,0.0,28,27.7387,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.1893,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,11,,8,2000,0,Premium,Premium Gasoline,8,-1,34,33.8438,0,0.0,0.0,0.0,0.0,7,76,34333,0,0,Fiat,500 Abarth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,47.8,0.0,Minicompact Cars,2014,2000,,,T,,,,,,CRX +12.657024,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.5126,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,30,,7,2300,0,Premium,Premium Gasoline,7,-1,31,31.473,0,0.0,0.0,0.0,0.0,0,0,34334,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),28.1,0.0,44.3,0.0,Compact Cars,2014,500,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,370,-1,0.0,370.0,24,23.9644,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,32,,6,2500,0,Premium,Premium Gasoline,6,-1,29,29.1543,0,0.0,0.0,0.0,0.0,0,0,34335,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,40.9,0.0,Compact Cars,2014,-500,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.597,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,33,,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.1951,0,0.0,0.0,0.0,0.0,0,0,34336,0,14,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,39.5,0.0,Compact Cars,2014,-1000,,,,,,,,,HNX +7.844718,0.0,0.0,0.0,41,40.7482,0,0.0,0.0,0.0,0.0,210,-1,0.0,210.0,42,42.2284,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,36,,9,1300,0,Regular,Regular Gasoline,9,-1,44,44.1904,0,0.0,0.0,0.0,0.0,0,0,34337,0,16,Honda,Insight,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),55.4695,0.0,63.3594,0.0,Compact Cars,2014,5500,,,,,Hybrid,,,101V Ni-MH,HNX +7.844718,0.0,0.0,0.0,41,40.8313,0,0.0,0.0,0.0,0.0,209,-1,0.0,209.0,42,42.3367,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,37,,9,1300,0,Regular,Regular Gasoline,9,-1,44,44.3345,0,0.0,0.0,0.0,0.0,0,0,34338,0,16,Honda,Insight,N,false,0,85,0,0.0,0.0,0.0,0.0,Auto(AV-S7),55.6,0.0,63.5794,0.0,Compact Cars,2014,5500,,,,,Hybrid,,,101V Ni-MH,HNX +8.89947,0.0,0.0,0.0,34,33.5382,0,0.0,0.0,0.0,0.0,238,-1,0.0,238.0,37,37.0375,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,101,,9,1500,0,Regular,Regular Gasoline,9,-1,42,42.4509,0,0.0,0.0,0.0,0.0,17,86,34339,0,17,Mitsubishi,Mirage,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.4503,0.0,60.7107,0.0,Compact Cars,2014,4500,,,,,,,,,MTX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3434,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +8.24025,0.0,0.0,0.0,37,36.8551,0,0.0,0.0,0.0,0.0,222,-1,0.0,222.0,40,39.8375,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,102,,9,1400,0,Regular,Regular Gasoline,9,-1,44,44.2102,0,0.0,0.0,0.0,0.0,17,86,34340,0,17,Mitsubishi,Mirage,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),49.4465,0.0,63.3897,0.0,Compact Cars,2014,5000,,,,,,,,,MTX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.1654,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,24,,6,2600,0,Premium,Premium Gasoline,6,-1,29,29.0175,0,0.0,0.0,0.0,0.0,0,0,34341,0,13,Acura,TL 2WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),25.1,0.0,40.7,0.0,Midsize Cars,2014,-1000,,,,,,,,,HNX +15.689436,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,419,-1,0.0,419.0,21,21.1672,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,25,,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1307,0,0.0,0.0,0.0,0.0,0,0,34342,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.0,0.0,36.5,0.0,Midsize Cars,2014,-2250,,,,,,,,,HNX +16.4805,0.0,0.0,0.0,17,17.4938,0,0.0,0.0,0.0,0.0,441,-1,0.0,441.0,20,20.1311,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,26,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.6783,0,0.0,0.0,0.0,0.0,0,0,34343,0,13,Acura,TL 4WD,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.9,0.0,34.4,0.0,Midsize Cars,2014,-3000,,,,,,,,,HNX +11.75609,0.0,0.0,0.0,24,23.8055,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,28,27.705,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,17,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.6401,0,0.0,0.0,0.0,0.0,0,0,34344,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.466,0.0,48.9811,0.0,Midsize Cars,2014,2250,,,,,,,,,HNX +10.987,0.0,0.0,0.0,27,26.5362,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,30.1017,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,18,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,36,36.0163,0,0.0,0.0,0.0,0.0,0,0,34345,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.2916,0.0,51.0284,0.0,Midsize Cars,2014,2750,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,21,21.2852,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6923,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,21,,7,2100,0,Regular,Regular Gasoline,7,-1,34,34.3968,0,0.0,0.0,0.0,0.0,0,0,34346,14,16,Honda,Accord,N,false,92,103,0,0.0,0.0,0.0,0.0,Automatic 6spd,27.0002,0.0,48.6199,0.0,Midsize Cars,2014,1500,,,,,,,,,HNX +18.304342000000002,5.758082,0.0,0.0,15,14.9865,11,11.0259,0.0,0.0,0.0,500,487,487.0,500.0,18,17.7573,13,13.0119,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,255,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,22.9415,17,16.6879,0.0,0.0,0.0,0,0,34347,0,18,Jaguar,XF FFV,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),18.6,13.5,31.9,23.0,Midsize Cars,2014,-4750,,,,S,FFV,E85,234,,JLX +15.689436,4.994,0.0,0.0,17,17.4185,13,12.9802,0.0,0.0,0.0,426,417,417.0,426.0,21,20.8973,15,15.2237,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,256,SIDI; FFV,5,2850,3050,Premium or E85,Premium Gasoline,5,5,28,27.6458,19,19.3011,0.0,0.0,0.0,0,0,34348,0,18,Jaguar,XF FFV,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),21.8,16.0,38.7,26.7,Midsize Cars,2014,-2250,,,,S,FFV,E85,270,,JLX +14.964294,0.0,0.0,0.0,19,19.1669,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.6907,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,45,,5,2750,0,Premium,Premium Gasoline,5,-1,26,25.8511,0,0.0,0.0,0.0,0.0,0,0,34349,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Auto(AV-S6),24.1341,0.0,36.0951,0.0,Midsize Cars,2014,-1750,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4103,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3435,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1987,-2500,,,,,,,,, +18.304342000000002,5.758082,0.0,0.0,15,14.8331,11,11.4181,0.0,0.0,0.0,504,471,471.0,504.0,18,17.657,13,13.4681,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,358,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,23.0111,17,17.2545,0.0,0.0,0.0,0,0,34350,0,18,Jaguar,XJ FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,14.0,32.0,23.8,Large Cars,2014,-4750,,,,S,FFV,E85,274,,JLX +18.304342000000002,5.758082,0.0,0.0,15,14.8331,11,11.4181,0.0,0.0,0.0,504,471,471.0,504.0,18,17.657,13,13.4681,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,359,SIDI; FFV,4,3350,3500,Premium or E85,Premium Gasoline,4,4,23,23.0111,17,17.2545,0.0,0.0,0.0,0,0,34351,0,18,Jaguar,XJL FFV,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,14.0,32.0,23.8,Large Cars,2014,-4750,,,,S,FFV,E85,274,,JLX +15.689436,5.348574,0.0,0.0,18,17.9451,12,11.9667,0.0,0.0,0.0,421,442,442.0,421.0,21,21.1609,14,14.3454,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,360,SIDI; FFV,5,2850,3250,Premium or E85,Premium Gasoline,5,5,27,27.0956,19,18.9491,0.0,0.0,0.0,0,0,34352,0,18,Jaguar,XJ FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5,14.7,37.9,26.2,Large Cars,2014,-2250,,,,S,FFV,E85,295,,JLX +16.4805,5.348574,0.0,0.0,17,16.5871,11,11.4966,0.0,0.0,0.0,442,452,452.0,442.0,20,20.0939,14,14.0538,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,361,SIDI; FFV,5,3000,3250,Premium or E85,Premium Gasoline,5,5,27,27.0956,19,19.3011,0.0,0.0,0.0,0,0,34353,0,18,Jaguar,XJL FFV,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),20.7,14.1,37.9,26.7,Large Cars,2014,-3000,,,,S,FFV,E85,295,,JLX +14.964294,0.0,0.0,0.0,18,18.3,0,0.0,0.0,0.0,0.0,411,-1,0.0,411.0,22,21.7,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,601,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,28,27.9,0,0.0,0.0,0.0,0.0,0,0,34354,0,16,Porsche,Panamera,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.9368,0.0,39.0499,0.0,Large Cars,2014,-1750,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.1,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,602,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.9,0,0.0,0.0,0.0,0.0,0,0,34355,0,16,Porsche,Panamera 4,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),22.5783,0.0,37.5997,0.0,Large Cars,2014,-2250,,,,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.2,0,0.0,0.0,0.0,0.0,436,-1,0.0,436.0,20,20.4,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,617,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.5,0,0.0,0.0,0.0,0.0,0,0,34356,0,16,Porsche,Panamera 4S Executive,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.4891,0.0,37.0141,0.0,Large Cars,2014,-3000,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,16,15.6,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.6,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,621,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.2,0,0.0,0.0,0.0,0.0,0,0,34357,0,16,Porsche,Panamera GTS,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.3871,0.0,33.7,0.0,Large Cars,2014,-3750,,,,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,15.4,0,0.0,0.0,0.0,0.0,483,-1,0.0,483.0,18,18.4,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,631,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.2,0,0.0,0.0,0.0,0.0,0,0,34358,0,16,Porsche,Panamera Turbo,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.1667,0.0,33.7481,0.0,Large Cars,2014,-4750,,,T,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,15.3,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.3,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,632,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.9,0,0.0,0.0,0.0,0.0,0,0,34359,0,16,Porsche,Panamera Turbo Executive,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),18.9742,0.0,33.3,0.0,Large Cars,2014,-4750,,,T,,,,,,PRX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4104,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3436,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1987,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.6697,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,31,,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.9062,0,0.0,0.0,0.0,0.0,0,0,34360,0,31,Acura,TSX Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4,0.0,42.0,0.0,Small Station Wagons,2014,0,,,,,,,,,HNX +19.381068,0.0,0.0,0.0,15,15.4456,0,0.0,0.0,0.0,0.0,506,-1,0.0,506.0,17,17.4616,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,23,,3,3250,0,Regular,Regular Gasoline,3,-1,21,20.7758,0,0.0,0.0,0.0,0.0,0,0,34361,0,0,Honda,Ridgeline Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.2,0.0,28.8,0.0,Standard Pickup Trucks 4WD,2014,-4250,,,,,,,,,HNX +23.534154,7.4910000000000005,0.0,0.0,12,12.2793,9,9.4331,0.0,0.0,0.0,647,602,602.0,647.0,14,13.7307,10,10.4566,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,1,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,16.0493,12,12.0551,0.0,0.0,0.0,0,0,34362,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.1,11.6,22.1,16.6,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,332,,FMX +23.534154,7.4910000000000005,0.0,0.0,12,12.23,9,9.3917,0.0,0.0,0.0,650,604,604.0,650.0,14,13.6797,10,10.4161,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,3,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,15.9974,12,12.0181,0.0,0.0,0.0,0,0,34363,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0368,11.5472,22.0269,16.5478,"Vans, Cargo Type",2014,-7750,,,,,FFV,E85,332,,FMX +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.0409,0.0,0.0,0.0,671,625,625.0,671.0,13,13.2441,10,10.0709,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,4,FFV,1,4250,4550,Gasoline or E85,Regular Gasoline,1,2,16,15.5518,12,11.7002,0.0,0.0,0.0,0,0,34364,0,0,Ford,E350 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Cargo Type",2014,-9250,,,,,FFV,E85,332,,FMX +21.974,6.806822,0.0,0.0,13,13.2907,10,9.6438,0.0,0.0,0.0,611,588,588.0,611.0,15,14.5067,11,10.6462,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,375,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,16,16.3332,12,12.1955,0.0,0.0,0.0,0,0,34365,0,0,Ford,E150 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,11.9,22.5,16.8,"Vans, Cargo Type",2014,-6250,,,,,FFV,E85,365,,FMX +21.974,6.806822,0.0,0.0,13,13.2907,10,9.6438,0.0,0.0,0.0,611,588,588.0,611.0,15,14.5067,11,10.6462,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,377,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,16,16.3332,12,12.1955,0.0,0.0,0.0,0,0,34366,0,0,Ford,E250 Van FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.4,11.9,22.5,16.8,"Vans, Cargo Type",2014,-6250,,,,,FFV,E85,365,,FMX +25.336022,7.4910000000000005,0.0,0.0,12,11.8102,9,9.0409,0.0,0.0,0.0,671,625,625.0,671.0,13,13.2441,10,10.0709,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,2,FFV,1,4250,4550,Gasoline or E85,Regular Gasoline,1,2,16,15.5518,12,11.7002,0.0,0.0,0.0,0,0,34367,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.5,11.1,21.4,16.1,"Vans, Passenger Type",2014,-9250,,,,,FFV,E85,332,,FMX +25.336022,7.4910000000000005,0.0,0.0,11,11.4181,9,8.7267,0.0,0.0,0.0,692,645,645.0,692.0,13,12.8334,10,9.7616,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,5,FFV,1,4250,4550,Gasoline or E85,Regular Gasoline,1,2,15,15.1248,11,11.4163,0.0,0.0,0.0,0,0,34368,0,0,Ford,E350 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,10.7,20.8,15.7,"Vans, Passenger Type",2014,-9250,,,,,FFV,E85,332,,FMX +29.950562,0.0,0.0,0.0,10,9.8266,0,0.0,0.0,0.0,0.0,801,-1,0.0,801.0,11,11.0994,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,19,,1,5000,0,Regular,Regular Gasoline,1,-1,13,13.187,0,0.0,0.0,0.0,0.0,0,0,34369,0,0,Ford,E350 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,11.9841,0.0,18.0858,0.0,"Vans, Passenger Type",2014,-13000,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3437,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,19.0284,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.2239,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,96,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.7082,0,0.0,0.0,0.0,0.0,0,0,34370,0,0,Nissan,Quest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.9482,0.0,34.4431,0.0,Minivan - 2WD,2014,-1000,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,18.0632,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.6094,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,36,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.899,0,0.0,0.0,0.0,0.0,0,0,34371,0,0,Toyota,Sienna 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.6574,0.0,34.7185,0.0,Minivan - 2WD,2014,-1000,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,466,-1,0.0,466.0,19,18.7504,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,37,,4,2900,0,Regular,Regular Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34372,0,0,Toyota,Sienna AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.3,0.0,32.0,0.0,Minivan - 4WD,2014,-2500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,17.7423,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5186,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,15,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3707,0,0.0,0.0,0.0,0.0,0,0,34373,0,0,Honda,Pilot 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.2302,0.0,35.4,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,21,20.6603,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.5231,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,9,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.3193,0,0.0,0.0,0.0,0.0,0,0,34374,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.1502,0.0,39.681,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,348,-1,0.0,348.0,25,25.2238,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,11,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.6751,0,0.0,0.0,0.0,0.0,0,0,34375,0,0,Hyundai,Tucson 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.3,0.0,40.2,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,19,19.1415,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.3746,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,553,,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.1951,0,0.0,0.0,0.0,0.0,0,0,34376,0,0,Jeep,Cherokee FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,24.1,0.0,39.5,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,359,-1,0.0,359.0,25,24.8421,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,606,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,34377,0,0,Jeep,Cherokee FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,27.3,0.0,43.1,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.1851,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.6924,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,40,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8862,0,0.0,0.0,0.0,0.0,0,0,34378,0,0,Lexus,RX 350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8199,0.0,34.7,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,TYX +10.987,0.0,0.0,0.0,32,31.5059,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,29.7833,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,50,,8,2000,0,Premium,Premium Gasoline,8,-1,28,27.9177,0,0.0,0.0,0.0,0.0,0,0,34379,0,0,Lexus,RX 450h,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),41.4485,0.0,39.0959,0.0,Small Sport Utility Vehicle 2WD,2014,2000,,,,,Hybrid,,,288V Ni-MH,TYX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3438,16,16,Pontiac,6000,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Midsize Cars,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.2519,0,0.0,0.0,0.0,0.0,446,-1,0.0,446.0,20,19.8595,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,16,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.3597,0,0.0,0.0,0.0,0.0,0,0,34380,0,0,Honda,Pilot 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.5791,0.0,33.9405,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,20,20.002,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,22.0927,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,8,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,25,25.3284,0,0.0,0.0,0.0,0.0,0,0,34381,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2589,0.0,35.3389,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,21,20.697,0,0.0,0.0,0.0,0.0,393,-1,0.0,393.0,23,22.5431,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,10,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,25,25.3015,0,0.0,0.0,0.0,0.0,0,0,34382,0,0,Hyundai,Tucson 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2,0.0,35.3,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,HYX +13.73375,0.0,0.0,0.0,21,20.8431,0,0.0,0.0,0.0,0.0,376,-1,0.0,376.0,24,23.6354,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,609,,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.2635,0,0.0,0.0,0.0,0.0,0,0,34383,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,26.3985,0.0,39.5997,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,19,18.806,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.6867,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,655,,5,2500,0,Regular,Regular Gasoline,5,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,34384,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,23.6499,0.0,37.3,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,18,17.5409,0,0.0,0.0,0.0,0.0,445,-1,0.0,445.0,20,19.9679,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,41,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.0319,0,0.0,0.0,0.0,0.0,0,0,34385,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.9626,0.0,33.4681,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1729,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,42,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,34386,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.2,0.0,36.0,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,30,29.5085,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6072,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,51,,7,2100,0,Premium,Premium Gasoline,7,-1,28,27.5778,0,0.0,0.0,0.0,0.0,0,0,34387,0,0,Lexus,RX 450h AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.5412,0.0,38.601,0.0,Small Sport Utility Vehicle 4WD,2014,1500,,,,,Hybrid,,,288V Ni-MH,TYX +20.589638,6.806822,0.0,0.0,14,13.6778,9,9.4419,0.0,0.0,0.0,572,573,573.0,572.0,16,15.5917,11,11.038,0.0,0.0,0.0,8,5.0,4-Wheel Drive,22,SIDI; FFV,3,3750,4150,Premium or E85,Premium Gasoline,3,3,19,18.8082,14,13.9123,0.0,0.0,0.0,0,0,34388,0,0,Land Rover,Range Rover FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),16.9,11.5,26.0,19.1,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,S,FFV,E85,305,,JLX +17.337486000000002,5.348574,0.0,0.0,17,16.6628,12,12.1231,0.0,0.0,0.0,466,469,469.0,466.0,19,19.0885,14,13.5764,0.0,0.0,0.0,6,3.0,4-Wheel Drive,26,SIDI; FFV,4,3150,3250,Premium or E85,Premium Gasoline,4,4,23,23.22,16,15.9072,0.0,0.0,0.0,0,0,34389,0,0,Land Rover,Range Rover FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8,14.9,32.3,21.9,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,S,FFV,E85,388,,JLX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3439,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1987,-1750,,,,,,,,, +20.589638,6.806822,0.0,0.0,14,14.141,10,9.7598,0.0,0.0,0.0,554,561,561.0,554.0,16,16.0308,11,11.3574,0.0,0.0,0.0,8,5.0,4-Wheel Drive,41,SIDI; FFV,3,3750,4150,Premium or E85,Premium Gasoline,3,3,19,19.1604,14,14.198,0.0,0.0,0.0,0,0,34390,0,0,Land Rover,Range Rover Sport FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.5,11.9,26.5,19.5,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,S,FFV,E85,305,,JLX +23.534154,0.0,0.0,0.0,12,12.3574,0,0.0,0.0,0.0,0.0,623,-1,0.0,623.0,14,14.1667,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,74,,2,4300,0,Premium,Premium Gasoline,2,-1,17,17.2545,0,0.0,0.0,0.0,0.0,0,0,34391,0,0,Lexus,LX 570,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.2,0.0,23.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-9500,,,,,,,,,TYX +0.17400000000000002,0.0,0.0,4.0,122,122.4,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,116,115.974,0,0.0,29.0,0.0,0.0,,,Front-Wheel Drive,339,,10,500,0,Electricity,Electricity,10,-1,108,108.1,0,0.0,0.0,31.0,0.0,7,72,34392,0,0,Fiat,500e,N,false,0,0,87,91.84,0.0,81.48,0.0,Automatic (A1),174.8555,0.0,154.4591,0.0,Minicompact Cars,2014,9500,,,,,EV,,,82 kW ACIPM,CRX +0.192,0.0,0.0,6.0,122,121.66,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,107,106.9856,0,0.0,32.0,0.0,0.0,,,Rear-Wheel Drive,705,,10,600,0,Electricity,Electricity,10,-1,93,93.24,0,0.0,0.0,36.0,0.0,0,0,34393,0,0,smart,fortwo electric drive convertible,N,false,0,0,68,76.0,0.0,59.0,0.0,Automatic (A1),173.8,0.0,133.2,0.0,Two Seaters,2014,9000,,,,,EV,,,55 kW DCPM,MBX +0.192,0.0,0.0,6.0,122,121.66,0,0.0,0.0,28.0,0.0,0,-1,0.0,0.0,107,106.9856,0,0.0,32.0,0.0,0.0,,,Rear-Wheel Drive,704,,10,600,0,Electricity,Electricity,10,-1,93,93.24,0,0.0,0.0,36.0,0.0,0,0,34394,0,0,smart,fortwo electric drive coupe,N,false,0,0,68,76.0,0.0,59.0,0.0,Automatic (A1),173.8,0.0,133.2,0.0,Two Seaters,2014,9000,,,,,EV,,,55 kW DCPM,MBX +7.009706,0.0,0.0,0.0,50,49.8291,0,0.0,0.0,0.0,0.0,188,-1,0.0,188.0,47,47.3459,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,12,,10,1150,0,Regular,Regular Gasoline,10,-1,45,44.6276,0,0.0,0.0,0.0,0.0,0,0,34395,14,16,Honda,Accord Hybrid,N,false,92,103,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),70.2278,0.0,69.4883,0.0,Midsize Cars,2014,6250,,,,,Hybrid,,,259V Li-Ion,HNX +11.567466000000001,0.0,0.0,0.0,28,28.2285,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,33,33.07,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,304,,8,1800,0,Diesel,Diesel,7,-1,42,41.6529,0,0.0,0.0,0.0,0.0,0,0,34396,0,13,Mercedes-Benz,E250 Bluetec,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,36.7,0.0,59.5,0.0,Midsize Cars,2014,3000,,,T,,Diesel,,,,MBX +12.306357,0.0,0.0,0.0,27,27.1769,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,31,31.3136,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel Drive,305,,8,1900,0,Diesel,Diesel,7,-1,38,38.4705,0,0.0,0.0,0.0,0.0,0,0,34397,0,13,Mercedes-Benz,E250 Bluetec 4matic,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 7-spd,35.2,0.0,54.7,0.0,Midsize Cars,2014,2500,,,T,,Diesel,,,,MBX +10.613442000000001,0.0,0.0,0.0,27,27.3176,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,30.7942,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,62,,8,1800,0,Regular,Regular Gasoline,8,-1,36,36.4665,0,0.0,0.0,0.0,0.0,0,0,34398,0,13,Toyota,Corolla,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,35.4,0.0,51.7,0.0,Midsize Cars,2014,3000,,,,,,,,,TYX +10.283832,0.0,0.0,0.0,29,28.7861,0,0.0,0.0,0.0,0.0,276,-1,0.0,276.0,32,32.3347,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59,,8,1700,0,Regular,Regular Gasoline,8,-1,38,38.0707,0,0.0,0.0,0.0,0.0,0,0,34399,0,13,Toyota,Corolla,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.5,0.0,54.1,0.0,Midsize Cars,2014,3500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,344,13,0,Oldsmobile,Calais,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,41.0,0.0,Compact Cars,1985,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3440,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,34.0,0.0,Midsize Cars,1987,-1750,,,,,,,,, +10.283832,0.0,0.0,0.0,29,28.8579,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.0862,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,60,,8,1700,0,Regular,Regular Gasoline,8,-1,37,37.168,0,0.0,0.0,0.0,0.0,0,0,34400,0,13,Toyota,Corolla,N,false,0,98,0,0.0,0.0,0.0,0.0,Auto(AV-S7),37.6032,0.0,52.7481,0.0,Midsize Cars,2014,3500,,,,,,,,,TYX +10.613442000000001,0.0,0.0,0.0,28,27.9431,0,0.0,0.0,0.0,0.0,280,-1,0.0,280.0,31,31.3989,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,61,,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.9901,0,0.0,0.0,0.0,0.0,0,0,34401,0,13,Toyota,Corolla,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.2918,0.0,52.4821,0.0,Midsize Cars,2014,3000,,,,,,,,,TYX +9.404872000000001,0.0,0.0,0.0,30,30.4077,0,0.0,0.0,0.0,0.0,257,-1,0.0,257.0,35,34.6122,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,63,,9,1550,0,Regular,Regular Gasoline,9,-1,42,41.6511,0,0.0,0.0,0.0,0.0,0,0,34402,0,13,Toyota,Corolla LE Eco,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8449,0.0,59.4973,0.0,Midsize Cars,2014,4250,,,,,,,,,TYX +9.690534,0.0,0.0,0.0,30,30.3769,0,0.0,0.0,0.0,0.0,260,-1,0.0,260.0,34,33.9118,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64,2-mode (Normal/Eco) Transmission,8,1600,0,Regular,Regular Gasoline,8,-1,40,39.5346,0,0.0,0.0,0.0,0.0,0,0,34403,0,13,Toyota,Corolla LE Eco,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8,0.0,56.3,0.0,Midsize Cars,2014,4000,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,19.3608,0,0.0,0.0,0.0,0.0,417,-1,0.0,417.0,21,21.2013,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,54,,5,2600,0,Regular,Regular Gasoline,5,-1,24,23.9886,0,0.0,0.0,0.0,0.0,0,0,34404,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.3947,0.0,35.7101,0.0,Small Pickup Trucks 2WD,2014,-1000,,,,,,,,,TYX +14.327048,0.0,0.0,0.0,21,20.9177,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,23,22.5004,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,53,,6,2400,0,Regular,Regular Gasoline,6,-1,25,24.7932,0,0.0,0.0,0.0,0.0,0,0,34405,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.4999,0.0,36.6498,0.0,Small Pickup Trucks 2WD,2014,0,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.1329,0,0.0,0.0,0.0,0.0,468,-1,0.0,468.0,19,18.8386,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,7,,4,2900,0,Regular,Regular Gasoline,4,-1,21,21.4486,0,0.0,0.0,0.0,0.0,0,0,34406,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.4215,0.0,29.7611,0.0,Small Pickup Trucks 2WD,2014,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,16.2076,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.011,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,6,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,34407,0,0,Toyota,Tacoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2,0.0,28.9,0.0,Small Pickup Trucks 2WD,2014,-3250,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,18,18.2451,0,0.0,0.0,0.0,0.0,453,-1,0.0,453.0,19,19.4401,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,55,,4,2900,0,Regular,Regular Gasoline,4,-1,21,21.1317,0,0.0,0.0,0.0,0.0,0,0,34408,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.9,0.0,31.8,0.0,Small Pickup Trucks 4WD,2014,-2500,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,18,18.1319,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.1692,0,0.0,0.0,0.0,0.0,4,2.7,Part-time 4-Wheel Drive,56,,4,2900,0,Regular,Regular Gasoline,4,-1,21,20.6104,0,0.0,0.0,0.0,0.0,0,0,34409,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.749,0.0,30.7987,0.0,Small Pickup Trucks 4WD,2014,-2500,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3441,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Midsize Cars,1987,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.9794,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8087,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,9,,4,3050,0,Regular,Regular Gasoline,4,-1,21,20.7057,0,0.0,0.0,0.0,0.0,0,0,34410,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.9,0.0,28.7,0.0,Small Pickup Trucks 4WD,2014,-3250,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,16,15.5036,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.0045,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,8,,3,3250,0,Regular,Regular Gasoline,3,-1,19,19.2866,0,0.0,0.0,0.0,0.0,0,0,34411,0,0,Toyota,Tacoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2759,0.0,26.6793,0.0,Small Pickup Trucks 4WD,2014,-4250,,,,,,,,,TYX +21.974,0.0,0.0,0.0,13,12.9819,0,0.0,0.0,0.0,0.0,599,-1,0.0,599.0,15,14.8456,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,284,,2,3650,0,Regular,Regular Gasoline,2,-1,18,18.0048,0,0.0,0.0,0.0,0.0,0,0,34412,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.0021,0.0,24.8612,0.0,Standard Pickup Trucks 2WD,2014,-6250,,,,,,,,,NSX +21.974,6.806822,0.0,0.0,13,12.8272,9,9.4192,0.0,0.0,0.0,605,582,582.0,605.0,15,14.7114,11,10.8354,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,293,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,18,17.9304,13,13.2748,0.0,0.0,0.0,0,0,34413,0,0,Nissan,Titan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.8032,11.6046,24.7558,18.3279,Standard Pickup Trucks 2WD,2014,-6250,,,,,FFV,E85,310,,NSX +23.534154,0.0,0.0,0.0,12,12.1233,0,0.0,0.0,0.0,0.0,641,-1,0.0,641.0,14,13.8634,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,285,,2,3950,0,Regular,Regular Gasoline,2,-1,17,16.813,0,0.0,0.0,0.0,0.0,0,0,34414,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9002,0.0,23.1766,0.0,Standard Pickup Trucks 4WD,2014,-7750,,,,,,,,,NSX +23.534154,7.4910000000000005,0.0,0.0,12,12.1701,9,8.9821,0.0,0.0,0.0,636,615,615.0,636.0,14,13.9634,10,10.2408,0.0,0.0,0.0,8,5.6,4-Wheel Drive,294,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,17,17.0307,12,12.3574,0.0,0.0,0.0,0,0,34415,0,0,Nissan,Titan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,14.9602,11.0413,23.4839,17.0397,Standard Pickup Trucks 4WD,2014,-7750,,,,,FFV,E85,280,,NSX +14.327048,0.0,0.0,0.0,21,20.697,0,0.0,0.0,0.0,0.0,383,-1,0.0,383.0,23,23.2029,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,610,,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.233,0,0.0,0.0,0.0,0.0,0,0,34416,0,0,Jeep,Cherokee 4WD Active Drive II,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,26.2,0.0,38.0997,0.0,Small Sport Utility Vehicle 4WD,2014,0,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,19,18.806,0,0.0,0.0,0.0,0.0,416,-1,0.0,416.0,21,21.4357,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,915,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.8545,0,0.0,0.0,0.0,0.0,0,0,34417,0,0,Jeep,Cherokee 4WD Active Drive II,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,23.6499,0.0,36.1,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,CRX +16.4805,4.994,0.0,0.0,18,17.8696,13,13.2127,0.0,0.0,0.0,435,407,407.0,435.0,20,20.4556,15,15.1699,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,500,FFV,5,2750,3050,Gasoline or E85,Regular Gasoline,5,5,25,24.8511,19,18.5237,0.0,0.0,0.0,0,0,34418,0,0,Dodge,Durango RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8spd,22.3996,16.2994,34.6494,25.5965,Standard Sport Utility Vehicle 2WD,2014,-1750,,,,,FFV,E85,370,,CRX +19.381068,0.0,0.0,0.0,14,13.8324,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.7387,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,501,,3,3400,0,Midgrade,Midgrade Gasoline,3,-1,23,22.5224,0,0.0,0.0,0.0,0.0,0,0,34419,0,0,Dodge,Durango RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8spd,17.1,0.0,31.2987,0.0,Standard Sport Utility Vehicle 2WD,2014,-5000,,,,,,,,,CRX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3442,0,15,Rolls-Royce,Eight/Mulsan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1987,-18500,T,,,,,,,, +21.974,0.0,0.0,0.0,13,12.5521,0,0.0,0.0,0.0,0.0,604,-1,0.0,604.0,15,14.7224,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,282,,2,3650,0,Regular,Regular Gasoline,2,-1,19,18.6672,0,0.0,0.0,0.0,0.0,0,0,34420,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.4498,0.0,25.8,0.0,Standard Sport Utility Vehicle 2WD,2014,-6250,,,,,,,,,NSX +21.974,6.806822,0.0,0.0,12,12.4354,9,9.1843,0.0,0.0,0.0,608,589,589.0,608.0,15,14.6142,11,10.7159,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,291,FFV,2,3650,4150,Gasoline or E85,Regular Gasoline,2,2,19,18.5967,13,13.4591,0.0,0.0,0.0,0,0,34421,0,0,Nissan,Armada 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.3,11.3,25.7,18.6,Standard Sport Utility Vehicle 2WD,2014,-6250,,,,,FFV,E85,310,,NSX +20.589638,0.0,0.0,0.0,14,13.6005,0,0.0,0.0,0.0,0.0,542,-1,0.0,542.0,16,16.3779,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel Drive,505,,3,3600,0,Midgrade,Midgrade Gasoline,3,-1,22,21.8254,0,0.0,0.0,0.0,0.0,0,0,34422,0,0,Dodge,Durango AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8spd,16.8,0.0,30.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-6000,,,,,,,,,CRX +23.534154,0.0,0.0,0.0,12,12.2793,0,0.0,0.0,0.0,0.0,628,-1,0.0,628.0,14,14.1944,0,0.0,0.0,0.0,0.0,8,5.6,4-Wheel Drive,283,,2,3950,0,Regular,Regular Gasoline,2,-1,18,17.5375,0,0.0,0.0,0.0,0.0,0,0,34423,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1,0.0,24.2,0.0,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,,,,,NSX +23.534154,6.806822,0.0,0.0,12,12.3182,9,9.2693,0.0,0.0,0.0,626,593,593.0,626.0,14,14.2123,11,10.6574,0.0,0.0,0.0,8,5.6,4-Wheel Drive,292,FFV,2,3950,4150,Gasoline or E85,Regular Gasoline,2,2,18,17.5015,13,13.0451,0.0,0.0,0.0,0,0,34424,0,0,Nissan,Armada 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,15.1498,11.4,24.1491,18.0,Standard Sport Utility Vehicle 4WD,2014,-7750,,,,,FFV,E85,310,,NSX +0.264,0.0,0.0,6.0,78,78.4283,0,0.0,0.0,43.0,0.0,0,-1,0.0,0.0,76,76.169,0,0.0,44.0,0.0,0.0,,,Front-Wheel Drive,204,,10,800,0,Electricity,Electricity,10,-1,74,73.5784,0,0.0,0.0,46.0,0.0,0,0,34425,0,0,Toyota,RAV4 EV,N,false,0,0,103,107.0,0.0,98.9,0.0,Automatic (variable gear ratios),112.0404,0.0,105.112,0.0,Small Sport Utility Vehicle 2WD,2014,8000,,,,,EV,,,115 kW AC Induction,TYX +8.89947,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,238,-1,0.0,238.0,37,37.2348,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,34,,9,1500,0,Regular,Regular Gasoline,9,-1,39,39.003,0,0.0,0.0,0.0,0.0,0,0,34426,0,0,Honda,CR-Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),48.0,0.0,55.5,0.0,Two Seaters,2014,4500,,,,,Hybrid,,,144V Li-Ion,HNX +9.690534,0.0,0.0,0.0,31,31.1312,0,0.0,0.0,0.0,0.0,261,-1,0.0,261.0,34,34.0077,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,35,,8,1600,0,Regular,Regular Gasoline,8,-1,38,38.3373,0,0.0,0.0,0.0,0.0,0,0,34427,0,0,Honda,CR-Z,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,40.9,0.0,54.5,0.0,Two Seaters,2014,4000,,,,,Hybrid,,,144V Li-Ion,HNX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,22.1218,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,47, PFI,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,34428,11,0,Lexus,IS 350 C,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3,0.0,37.7,0.0,Subcompact Cars,2014,-1750,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,21.0648,0,0.0,0.0,0.0,0.0,359,-1,0.0,359.0,24,24.3978,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,81,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.2474,0,0.0,0.0,0.0,0.0,0,0,34429,11,0,Lexus,IS 250 C,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.7,0.0,42.5,0.0,Subcompact Cars,2014,-500,,,,,,,,,TYX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3443,0,15,Rolls-Royce,Eight/Mulsan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1987,-18500,T,,,,,,,, +12.657024,0.0,0.0,0.0,23,22.6973,0,0.0,0.0,0.0,0.0,347,-1,0.0,347.0,26,25.6859,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,83,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,30.6126,0,0.0,0.0,0.0,0.0,0,0,34430,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8385,0.0,43.7643,0.0,Subcompact Cars,2014,500,,,T,,,,,,VWX +11.75609,0.0,0.0,0.0,25,25.4044,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.3072,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,350,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.9021,0,0.0,0.0,0.0,0.0,0,0,34431,0,10,BMW,ActiveHybrid 3,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (S8),32.697,0.0,46.4069,0.0,Compact Cars,2014,1250,,,T,,Hybrid,,,374V Li-Ion,BMX +12.657024,0.0,0.0,0.0,23,22.6973,0,0.0,0.0,0.0,0.0,347,-1,0.0,347.0,26,25.6859,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,82,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,30.6126,0,0.0,0.0,0.0,0.0,15,85,34432,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.8385,0.0,43.7643,0.0,Compact Cars,2014,500,,,T,,,,,,VWX +12.657024,0.0,0.0,0.0,23,22.7855,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.6519,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,545,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,30,30.3125,0,0.0,0.0,0.0,0.0,0,0,34433,0,10,BMW,ActiveHybrid 5,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2943,0.0,41.9998,0.0,Midsize Cars,2014,500,,,T,,Hybrid,,,374V Li-Ion,BMX +14.964294,0.0,0.0,0.0,18,18.2846,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.8375,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,526,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,29,28.6392,0,0.0,0.0,0.0,0.0,0,0,34434,0,13,Cadillac,CTS Sedan,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),22.9527,0.0,40.1477,0.0,Midsize Cars,2014,-500,,,,,,,,,GMX +13.73375,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,23.7336,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,22,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,34435,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.3,0.0,43.1,0.0,Midsize Cars,2014,500,,,T,,,,,,KMX +12.19557,0.0,0.0,0.0,23,22.8137,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.753,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,23,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,34,33.9093,0,0.0,0.0,0.0,0.0,0,0,34436,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.0948,0.0,47.8971,0.0,Midsize Cars,2014,1750,,,,,,,,,KMX +17.337486000000002,0.0,0.0,0.0,15,15.4837,0,0.0,0.0,0.0,0.0,482,-1,0.0,482.0,19,18.5645,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,36,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5298,0,0.0,0.0,0.0,0.0,0,0,34437,0,10,Maserati,Ghibli V6,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 8spd,19.2499,0.0,34.1857,0.0,Midsize Cars,2014,-3750,,,T,,,,,,MAX +13.1844,0.0,0.0,0.0,22,22.4237,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.4387,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,745,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.4412,0,0.0,0.0,0.0,0.0,0,0,34438,0,10,BMW,ActiveHybrid 7L,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),28.2068,0.0,43.1262,0.0,Large Cars,2014,0,,,T,,Hybrid,,,374V Li-Ion,BMX +16.4805,0.0,0.0,0.0,17,16.8455,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,20.0453,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,202,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,26.1061,0,0.0,0.0,0.0,0.0,0,0,34439,0,12,Mercedes-Benz,S550,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.8,0.0,35.5,0.0,Large Cars,2014,-3000,,,T,,,,,,MBX +41.20125,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3444,0,15,Rolls-Royce,Eight/Mulsan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,12.8205,0.0,Midsize Cars,1987,-22500,T,,,,,,,, +15.689436,0.0,0.0,0.0,17,17.4965,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.7002,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,611,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.6685,0,0.0,0.0,0.0,0.0,0,0,34440,0,16,Porsche,Panamera S,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.9036,0.0,37.2798,0.0,Large Cars,2014,-2250,,,T,,,,,,PRX +15.689436,0.0,0.0,0.0,17,17.4965,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,21,20.7002,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,616,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.6685,0,0.0,0.0,0.0,0.0,0,0,34441,0,16,Porsche,Panamera 4S,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.9036,0.0,37.2798,0.0,Large Cars,2014,-2250,,,T,,,,,,PRX +27.4675,0.0,0.0,0.0,10,10.3937,0,0.0,0.0,0.0,0.0,763,-1,0.0,763.0,12,11.6593,0,0.0,0.0,0.0,0.0,10,6.8,Rear-Wheel Drive,18,,1,4600,0,Regular,Regular Gasoline,1,-1,14,13.6979,0,0.0,0.0,0.0,0.0,0,0,34442,0,0,Ford,E350 Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.7,0.0,18.8,0.0,"Vans, Cargo Type",2014,-11000,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.9689,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5234,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,12,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8392,0,0.0,0.0,0.0,0.0,0,0,34443,0,0,Hyundai,Santa Fe 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.5318,0.0,35.3982,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.1804,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,22.7768,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,27,27.0268,0,0.0,0.0,0.0,0.0,0,0,34444,0,0,Hyundai,Santa Fe Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.5,0.0,37.8,0.0,Small Sport Utility Vehicle 2WD,2014,0,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,19,19.067,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,21.8349,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,16,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,34445,0,0,Hyundai,Santa Fe Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.0,0.0,37.1,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,T,,,,,,HYX +14.327048,0.0,0.0,0.0,20,20.402,0,0.0,0.0,0.0,0.0,393,-1,0.0,393.0,23,22.6583,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,16,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,34446,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.8,0.0,36.6,0.0,Small Sport Utility Vehicle 2WD,2014,0,,,T,,,,,,KMX +15.689436,0.0,0.0,0.0,19,18.8433,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.2444,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,13,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1631,0,0.0,0.0,0.0,0.0,0,0,34447,0,0,Hyundai,Santa Fe Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.7,0.0,35.1,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,18,18.2698,0,0.0,0.0,0.0,0.0,426,-1,0.0,426.0,21,20.5985,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,15,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,24,24.3994,0,0.0,0.0,0.0,0.0,0,0,34448,0,0,Hyundai,Santa Fe Sport 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.933,0.0,33.9977,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,T,,,,,,HYX +16.4805,0.0,0.0,0.0,18,17.7297,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,19.9911,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel Drive,17,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.6832,0,0.0,0.0,0.0,0.0,0,0,34449,0,0,Hyundai,Santa Fe 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.2134,0.0,34.6206,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,HYX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3445,0,15,Rolls-Royce,Silver Spirit/Silver Spur,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1987,-18500,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,17.5691,0,0.0,0.0,0.0,0.0,439,-1,0.0,439.0,20,20.2481,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel Drive,916,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.8862,0,0.0,0.0,0.0,0.0,0,0,34450,0,0,Jeep,Cherokee Trailhawk 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,22.0,0.0,34.7,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,19,18.6193,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,20.8187,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,15,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,24,24.3317,0,0.0,0.0,0.0,0.0,0,0,34451,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,33.9,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,T,,,,,,KMX +17.337486000000002,0.0,0.0,0.0,17,16.8885,0,0.0,0.0,0.0,0.0,467,-1,0.0,467.0,19,18.9131,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,4,,4,2900,0,Regular,Regular Gasoline,4,-1,22,22.16,0,0.0,0.0,0.0,0.0,0,0,34452,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),21.0981,0.0,30.7792,0.0,Standard Sport Utility Vehicle 2WD,2014,-2500,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5707,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,18,18.41,0,0.0,0.0,0.0,0.0,6,4.0,Part-time 4-Wheel Drive,5,Part Time 4WD,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2997,0,0.0,0.0,0.0,0.0,0,0,34453,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6784,0.0,29.5482,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,16.5707,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,18,18.41,0,0.0,0.0,0.0,0.0,6,4.0,All-Wheel Drive,201,Full Time 4WD,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2997,0,0.0,0.0,0.0,0.0,0,0,34454,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),20.6784,0.0,29.5482,0.0,Standard Sport Utility Vehicle 4WD,2014,-3250,,,,,,,,,TYX +10.987,0.0,0.0,0.0,26,25.9755,0,0.0,0.0,0.0,0.0,294,-1,0.0,294.0,30,30.2896,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,211,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,38,38.004,0,0.0,0.0,0.0,0.0,0,0,34455,0,13,Mercedes-Benz,CLA250,N,false,0,88,0,0.0,0.0,0.0,0.0,Auto(AM7),33.5,0.0,54.0,0.0,Compact Cars,2014,2000,,,T,,,,,,MBX +11.75609,0.0,0.0,0.0,24,23.7731,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,28,27.643,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,3,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.5087,0,0.0,0.0,0.0,0.0,0,0,34456,0,16,Hyundai,Sonata,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.4211,0.0,48.7859,0.0,Large Cars,2014,2250,,,,,,,,,HYX +16.4805,0.0,0.0,0.0,18,18.32,0,0.0,0.0,0.0,0.0,438,-1,0.0,438.0,20,20.4066,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,91,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.7068,0,0.0,0.0,0.0,0.0,0,0,34457,0,0,Nissan,Murano FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),23.0,0.0,33.0,0.0,Small Sport Utility Vehicle 2WD,2014,-1750,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,18,17.9687,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,20.0687,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,92,,5,2750,0,Regular,Regular Gasoline,5,-1,23,23.413,0,0.0,0.0,0.0,0.0,0,0,34458,0,0,Nissan,Murano AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),22.5315,0.0,32.5774,0.0,Small Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,16.9158,0,0.0,0.0,0.0,0.0,8,4.6,4-Wheel Drive,18,,3,3550,0,Premium,Premium Gasoline,3,-1,20,20.0743,0,0.0,0.0,0.0,0.0,0,0,34459,0,0,Lexus,GX 460,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6,0.0,27.8,0.0,Standard Sport Utility Vehicle 4WD,2014,-5750,,,,,,,,,TYX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3446,0,15,Rolls-Royce,Silver Spirit/Silver Spur,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1987,-18500,T,,,,,,,, +9.141184,0.0,0.0,0.0,34,34.4631,0,0.0,0.0,0.0,0.0,243,-1,0.0,243.0,36,36.0376,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,702,,9,1700,0,Premium,Premium Gasoline,9,-1,38,38.1688,0,0.0,0.0,0.0,0.0,0,0,34460,0,0,smart,fortwo coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1,0.0,58.5,0.0,Two Seaters,2014,3500,,,,,,,,,MBX +9.141184,0.0,0.0,0.0,34,34.4631,0,0.0,0.0,0.0,0.0,243,-1,0.0,243.0,36,36.0376,0,0.0,0.0,0.0,0.0,3,1.0,Rear-Wheel Drive,703,,9,1700,0,Premium,Premium Gasoline,9,-1,38,38.1688,0,0.0,0.0,0.0,0.0,0,0,34461,0,0,smart,fortwo cabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM5),45.1,0.0,58.5,0.0,Two Seaters,2014,3500,,,,,,,,,MBX +16.4805,0.0,0.0,0.0,17,17.1697,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.8323,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,521,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.4702,0,0.0,0.0,0.0,0.0,0,0,34462,5,0,Porsche,911 Turbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.4702,0.0,34.0997,0.0,Minicompact Cars,2014,-3000,,,T,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.1697,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.8323,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,522,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.4702,0,0.0,0.0,0.0,0.0,0,0,34463,5,0,Porsche,911 Turbo Cabriolet,N,false,68,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.4702,0.0,34.0997,0.0,Minicompact Cars,2014,-3000,,,T,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.1697,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.8323,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,523,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.4702,0,0.0,0.0,0.0,0.0,0,0,34464,5,0,Porsche,911 Turbo S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.4702,0.0,34.0997,0.0,Minicompact Cars,2014,-3000,,,T,,,,,,PRX +16.4805,0.0,0.0,0.0,17,17.1697,0,0.0,0.0,0.0,0.0,448,-1,0.0,448.0,20,19.8323,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,524,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.4702,0,0.0,0.0,0.0,0.0,0,0,34465,5,0,Porsche,911 Turbo S Cabriolet,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.4702,0.0,34.0997,0.0,Minicompact Cars,2014,-3000,,,T,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.3,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.2,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,541,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1,0,0.0,0.0,0.0,0.0,0,0,34466,5,0,Porsche,911 Targa 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 7-spd,23.0,0.0,36.5,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +14.964294,0.0,0.0,0.0,19,19.1,0,0.0,0.0,0.0,0.0,407,-1,0.0,407.0,22,21.8,0,0.0,0.0,0.0,0.0,6,3.4,4-Wheel Drive,542,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,26,26.4,0,0.0,0.0,0.0,0.0,0,0,34467,5,0,Porsche,911 Targa 4,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),24.1,0.0,36.9,0.0,Minicompact Cars,2014,-1750,,,,,,,,,PRX +8.89947,0.0,0.0,0.0,32,31.8621,0,0.0,0.0,0.0,0.0,240,-1,0.0,240.0,37,36.7439,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,462,SIDI,9,1500,0,Regular,Regular Gasoline,9,-1,45,45.2103,0,0.0,0.0,0.0,0.0,15,85,34468,0,12,Ford,Fiesta SFE FWD,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.9715,0.0,64.9187,0.0,Subcompact Cars,2014,4500,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.7509,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,18,18.3771,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,58, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0807,0,0.0,0.0,0.0,0.0,0,0,34469,0,11,Lexus,IS F,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic (S8),19.6,0.0,32.1,0.0,Subcompact Cars,2014,-4750,,,,,,,,,TYX +41.20125,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3447,0,15,Rolls-Royce,Silver Spirit/Silver Spur,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,12.8205,0.0,Midsize Cars,1987,-22500,T,,,,,,,, +12.19557,0.0,0.0,0.0,23,23.2484,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,27,27.336,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,7,,7,2050,0,Regular,Regular Gasoline,7,-1,35,34.8184,0,0.0,0.0,0.0,0.0,13,97,34470,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.6946,0.0,49.2459,0.0,Midsize Cars,2014,1750,,,,,,,,,CRX +10.283832,0.0,0.0,0.0,28,27.8786,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.1924,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,12,,8,1900,0,Premium,Premium Gasoline,8,-1,40,39.7006,0,0.0,0.0,0.0,0.0,13,97,34471,0,0,Dodge,Dart Aero,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),36.1997,0.0,56.55,0.0,Midsize Cars,2014,2500,,,T,,,,,,CRX +10.283832,0.0,0.0,0.0,28,27.7,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.4,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,13,,8,1900,0,Premium,Premium Gasoline,8,-1,41,40.7,0,0.0,0.0,0.0,0.0,13,97,34472,0,0,Dodge,Dart Aero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,36.0,0.0,58.0,0.0,Midsize Cars,2014,2500,,,T,,,,,,CRX +12.19557,3.9402660000000003,0.0,0.0,24,23.7911,17,16.5112,0.0,0.0,0.0,324,323,323.0,324.0,27,27.3911,19,19.2438,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,53,FFV,7,2050,2400,Gasoline or E85,Regular Gasoline,7,7,34,33.6065,24,24.1235,0.0,0.0,0.0,13,97,34473,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.446,20.6,47.4487,33.6,Midsize Cars,2014,1750,,,,,FFV,E85,270,,CRX +11.360558000000001,0.0,0.0,0.0,25,25.014,0,0.0,0.0,0.0,0.0,305,-1,0.0,305.0,29,29.0826,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,190,,7,1900,0,Regular,Regular Gasoline,7,-1,36,36.2989,0,0.0,0.0,0.0,0.0,13,97,34474,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.1499,0.0,51.45,0.0,Midsize Cars,2014,2500,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,22,22.2354,0,0.0,0.0,0.0,0.0,346,-1,0.0,346.0,26,25.609,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,336,,7,2100,0,Regular,Regular Gasoline,7,-1,31,31.4389,0,0.0,0.0,0.0,0.0,13,97,34475,0,0,Dodge,Dart GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.2996,0.0,44.2499,0.0,Midsize Cars,2014,1500,,,,,,,,,CRX +12.19557,0.0,0.0,0.0,23,22.9616,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.7206,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,337,,7,2050,0,Regular,Regular Gasoline,7,-1,33,33.4044,0,0.0,0.0,0.0,0.0,13,97,34476,0,0,Dodge,Dart GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,29.2986,0.0,47.1495,0.0,Midsize Cars,2014,1750,,,,,,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.1503,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,21, PFI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,34477,0,14,Lexus,LS 460,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),20.3,0.0,34.0,0.0,Midsize Cars,2014,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.1853,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,22, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34478,0,14,Lexus,LS 460 AWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic (S8),19.3,0.0,32.0,0.0,Midsize Cars,2014,-4750,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,16,16.2835,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.1503,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,23, PFI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.401,0,0.0,0.0,0.0,0.0,0,0,34479,0,14,Lexus,LS 460 L,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),20.3,0.0,34.0,0.0,Midsize Cars,2014,-3750,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3448,0,17,Volvo,740/760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize Cars,1987,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.522,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.1853,0,0.0,0.0,0.0,0.0,8,4.6,All-Wheel Drive,24, PFI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34480,0,14,Lexus,LS 460 L AWD,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),19.3,0.0,32.0,0.0,Midsize Cars,2014,-4750,,,,,,,,,TYX +8.24025,0.0,0.0,0.0,40,40.329,0,0.0,0.0,0.0,0.0,223,-1,0.0,223.0,40,39.6307,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,28,,9,1400,0,Regular,Regular Gasoline,9,-1,39,38.8094,0,0.0,0.0,0.0,0.0,0,0,34481,0,12,Lexus,ES 300h,N,false,0,100,0,0.0,0.0,0.0,0.0,Auto(AV-S6),56.1,0.0,54.2,0.0,Midsize Cars,2014,5000,,,,,Hybrid,,,245V Ni-MH,TYX +13.73375,0.0,0.0,0.0,21,20.7212,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.3596,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,33,,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.0159,0,0.0,0.0,0.0,0.0,0,0,34482,0,15,Lexus,ES 350,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2329,0.0,43.628,0.0,Midsize Cars,2014,500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,18.5985,0,0.0,0.0,0.0,0.0,413,-1,0.0,413.0,21,21.3907,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,44, PFI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1977,0,0.0,0.0,0.0,0.0,0,0,34483,0,14,Lexus,GS 350 AWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S6),23.5485,0.0,36.0683,0.0,Midsize Cars,2014,-2250,,,,,,,,,TYX +10.613442000000001,0.0,0.0,0.0,29,29.3425,0,0.0,0.0,0.0,0.0,283,-1,0.0,283.0,31,31.3435,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,48, PFI,8,1950,0,Premium,Premium Gasoline,8,-1,34,34.1936,0,0.0,0.0,0.0,0.0,0,0,34484,0,13,Lexus,GS 450h,N,false,0,99,0,0.0,0.0,0.0,0.0,Auto(AV-S8),39.7,0.0,44.3,0.0,Midsize Cars,2014,2250,,,,,Hybrid,,,288V Ni-MH,TYX +16.4805,0.0,0.0,0.0,19,18.5663,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,20,20.4157,0,0.0,0.0,0.0,0.0,8,5.0,All-Wheel Drive,57, PFI,5,3000,0,Premium,Premium Gasoline,5,-1,23,23.2459,0,0.0,0.0,0.0,0.0,0,0,34485,0,10,Lexus,LS 600h L,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AV-S8),24.7,0.0,30.3,0.0,Midsize Cars,2014,-3000,,,,,Hybrid,,,288V Ni-MH,TYX +8.24025,0.0,0.0,0.0,40,40.329,0,0.0,0.0,0.0,0.0,223,-1,0.0,223.0,40,39.6307,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,27,,9,1400,0,Regular,Regular Gasoline,9,-1,39,38.8094,0,0.0,0.0,0.0,0.0,0,0,34486,0,14,Toyota,Avalon Hybrid,N,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AV-S6),56.1,0.0,54.2,0.0,Midsize Cars,2014,5000,,,,,Hybrid,,,245V Ni-MH,TYX +13.1844,0.0,0.0,0.0,21,21.3584,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.7541,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,31,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,34487,0,16,Toyota,Avalon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),27.1,0.0,43.2,0.0,Midsize Cars,2014,1000,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,20.7212,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,24,24.3596,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,32,3-mode (Power/Normal/Eco) Transmission,6,2300,0,Regular,Regular Gasoline,6,-1,31,31.0159,0,0.0,0.0,0.0,0.0,0,0,34488,0,16,Toyota,Avalon,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S6),26.2329,0.0,43.628,0.0,Midsize Cars,2014,500,,,,,,,,,TYX +6.5922,0.0,0.0,0.0,51,50.6722,0,0.0,0.0,0.0,0.0,179,-1,0.0,179.0,50,49.5081,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,68,,10,1100,0,Regular,Regular Gasoline,10,-1,48,48.156,0,0.0,0.0,0.0,0.0,22,94,34489,0,0,Toyota,Prius,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.651,0.0,69.4488,0.0,Midsize Cars,2014,6500,,,,,Hybrid,,,202V Ni-MH,TYX +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3449,0,17,Volvo,740/760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Midsize Cars,1987,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,21,20.7538,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.5254,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,2,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,32,31.5283,0,0.0,0.0,0.0,0.0,0,0,34490,0,16,Hyundai,Sonata,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.2771,0.0,44.3814,0.0,Large Cars,2014,1000,,,T,,,,,,HYX +12.657024,0.0,0.0,0.0,24,23.974,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,26,26.3712,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,17,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.0427,0,0.0,0.0,0.0,0.0,0,0,34491,0,24,Kia,Soul,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.7,0.0,42.2,0.0,Small Station Wagons,2014,1500,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,24,23.6858,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.2017,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,18,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,30,30.1109,0,0.0,0.0,0.0,0.0,0,0,34492,0,24,Kia,Soul,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.3,0.0,42.3,0.0,Small Station Wagons,2014,1500,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,24,24.1899,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.6801,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,31,30.5201,0,0.0,0.0,0.0,0.0,0,0,34493,0,24,Kia,Soul ECO dynamics,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,31.0,0.0,42.9,0.0,Small Station Wagons,2014,1750,,,,,,,,,KMX +12.657024,0.0,0.0,0.0,23,23.3091,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,26.1115,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,20,SIDI,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.6092,0,0.0,0.0,0.0,0.0,0,0,34494,0,24,Kia,Soul,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 6-spd,29.7785,0.0,43.0308,0.0,Small Station Wagons,2014,1500,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,27,26.8234,0,0.0,0.0,0.0,0.0,308,-1,0.0,308.0,29,28.9521,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,121,,7,2100,0,Premium,Premium Gasoline,7,-1,32,32.062,0,0.0,0.0,0.0,0.0,0,0,34495,0,10,Nissan,Juke,N,false,0,87,0,0.0,0.0,0.0,0.0,Auto(AV-S6),34.6982,0.0,45.1673,0.0,Small Station Wagons,2014,1500,,,T,,,,,,NSX +12.19557,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,27.2747,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,122,,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,34496,0,10,Nissan,Juke,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0,0.0,43.4,0.0,Small Station Wagons,2014,750,,,T,,,,,,NSX +12.19557,0.0,0.0,0.0,25,25.264,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.1104,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,123,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,34497,0,10,Nissan,Juke AWD,N,false,0,87,0,0.0,0.0,0.0,0.0,Auto(AV-S6),32.5,0.0,41.8,0.0,Small Station Wagons,2014,750,,,T,,,,,,NSX +19.381068,0.0,0.0,0.0,15,14.5005,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.7387,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,551,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,20.6307,0,0.0,0.0,0.0,0.0,0,0,34498,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.9669,0.0,28.593,0.0,Standard Pickup Trucks 2WD,2014,-4250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,18.2448,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.8737,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,956,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.3357,0,0.0,0.0,0.0,0.0,0,0,34499,0,0,Ram,1500 HFE 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,22.8996,0.0,35.3494,0.0,Standard Pickup Trucks 2WD,2014,-1000,,,,,,,,,CRX +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4232,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,345,13,0,Oldsmobile,Calais,N,false,91,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3450,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize Cars,1987,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,14,14.3721,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,17,16.5208,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,554,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,20,20.2147,0,0.0,0.0,0.0,0.0,0,0,34500,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.8,0.0,28.0,0.0,Standard Pickup Trucks 4WD,2014,-4250,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,14,14.3721,0,0.0,0.0,0.0,0.0,538,-1,0.0,538.0,17,16.5208,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,557,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,20,20.2147,0,0.0,0.0,0.0,0.0,0,0,34501,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.8,0.0,28.0,0.0,Standard Pickup Trucks 4WD,2014,-4250,,,,,,,,,GMX +23.534154,7.4910000000000005,0.0,0.0,13,12.6691,9,9.0958,0.0,0.0,0.0,634,623,623.0,634.0,14,14.0198,10,10.1052,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,376,FFV,2,3950,4550,Gasoline or E85,Regular Gasoline,2,2,16,16.1203,12,11.6908,0.0,0.0,0.0,0,0,34502,0,0,Ford,E150 Wagon FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.6,11.2,22.2,16.1,"Vans, Passenger Type",2014,-7750,,,,,FFV,E85,332,,FMX +14.327048,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.1617,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,433,,6,2400,0,Regular,Regular Gasoline,6,-1,28,28.0901,0,0.0,0.0,0.0,0.0,0,0,34503,0,0,Ford,Transit Connect Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,39.3469,0.0,Special Purpose Vehicle 2WD,2014,0,,,,,,,,,FMX +13.73375,0.0,0.0,0.0,21,20.7706,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.6697,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,445,,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,34504,0,0,Ford,Transit Connect Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.3,0.0,40.0,0.0,Special Purpose Vehicle 2WD,2014,500,,,,,,,,,FMX +14.327048,0.0,0.0,0.0,20,19.6619,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,23,22.6194,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,452,,6,2400,0,Regular,Regular Gasoline,6,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,34505,0,0,Ford,Transit Connect Wagon LWB FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.8,0.0,38.8,0.0,Special Purpose Vehicle 2WD,2014,0,,,,,,,,,FMX +13.1844,0.0,0.0,0.0,22,21.7977,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,25.117,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,27,,6,2200,0,Regular,Regular Gasoline,6,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,34506,0,0,Honda,Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,27.7,0.0,43.4,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,20,19.8102,0,0.0,0.0,0.0,0.0,382,-1,0.0,382.0,23,23.3211,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,28,,6,2400,0,Regular,Regular Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,34507,0,0,Honda,Crosstour 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.0,0.0,41.8,0.0,Small Sport Utility Vehicle 2WD,2014,0,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,22,21.9439,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.8498,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,157,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,34508,0,0,Jeep,Patriot FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.9,0.0,37.3,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,21.9439,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.8498,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,158,,6,2300,0,Regular,Regular Gasoline,6,-1,27,26.6824,0,0.0,0.0,0.0,0.0,0,0,34509,0,0,Jeep,Compass FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),27.9,0.0,37.3,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3451,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1987,-1750,,SIL,T,,,,,, +13.73375,0.0,0.0,0.0,21,20.6107,0,0.0,0.0,0.0,0.0,373,-1,0.0,373.0,24,23.5081,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,14,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,28,28.385,0,0.0,0.0,0.0,0.0,0,0,34510,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.0829,0.0,39.7769,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,,,,,,,KMX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.9776,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,29,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.7832,0,0.0,0.0,0.0,0.0,0,0,34511,0,0,Honda,Crosstour 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.9,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,HNX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.6442,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,611,,5,2500,0,Regular,Regular Gasoline,5,-1,25,25.1281,0,0.0,0.0,0.0,0.0,0,0,34512,0,0,Jeep,Cherokee Trailhawk 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 9-spd,24.5,0.0,35.0494,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,CRX +14.964294,0.0,0.0,0.0,19,19.4765,0,0.0,0.0,0.0,0.0,400,-1,0.0,400.0,22,21.96,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel Drive,13,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,26,26.0142,0,0.0,0.0,0.0,0.0,0,0,34513,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.5503,0.0,36.3312,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,,,,,,,KMX +25.336022,0.0,0.0,0.0,12,11.7318,0,0.0,0.0,0.0,0.0,686,-1,0.0,686.0,13,12.9281,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,435,,1,4650,0,Premium,Premium Gasoline,1,-1,15,14.7687,0,0.0,0.0,0.0,0.0,0,0,34514,0,0,Mercedes-Benz,G550,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.4,0.0,20.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-11250,,,,,,,,,MBX +25.336022,0.0,0.0,0.0,12,11.8014,0,0.0,0.0,0.0,0.0,696,-1,0.0,696.0,13,12.7719,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,440,SIDI,1,4650,0,Premium,Premium Gasoline,1,-1,14,14.1992,0,0.0,0.0,0.0,0.0,0,0,34515,0,0,Mercedes-Benz,G63 AMG,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,14.9,0.0,20.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-11250,,,T,,,,,,MBX +4.7371439591836735,3.4499180000000003,0.0,1.5,51,50.5282,90,90.2714,0.35,26.0,0.32,133,-1,0.0,133.0,50,49.7021,95,95.3887,29.0,0.1907,0.29,4,1.8,Front-Wheel Drive,70,PHEV,10,1100,0,Regular Gas and Electricity,Regular Gasoline,10,-1,49,48.7284,102,102.4898,0.0,33.0,0.25,22,94,34516,0,0,Toyota,Prius Plug-in Hybrid,N,true,0,0,0,0.0,12.15,0.0,9.1,Automatic (variable gear ratios),70.9,128.9591,68.4,146.414,Midsize Cars,2014,7250,,,,,Plug-in Hybrid,Electricity,11,18 kW,TYX +14.327048,0.0,0.0,0.0,19,19.1452,0,0.0,0.0,0.0,0.0,392,-1,0.0,392.0,23,22.5206,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,84, PFI,6,2600,0,Premium,Premium Gasoline,6,-1,29,28.7062,0,0.0,0.0,0.0,0.0,0,0,34517,0,14,Lexus,GS 350,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S8),24.4716,0.0,38.952,0.0,Midsize Cars,2014,-1000,,,,,,,,,TYX +17.337486000000002,0.0,0.0,0.0,17,17.2983,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3602,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,83,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.6617,0,0.0,0.0,0.0,0.0,0,0,34518,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,21.6407,0.0,31.4985,0.0,Small Pickup Trucks 2WD,2014,-2500,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,19,19.39,0,0.0,0.0,0.0,0.0,424,-1,0.0,424.0,21,20.9124,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,84,,5,2600,0,Regular,Regular Gasoline,5,-1,23,23.1323,0,0.0,0.0,0.0,0.0,0,0,34519,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4339,0.0,32.1741,0.0,Small Pickup Trucks 2WD,2014,-1000,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60042,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3452,0,17,Volvo,740/760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Midsize Cars,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.7391,0,0.0,0.0,0.0,0.0,489,-1,0.0,489.0,18,18.2243,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,181,,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.5823,0,0.0,0.0,0.0,0.0,0,0,34520,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.5846,0.0,31.3846,0.0,Small Pickup Trucks 2WD,2014,-3250,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.2802,0,0.0,0.0,0.0,0.0,480,-1,0.0,480.0,19,18.5026,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,182,,4,2900,0,Regular,Regular Gasoline,4,-1,22,22.208,0,0.0,0.0,0.0,0.0,0,0,34521,0,0,Nissan,Frontier 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.2956,0.0,30.848,0.0,Small Pickup Trucks 2WD,2014,-2500,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,15.0244,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.2234,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,183,,3,3250,0,Regular,Regular Gasoline,3,-1,21,20.9756,0,0.0,0.0,0.0,0.0,0,0,34522,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.6495,0.0,29.0852,0.0,Small Pickup Trucks 4WD,2014,-4250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.7836,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8567,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,184,,4,3050,0,Regular,Regular Gasoline,4,-1,21,21.2715,0,0.0,0.0,0.0,0.0,0,0,34523,0,0,Nissan,Frontier 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.6429,0.0,29.5079,0.0,Small Pickup Trucks 4WD,2014,-3250,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.1598,0,0.0,0.0,0.0,0.0,483,-1,0.0,483.0,18,18.4301,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,421,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.2509,0,0.0,0.0,0.0,0.0,0,0,34524,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.1372,0.0,30.9094,0.0,Standard Pickup Trucks 2WD,2014,-3250,,,T,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.1205,0,0.0,0.0,0.0,0.0,484,-1,0.0,484.0,18,18.3835,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,364,SIDI,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.1909,0,0.0,0.0,0.0,0.0,0,0,34525,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),20.0855,0.0,30.8234,0.0,Standard Pickup Trucks 2WD,2014,-3250,,,T,,,,,,FMX +21.974,0.0,0.0,0.0,13,12.8248,0,0.0,0.0,0.0,0.0,601,-1,0.0,601.0,15,14.7826,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,360,,2,3650,0,Regular,Regular Gasoline,2,-1,18,18.1734,0,0.0,0.0,0.0,0.0,0,0,34526,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8,0.0,25.1,0.0,Standard Pickup Trucks 2WD,2014,-6250,,,,,,,,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.8386,12,12.3908,0.0,0.0,0.0,464,442,442.0,464.0,19,19.1654,14,14.1529,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,358,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,23.0601,17,17.1305,0.0,0.0,0.0,0,0,34527,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.0321,15.4766,32.0704,23.8239,Standard Pickup Trucks 2WD,2014,-2500,,,,,FFV,E85,364/504,,FMX +17.337486000000002,5.348574,0.0,0.0,17,16.8393,12,12.3913,0.0,0.0,0.0,464,442,442.0,464.0,19,19.1663,14,14.1535,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,359,FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,5,23,23.0612,17,17.1314,0.0,0.0,0.0,0,0,34528,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.0331,15.4773,32.0719,23.8251,Standard Pickup Trucks 2WD,2014,-2500,,,,,FFV,E85,364/504,,FMX +19.381068,5.758082,0.0,0.0,15,15.0352,11,11.1032,0.0,0.0,0.0,518,499,499.0,518.0,17,17.1355,13,12.6284,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,369,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,20.6637,15,15.1765,0.0,0.0,0.0,0,0,34529,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.6635,13.7827,28.64,21.0347,Standard Pickup Trucks 2WD,2014,-4250,,,,,FFV,E85,338/468,,FMX +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60050,(VOLVO760) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3453,0,17,Volvo,740/760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Midsize Cars,1987,-4250,,,,,,,,, +19.381068,5.758082,0.0,0.0,15,15.0328,11,11.1018,0.0,0.0,0.0,519,499,499.0,519.0,17,17.133,13,12.6268,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,370,FFV,3,3250,3500,Gasoline or E85,Regular Gasoline,3,4,21,20.6611,15,15.1745,0.0,0.0,0.0,0,0,34530,0,0,Ford,F150 Pickup 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.6604,13.7808,28.6363,21.0319,Standard Pickup Trucks 2WD,2014,-4250,,,,,FFV,E85,338/468,,FMX +19.381068,0.0,0.0,0.0,15,14.8798,0,0.0,0.0,0.0,0.0,523,-1,0.0,523.0,17,17.0567,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,420,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,20.7706,0,0.0,0.0,0.0,0.0,0,0,34531,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.4608,0.0,28.7926,0.0,Standard Pickup Trucks 4WD,2014,-4250,,,T,,,,,,FMX +19.381068,0.0,0.0,0.0,15,15.1931,0,0.0,0.0,0.0,0.0,512,-1,0.0,512.0,17,17.4586,0,0.0,0.0,0.0,0.0,6,3.5,Part-time 4-Wheel Drive,367,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,21.3496,0,0.0,0.0,0.0,0.0,0,0,34532,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8698,0.0,29.6195,0.0,Standard Pickup Trucks 4WD,2014,-4250,,,T,,,,,,FMX +25.336022,0.0,0.0,0.0,12,11.6917,0,0.0,0.0,0.0,0.0,664,-1,0.0,664.0,13,13.3823,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,361,,1,4250,0,Regular,Regular Gasoline,1,-1,16,16.2551,0,0.0,0.0,0.0,0.0,0,0,34533,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.3488,0.0,22.3899,0.0,Standard Pickup Trucks 4WD,2014,-9250,,,,,,,,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.6523,11,11.4357,0.0,0.0,0.0,507,488,488.0,507.0,18,17.5373,13,12.8779,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,356,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.564,15,15.2246,0.0,0.0,0.0,0,0,34534,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.4708,14.2255,28.4979,21.0984,Standard Pickup Trucks 4WD,2014,-3250,,,,,FFV,E85,338/468,,FMX +18.304342000000002,5.758082,0.0,0.0,16,15.6497,11,11.4332,0.0,0.0,0.0,507,488,488.0,507.0,18,17.5347,13,12.8756,0.0,0.0,0.0,6,3.7,Part-time 4-Wheel Drive,357,FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,21,20.5619,15,15.223,0.0,0.0,0.0,0,0,34535,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4673,14.2223,28.4948,21.0961,Standard Pickup Trucks 4WD,2014,-3250,,,,,FFV,E85,338/468,,FMX +20.589638,6.242500000000001,0.0,0.0,14,13.9951,10,10.3194,0.0,0.0,0.0,564,542,542.0,564.0,16,15.7647,12,11.596,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,371,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.6466,14,13.6616,0.0,0.0,0.0,0,0,34536,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.3107,12.7642,25.7707,18.8812,Standard Pickup Trucks 4WD,2014,-5250,,,,,FFV,E85,312/432,,FMX +20.589638,6.242500000000001,0.0,0.0,14,14.0701,10,10.404,0.0,0.0,0.0,559,537,537.0,559.0,16,15.896,12,11.7115,0.0,0.0,0.0,8,5.0,Part-time 4-Wheel Drive,372,FFV,3,3450,3800,Gasoline or E85,Regular Gasoline,3,3,19,18.8924,14,13.8369,0.0,0.0,0.0,0,0,34537,0,0,Ford,F150 Pickup 4WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.408,12.8722,26.1195,19.1301,Standard Pickup Trucks 4WD,2014,-5250,,,,,FFV,E85,312/432,,FMX +25.336022,0.0,0.0,0.0,11,11.4966,0,0.0,0.0,0.0,0.0,680,-1,0.0,680.0,13,13.0696,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,362,,1,4250,0,Regular,Regular Gasoline,1,-1,16,15.694,0,0.0,0.0,0.0,0.0,0,0,34538,0,0,Ford,F150 Raptor Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.1,0.0,21.6,0.0,Standard Pickup Trucks 4WD,2014,-9250,,,,,,,,,FMX +18.304342000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,489,-1,0.0,489.0,18,18.2092,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,483,,4,3050,0,Regular,Regular Gasoline,4,-1,22,22.3141,0,0.0,0.0,0.0,0.0,0,0,34539,0,0,Nissan,Xterra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.0,0.0,Small Sport Utility Vehicle 2WD,2014,-3250,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48106,"(FFS,TRBO) (MPFI)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,18,95,3454,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Midsize Cars,1987,-4250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,14.6796,0,0.0,0.0,0.0,0.0,532,-1,0.0,532.0,17,16.7426,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,185,,3,3250,0,Regular,Regular Gasoline,3,-1,20,20.2147,0,0.0,0.0,0.0,0.0,0,0,34540,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.2,0.0,28.0,0.0,Small Sport Utility Vehicle 4WD,2014,-4250,,,,,,,,,NSX +19.381068,0.0,0.0,0.0,16,15.5051,0,0.0,0.0,0.0,0.0,518,-1,0.0,518.0,17,17.1929,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel Drive,186,,3,3250,0,Regular,Regular Gasoline,3,-1,20,19.8314,0,0.0,0.0,0.0,0.0,0,0,34541,0,0,Nissan,Xterra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.2779,0.0,27.4541,0.0,Small Sport Utility Vehicle 4WD,2014,-4250,,,,,,,,,NSX +12.657024,0.0,0.0,0.0,26,27.1764,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,26,28.0889,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,691,,7,2100,0,Regular,Regular Gasoline,7,-1,28,29.2905,0,0.0,0.0,0.0,0.0,0,0,34542,0,0,Infiniti,QX60 Hybrid FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),35.1997,0.0,41.099,0.0,Standard Sport Utility Vehicle 2WD,2014,1500,,,,S,Hybrid,,,144V Li-Ion,NSX +12.657024,0.0,0.0,0.0,25,26.9432,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,26,27.8713,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,693,,7,2100,0,Regular,Regular Gasoline,7,-1,28,29.0962,0,0.0,0.0,0.0,0.0,0,0,34543,0,0,Nissan,Pathfinder Hybrid 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.8682,0.0,40.815,0.0,Standard Sport Utility Vehicle 2WD,2014,1500,,,,S,Hybrid,,,144V Li-Ion,NSX +12.657024,0.0,0.0,0.0,25,26.6002,0,0.0,0.0,0.0,0.0,325,-1,0.0,325.0,26,27.4005,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,692,,7,2100,0,Regular,Regular Gasoline,7,-1,28,28.4465,0,0.0,0.0,0.0,0.0,0,0,34544,0,0,Infiniti,QX60 Hybrid AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S7),34.3821,0.0,39.8666,0.0,Standard Sport Utility Vehicle 4WD,2014,1500,,,,S,Hybrid,,,144V Li-Ion,NSX +12.657024,0.0,0.0,0.0,25,26.1174,0,0.0,0.0,0.0,0.0,331,-1,0.0,331.0,26,26.9046,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,694,,7,2100,0,Regular,Regular Gasoline,7,-1,27,27.9337,0,0.0,0.0,0.0,0.0,0,0,34545,0,0,Nissan,Pathfinder Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.7,0.0,39.1191,0.0,Standard Sport Utility Vehicle 4WD,2014,1500,,,,S,Hybrid,,,144V Li-Ion,NSX +7.844718,0.0,0.0,0.0,43,50.6722,0,0.0,0.0,0.0,0.0,179,-1,0.0,179.0,42,49.5081,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,67,,9,1300,0,Regular,Regular Gasoline,9,-1,40,48.156,0,0.0,0.0,0.0,0.0,14,86,34546,0,0,Lexus,CT 200h,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.651,0.0,69.4488,0.0,Compact Cars,2014,5500,,,,,Hybrid,,,202V Ni-MH,TYX +10.613442000000001,0.0,0.0,0.0,29,29.0641,0,0.0,0.0,0.0,0.0,289,-1,0.0,289.0,31,30.6724,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,23,,8,1800,0,Regular,Regular Gasoline,8,-1,33,32.8974,0,0.0,0.0,0.0,0.0,0,0,34547,0,0,Subaru,XV Crosstrek Hybrid AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.9,0.0,46.4,0.0,Small Sport Utility Vehicle 4WD,2014,3000,,,,,Hybrid,,,101V Ni-MH,FJX +19.381068,0.0,0.0,0.0,15,14.7,0,0.0,0.0,0.0,0.0,529,-1,0.0,529.0,17,16.8,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,531,SIDI,3,3550,0,Premium,Premium Gasoline,3,-1,20,20.4,0,0.0,0.0,0.0,0.0,0,0,34548,0,0,Porsche,911 GT3,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),18.2,0.0,28.3,0.0,Two Seaters,2014,-5750,G,,,,,,,,PRX +10.987,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,295,-1,0.0,295.0,30,29.8904,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,230,,8,2000,0,Premium,Premium Gasoline,8,-1,34,34.1811,0,0.0,0.0,0.0,0.0,7,76,34549,0,0,Fiat,500,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.1,0.0,48.3,0.0,Minicompact Cars,2014,2000,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48106,"(FFS,TRBO) (MPFI)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,18,95,3455,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Midsize Cars,1987,-4250,,,T,,,,,, +9.690534,0.0,0.0,0.0,31,30.738,0,0.0,0.0,0.0,0.0,260,-1,0.0,260.0,34,34.1489,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,231,,8,1750,0,Premium,Premium Gasoline,8,-1,40,39.5072,0,0.0,0.0,0.0,0.0,7,76,34550,0,0,Fiat,500,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.3259,0.0,56.2588,0.0,Minicompact Cars,2014,3250,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.9,0,0.0,0.0,0.0,0.0,430,-1,0.0,430.0,21,20.7,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,543,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.5,0,0.0,0.0,0.0,0.0,0,0,34551,5,0,Porsche,911 Targa 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual(M7),22.5,0.0,35.6,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +15.689436,0.0,0.0,0.0,18,18.4,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,21.0,0,0.0,0.0,0.0,0.0,6,3.8,4-Wheel Drive,544,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.4,0,0.0,0.0,0.0,0.0,0,0,34552,5,0,Porsche,911 Targa 4S,N,false,70,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),23.1,0.0,35.4,0.0,Minicompact Cars,2014,-2250,,,,,,,,,PRX +12.19557,0.0,0.0,0.0,24,23.7579,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,26.5927,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,6,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,34553,0,16,Hyundai,Veloster,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.4,0.0,43.8,0.0,Compact Cars,2014,1750,,,T,,,,,,HYX +11.75609,0.0,0.0,0.0,24,24.1899,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.6078,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,7,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,33,33.3709,0,0.0,0.0,0.0,0.0,0,0,34554,0,16,Hyundai,Veloster,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,31.0,0.0,47.1,0.0,Compact Cars,2014,2250,,,T,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,28,27.5266,0,0.0,0.0,0.0,0.0,281,-1,0.0,281.0,31,31.1419,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,24,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.097,0,0.0,0.0,0.0,0.0,15,89,34555,0,14,Kia,Rio Eco,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.6975,0.0,52.642,0.0,Compact Cars,2014,3000,,,,,,,,,KMX +10.613442000000001,0.0,0.0,0.0,27,26.8644,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.7376,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,25,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.3125,0,0.0,0.0,0.0,0.0,15,89,34556,0,14,Kia,Rio,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.7564,0.0,52.9643,0.0,Compact Cars,2014,3000,,,,,,,,,KMX +10.613442000000001,0.0,0.0,0.0,27,26.9195,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.6196,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,36.8021,0,0.0,0.0,0.0,0.0,15,89,34557,0,14,Kia,Rio,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.8345,0.0,52.2012,0.0,Compact Cars,2014,3000,,,,,,,,,KMX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,481,-1,0.0,481.0,18,18.4547,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,505,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,34558,0,13,Cadillac,CTS Sedan,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),19.4,0.0,33.1,0.0,Midsize Cars,2014,-4750,,,T,,,,,,GMX +12.19557,0.0,0.0,0.0,22,22.4539,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,26.8227,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,193,,7,2050,0,Regular,Regular Gasoline,7,-1,35,35.1912,0,0.0,0.0,0.0,0.0,13,97,34559,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.5997,0.0,49.8,0.0,Midsize Cars,2014,1750,,,,,,,,,CRX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48105,"(FFS,TRBO) (MPFI)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,95,3456,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Midsize Cars,1987,-1750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,24.0533,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,27,27.3127,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,33,32.7343,0,0.0,0.0,0.0,0.0,23,96,34560,0,0,Hyundai,Elantra GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.8101,0.0,46.1591,0.0,Midsize Cars,2014,1750,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,24.014,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,28,27.5353,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.5477,0,0.0,0.0,0.0,0.0,23,96,34561,0,0,Hyundai,Elantra GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.7555,0.0,47.3616,0.0,Midsize Cars,2014,2250,,,,,,,,,HYX +14.327048,0.0,0.0,0.0,19,19.4196,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,23,22.6715,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,22,SIDI,6,2400,0,Regular,Regular Gasoline,6,-1,29,28.5056,0,0.0,0.0,0.0,0.0,0,0,34562,0,16,Hyundai,Azera,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.4737,0.0,39.9527,0.0,Large Cars,2014,0,,,,,,,,,HYX +15.689436,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,411,-1,0.0,411.0,21,21.3515,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,23,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,34563,0,16,Hyundai,Genesis,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,22.8,0.0,38.0,0.0,Large Cars,2014,-1000,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,495,-1,0.0,495.0,18,17.7166,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,24,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34564,0,16,Hyundai,Genesis R Spec,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5,0.0,32.0,0.0,Large Cars,2014,-4750,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,15,15.0138,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8613,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,205,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.2509,0,0.0,0.0,0.0,0.0,0,0,34565,0,12,Mercedes-Benz,S63 AMG 4matic,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Large Cars,2014,-4750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9779,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2777,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,207,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.7868,0,0.0,0.0,0.0,0.0,0,0,34566,0,12,Mercedes-Benz,S550 4matic,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.5,0.0,34.5,0.0,Large Cars,2014,-3750,,,T,,,,,,MBX +16.4805,0.0,0.0,0.0,17,17.4185,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7576,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,10,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,34567,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.8,0.0,32.9,0.0,Small Sport Utility Vehicle 4WD,2014,-3000,,,T,,,,,,JLX +15.287400000000002,0.0,0.0,0.0,22,22.0528,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,25,25.1145,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,549,,6,2350,0,Diesel,Diesel,5,-1,30,30.2472,0,0.0,0.0,0.0,0.0,0,0,34568,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,28.0492,0.0,42.4998,0.0,Standard Sport Utility Vehicle 2WD,2014,250,,,T,,Diesel,,,,CRX +15.924375000000001,0.0,0.0,0.0,21,21.0275,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,24,23.6997,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,550,,6,2450,0,Diesel,Diesel,5,-1,28,28.0578,0,0.0,0.0,0.0,0.0,0,0,34569,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,26.6492,0.0,39.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-250,,,T,,Diesel,,,,CRX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3457,16,16,Buick,Electra/Park Avenue,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1987,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,14.449,0,0.0,0.0,0.0,0.0,552,-1,0.0,552.0,16,16.201,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,60,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,19,19.0195,0,0.0,0.0,0.0,0.0,0,0,34570,0,0,Land Rover,LR4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.9,0.0,26.3,0.0,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,S,,,,,JLX +12.657024,0.0,0.0,0.0,23,22.9626,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.9079,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,210,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,31,30.7245,0,0.0,0.0,0.0,0.0,0,0,34571,13,0,Mercedes-Benz,CLA45 AMG 4matic,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM7),29.3,0.0,43.2,0.0,Compact Cars,2014,500,,,T,,,,,,MBX +11.75609,0.0,0.0,0.0,27,26.5022,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.3673,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4,,7,1950,0,Regular,Regular Gasoline,7,-1,31,31.037,0,0.0,0.0,0.0,0.0,0,0,34572,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.2435,0.0,43.6589,0.0,Small Station Wagons,2014,2250,,,,,,,,,NSX +12.19557,0.0,0.0,0.0,25,25.0498,0,0.0,0.0,0.0,0.0,330,-1,0.0,330.0,27,26.9237,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,5,,7,2050,0,Regular,Regular Gasoline,7,-1,30,29.633,0,0.0,0.0,0.0,0.0,0,0,34573,0,11,Nissan,Cube,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2,0.0,41.6,0.0,Small Station Wagons,2014,1750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.1693,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,419,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.8379,0,0.0,0.0,0.0,0.0,0,0,34575,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.5,0.0,41.9,0.0,Small Sport Utility Vehicle 2WD,2014,500,,,T,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.4744,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.0935,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,438,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.5147,0,0.0,0.0,0.0,0.0,0,0,34576,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2062,0.0,35.6082,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,FMX +14.964294,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.9192,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,440,,5,2500,0,Regular,Regular Gasoline,5,-1,27,27.0,0,0.0,0.0,0.0,0.0,0,0,34577,0,0,Ford,Edge FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,38.6,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,18.4744,0,0.0,0.0,0.0,0.0,421,-1,0.0,421.0,21,21.0935,0,0.0,0.0,0.0,0.0,6,3.7,Front-Wheel Drive,439,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.5147,0,0.0,0.0,0.0,0.0,0,0,34578,0,0,Lincoln,MKX FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.2062,0.0,35.6082,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,FMX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,433,-1,0.0,433.0,21,20.5221,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,441,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.4399,0,0.0,0.0,0.0,0.0,0,0,34579,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.2,0.0,35.5,0.0,Small Sport Utility Vehicle 4WD,2014,-1000,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3458,16,16,Buick,LeSabre,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,17.1873,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3115,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,442,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.7476,0,0.0,0.0,0.0,0.0,0,0,34580,0,0,Ford,Edge AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4935,0.0,31.6217,0.0,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,17.1873,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.3115,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,443,,4,2900,0,Regular,Regular Gasoline,4,-1,23,22.7476,0,0.0,0.0,0.0,0.0,0,0,34581,0,0,Lincoln,MKX AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.4935,0.0,31.6217,0.0,Small Sport Utility Vehicle 4WD,2014,-2500,,,,,,,,,FMX +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,34582,0,17,Pontiac,G8,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S6),15.8943,0.0,27.2985,0.0,Large Cars,2009,-6250,,,,,,,,,GMX +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,0,,-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,34583,0,17,Pontiac,G8,N,false,0,107,0,0.0,0.0,0.0,0.0,Manual 6-spd,15.9,0.0,28.0,0.0,Large Cars,2009,-6250,,,,,,,,,GMX +15.689436,0.0,0.0,0.0,17,17.3306,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.5937,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,27,,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.7497,0,0.0,0.0,0.0,0.0,0,0,34584,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,21.6834,0.0,37.3976,0.0,Subcompact Cars,2014,-2250,,,T,,,,,,HYX +14.964294,0.0,0.0,0.0,19,18.694,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,22,21.6654,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,28,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.8891,0,0.0,0.0,0.0,0.0,0,0,34585,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.5,0.0,37.6,0.0,Subcompact Cars,2014,-1750,,,T,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,16,16.1217,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.0828,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,29,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.6438,0,0.0,0.0,0.0,0.0,0,0,34586,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,19.6481,0.0,32.2349,0.0,Subcompact Cars,2014,-3750,,,,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,16,16.3512,0,0.0,0.0,0.0,0.0,460,-1,0.0,460.0,19,19.0111,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,30,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7288,0,0.0,0.0,0.0,0.0,0,0,34587,10,0,Hyundai,Genesis Coupe,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.4,0.0,31.4,0.0,Subcompact Cars,2014,-3750,,,,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,27,26.5121,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,30.5047,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,18,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.3861,0,0.0,0.0,0.0,0.0,19,90,34588,0,14,Hyundai,Accent,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.2575,0.0,53.0745,0.0,Compact Cars,2014,3000,,,,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,27,27.3879,0,0.0,0.0,0.0,0.0,280,-1,0.0,280.0,31,31.2278,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,38,37.6857,0,0.0,0.0,0.0,0.0,19,90,34589,0,14,Hyundai,Accent,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.5,0.0,53.523,0.0,Compact Cars,2014,3000,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3459,0,20,Cadillac,Brougham,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1987,-3250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,27.6228,0,0.0,0.0,0.0,0.0,284,-1,0.0,284.0,31,30.8489,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,20,SIDI,8,1800,0,Regular,Regular Gasoline,8,-1,36,35.9855,0,0.0,0.0,0.0,0.0,0,0,34590,0,16,Hyundai,Veloster,N,false,0,90,0,0.0,0.0,0.0,0.0,Auto(AM6),35.8347,0.0,50.9826,0.0,Compact Cars,2014,3000,,,,,,,,,HYX +10.987,0.0,0.0,0.0,26,26.1554,0,0.0,0.0,0.0,0.0,296,-1,0.0,296.0,30,29.5598,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,21,SIDI,8,1850,0,Regular,Regular Gasoline,8,-1,35,35.152,0,0.0,0.0,0.0,0.0,0,0,34591,0,16,Hyundai,Veloster,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7536,0.0,49.7417,0.0,Compact Cars,2014,2750,,,,,,,,,HYX +13.1844,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.0557,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.9744,0,0.0,0.0,0.0,0.0,0,0,34592,13,0,Kia,Forte Koup,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,28.1,0.0,42.1,0.0,Compact Cars,2014,1000,,,T,,,,,,KMX +13.1844,0.0,0.0,0.0,22,21.7977,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.5239,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.949,0,0.0,0.0,0.0,0.0,0,0,34593,13,0,Kia,Forte Koup,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.7,0.0,40.6,0.0,Compact Cars,2014,1000,,,T,,,,,,KMX +11.75609,0.0,0.0,0.0,25,24.527,0,0.0,0.0,0.0,0.0,314,-1,0.0,314.0,28,28.0399,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,35,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.9901,0,0.0,0.0,0.0,0.0,0,0,34594,13,0,Kia,Forte Koup,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,31.4696,0.0,48.0168,0.0,Compact Cars,2014,2250,,,,,,,,,KMX +12.19557,0.0,0.0,0.0,24,23.902,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.1505,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,36,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,33,32.5588,0,0.0,0.0,0.0,0.0,0,0,34595,13,0,Kia,Forte Koup,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.6,0.0,45.9,0.0,Compact Cars,2014,1750,,,,,,,,,KMX +10.987,0.0,0.0,0.0,28,28.4248,0,0.0,0.0,0.0,0.0,298,-1,0.0,298.0,30,29.9509,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,38,SIDI,8,2000,0,Premium,Premium Gasoline,8,-1,32,32.0543,0,0.0,0.0,0.0,0.0,0,0,34596,0,15,Acura,RLX Hybrid,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S7),36.9813,0.0,45.156,0.0,Midsize Cars,2014,2000,,,,,Hybrid,,,260V Li-Ion,HNX +8.657756000000001,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,237,-1,0.0,237.0,38,37.5313,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,25,,9,1450,0,Regular,Regular Gasoline,9,-1,40,39.7338,0,0.0,0.0,0.0,0.0,0,0,34597,0,12,Hyundai,Sonata Hybrid,N,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AM6),48.0,0.0,56.6,0.0,Midsize Cars,2014,4750,,,,,Hybrid,,,270V Li-Ion,HYX +8.89947,0.0,0.0,0.0,36,35.7048,0,0.0,0.0,0.0,0.0,239,-1,0.0,239.0,37,37.3588,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26,,9,1500,0,Regular,Regular Gasoline,9,-1,40,39.601,0,0.0,0.0,0.0,0.0,0,0,34598,0,12,Hyundai,Sonata Hybrid Limited,N,false,0,104,0,0.0,0.0,0.0,0.0,Auto(AM6),47.7,0.0,56.4,0.0,Midsize Cars,2014,4500,,,,,Hybrid,,,270V Li-Ion,HYX +10.283832,0.0,0.0,0.0,28,27.6991,0,0.0,0.0,0.0,0.0,281,-1,0.0,281.0,32,31.5163,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,31,,8,1700,0,Regular,Regular Gasoline,8,-1,38,37.9001,0,0.0,0.0,0.0,0.0,0,0,34599,0,15,Hyundai,Elantra,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,35.9434,0.0,53.8443,0.0,Midsize Cars,2014,3500,,,,,,,,,HYX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4407,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,346,13,0,Oldsmobile,Calais,N,false,91,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3460,16,16,Cadillac,Fleetwood/DeVille,Y,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1987,-3250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,26.7395,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.5843,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,32,,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.105,0,0.0,0.0,0.0,0.0,0,0,34600,0,15,Hyundai,Elantra Limited,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,34.5794,0.0,52.6539,0.0,Midsize Cars,2014,3000,,,,,,,,,HYX +10.613442000000001,0.0,0.0,0.0,27,26.6835,0,0.0,0.0,0.0,0.0,286,-1,0.0,286.0,31,30.6142,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,33,,8,1800,0,Regular,Regular Gasoline,8,-1,37,37.3364,0,0.0,0.0,0.0,0.0,0,0,34601,0,15,Hyundai,Elantra,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.5,0.0,53.0,0.0,Midsize Cars,2014,3000,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,24.0703,0,0.0,0.0,0.0,0.0,315,-1,0.0,315.0,28,27.8925,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,34,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,35,34.6098,0,0.0,0.0,0.0,0.0,0,0,34602,0,15,Hyundai,Elantra,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.8337,0.0,48.936,0.0,Midsize Cars,2014,2250,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,24.118,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.7204,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,35,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.9113,0,0.0,0.0,0.0,0.0,0,0,34603,0,15,Hyundai,Elantra,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.9,0.0,47.9,0.0,Midsize Cars,2014,2250,,,,,,,,,HYX +11.75609,0.0,0.0,0.0,24,23.733,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,28,27.5062,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,36,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.1402,0,0.0,0.0,0.0,0.0,0,0,34604,15,0,Hyundai,Elantra Coupe,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.3654,0.0,48.2394,0.0,Midsize Cars,2014,2250,,,,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,16,15.6603,0,0.0,0.0,0.0,0.0,478,-1,0.0,478.0,19,18.6766,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,111,,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.4268,0,0.0,0.0,0.0,0.0,0,0,34605,0,15,Infiniti,Q70,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.4813,0.0,34.0371,0.0,Midsize Cars,2014,-3750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,15.6729,0,0.0,0.0,0.0,0.0,486,-1,0.0,486.0,18,18.3305,0,0.0,0.0,0.0,0.0,8,5.6,All-Wheel Drive,112,,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.1226,0,0.0,0.0,0.0,0.0,0,0,34606,0,15,Infiniti,Q70 AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),19.4978,0.0,32.1601,0.0,Midsize Cars,2014,-4750,,,,,,,,,NSX +10.613442000000001,0.0,0.0,0.0,29,29.3057,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,31.2133,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,141,,8,1950,0,Premium,Premium Gasoline,8,-1,34,33.9113,0,0.0,0.0,0.0,0.0,0,0,34607,0,11,Infiniti,Q70 Hybrid,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),38.2484,0.0,47.9,0.0,Midsize Cars,2014,2250,,,,,Hybrid,,,346V Li-Ion,NSX +15.689436,0.0,0.0,0.0,18,17.933,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.8004,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,151,,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.8528,0,0.0,0.0,0.0,0.0,0,0,34608,0,15,Infiniti,Q70,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),22.484,0.0,36.0975,0.0,Midsize Cars,2014,-2250,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.6912,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,20.2345,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,152,,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.5477,0,0.0,0.0,0.0,0.0,0,0,34609,0,15,Infiniti,Q70 AWD,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1623,0.0,34.2115,0.0,Midsize Cars,2014,-3000,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4601,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3461,0,16,Cadillac,Limousine,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1987,-3250,,,,,,,,, +8.657756000000001,0.0,0.0,0.0,36,35.9031,0,0.0,0.0,0.0,0.0,237,-1,0.0,237.0,38,37.5313,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,31,,9,1450,0,Regular,Regular Gasoline,9,-1,40,39.7338,0,0.0,0.0,0.0,0.0,0,0,34610,0,11,Kia,Optima Hybrid,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM6),48.0,0.0,56.6,0.0,Midsize Cars,2014,4750,,,,,Hybrid,,,270V Li-Ion,KMX +8.89947,0.0,0.0,0.0,35,35.241,0,0.0,0.0,0.0,0.0,242,-1,0.0,242.0,37,36.7597,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,32,,9,1500,0,Regular,Regular Gasoline,9,-1,39,38.8034,0,0.0,0.0,0.0,0.0,0,0,34611,0,11,Kia,Optima Hybrid EX,N,false,0,102,0,0.0,0.0,0.0,0.0,Auto(AM6),47.0,0.0,55.2,0.0,Midsize Cars,2014,4500,,,,,Hybrid,,,270V Li-Ion,KMX +10.987,0.0,0.0,0.0,27,26.8952,0,0.0,0.0,0.0,0.0,294,-1,0.0,294.0,30,30.2621,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,6,,8,1850,0,Regular,Regular Gasoline,8,-1,36,35.7288,0,0.0,0.0,0.0,0.0,0,0,34612,0,15,Nissan,Sentra,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,34.8,0.0,50.6,0.0,Midsize Cars,2014,2750,,,,,,,,,NSX +9.690534,0.0,0.0,0.0,30,30.2502,0,0.0,0.0,0.0,0.0,264,-1,0.0,264.0,34,33.6198,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,7,,8,1600,0,Regular,Regular Gasoline,8,-1,39,38.9183,0,0.0,0.0,0.0,0.0,0,0,34613,0,15,Nissan,Sentra,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.6159,0.0,55.3727,0.0,Midsize Cars,2014,4000,,,,,,,,,NSX +9.690534,0.0,0.0,0.0,30,30.4454,0,0.0,0.0,0.0,0.0,260,-1,0.0,260.0,34,34.0573,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,8,,8,1600,0,Regular,Regular Gasoline,8,-1,40,39.833,0,0.0,0.0,0.0,0.0,0,0,34614,0,15,Nissan,Sentra FE,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.8997,0.0,56.7496,0.0,Midsize Cars,2014,4000,,,,,,,,,NSX +9.976196,0.0,0.0,0.0,30,29.5218,0,0.0,0.0,0.0,0.0,269,-1,0.0,269.0,33,33.0633,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,9,California emission control system,8,1650,0,Regular,Regular Gasoline,8,-1,39,38.7439,0,0.0,0.0,0.0,0.0,0,0,34615,0,15,Nissan,Sentra,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.5605,0.0,55.1106,0.0,Midsize Cars,2014,3750,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,374,-1,0.0,374.0,24,23.6375,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,450,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,30,29.7013,0,0.0,0.0,0.0,0.0,0,0,34616,0,17,Ford,Special Service Police FWD,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.6,0.0,41.7,0.0,Large Cars,2014,500,,,T,,,,,,FMX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.2177,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,27,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,29,29.2912,0,0.0,0.0,0.0,0.0,23,98,34617,0,0,Kia,Forte 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,26.9,0.0,41.1,0.0,Large Cars,2014,500,,,T,,,,,,KMX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,365,-1,0.0,365.0,24,24.0257,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,28,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,29,28.6751,0,0.0,0.0,0.0,0.0,23,98,34618,0,0,Kia,Forte 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,40.2,0.0,Large Cars,2014,500,,,T,,,,,,KMX +11.75609,0.0,0.0,0.0,24,24.1536,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,28,27.8029,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,33,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,34.1,0,0.0,0.0,0.0,0.0,23,98,34619,0,0,Kia,Forte 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,30.9495,0.0,48.1797,0.0,Large Cars,2014,2250,,,,,,,,,KMX +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,13901,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3462,0,20,CCC Engineering,Duntov GT,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Large Cars,1987,-6250,T,,,,,,,, +11.75609,0.0,0.0,0.0,24,24.118,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.7204,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,34,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,34,33.9113,0,0.0,0.0,0.0,0.0,23,98,34620,0,0,Kia,Forte 5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.9,0.0,47.9,0.0,Large Cars,2014,2250,,,,,,,,,KMX +18.304342000000002,0.0,0.0,0.0,15,15.4,0,0.0,0.0,0.0,0.0,483,-1,0.0,483.0,18,18.4,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,636,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,24.2,0,0.0,0.0,0.0,0.0,0,0,34621,0,16,Porsche,Panamera Turbo S,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),19.1667,0.0,33.7481,0.0,Large Cars,2014,-4750,,,T,,,,,,PRX +18.304342000000002,0.0,0.0,0.0,15,15.3,0,0.0,0.0,0.0,0.0,488,-1,0.0,488.0,18,18.3,0,0.0,0.0,0.0,0.0,8,4.8,All-Wheel Drive,637,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,24,23.9,0,0.0,0.0,0.0,0.0,0,0,34622,0,16,Porsche,Panamera Turbo S Executive,N,false,0,108,0,0.0,0.0,0.0,0.0,Auto(AM-S7),18.9742,0.0,33.3,0.0,Large Cars,2014,-4750,,,T,,,,,,PRX +13.73375,0.0,0.0,0.0,22,21.5783,0,0.0,0.0,0.0,0.0,365,-1,0.0,365.0,24,23.943,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,29,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,34623,0,22,Scion,xB,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S4),27.4,0.0,38.7,0.0,Small Station Wagons,2014,500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,22,21.7423,0,0.0,0.0,0.0,0.0,367,-1,0.0,367.0,24,24.0537,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,30,,6,2300,0,Regular,Regular Gasoline,6,-1,28,27.6458,0,0.0,0.0,0.0,0.0,0,0,34624,0,22,Scion,xB,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.6242,0.0,38.7,0.0,Small Station Wagons,2014,500,,,,,,,,,TYX +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,525,-1,0.0,525.0,17,16.9795,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,548,SIDI,3,3250,0,Regular,Regular Gasoline,3,-1,21,21.196,0,0.0,0.0,0.0,0.0,0,0,34625,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,29.4,0.0,Standard Pickup Trucks 2WD,2014,-4250,,,,,,,,,GMX +13.1844,0.0,0.0,0.0,22,21.6111,0,0.0,0.0,0.0,0.0,361,-1,0.0,361.0,25,24.5083,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,444,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,29,29.3112,0,0.0,0.0,0.0,0.0,0,0,34626,0,0,Ford,Transit Connect Wagon FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.4448,0.0,41.1293,0.0,Special Purpose Vehicle 2WD,2014,1000,,,T,,,,,,FMX +11.75609,0.0,0.0,0.0,26,25.64,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.4243,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,81,,7,1950,0,Regular,Regular Gasoline,7,-1,33,32.7743,0,0.0,0.0,0.0,0.0,0,0,34627,0,0,Nissan,Rogue FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),33.0278,0.0,46.2182,0.0,Small Sport Utility Vehicle 2WD,2014,2250,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,20,20.1064,0,0.0,0.0,0.0,0.0,398,-1,0.0,398.0,22,21.9756,0,0.0,0.0,0.0,0.0,4,2.7,Front-Wheel Drive,1,,5,2500,0,Regular,Regular Gasoline,5,-1,25,24.7926,0,0.0,0.0,0.0,0.0,0,0,34628,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.4,0.0,38.4,0.0,Small Sport Utility Vehicle 2WD,2014,-500,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,18.7687,0,0.0,0.0,0.0,0.0,418,-1,0.0,418.0,21,21.1921,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,34,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1631,0,0.0,0.0,0.0,0.0,0,0,34629,0,0,Toyota,Highlander 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),23.6,0.0,35.1,0.0,Small Sport Utility Vehicle 2WD,2014,-1000,,,,,,,,,TYX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3463,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Large Cars,1987,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,23.5414,0,0.0,0.0,0.0,0.0,335,-1,0.0,335.0,26,26.3541,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,85,,7,2100,0,Regular,Regular Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,34630,0,0,Toyota,RAV4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.1,0.0,43.4,0.0,Small Sport Utility Vehicle 2WD,2014,1500,,,,,,,,,TYX +13.73375,0.0,0.0,0.0,21,20.9178,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.1491,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,70,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,29.7696,0,0.0,0.0,0.0,0.0,0,0,34631,0,0,Land Rover,Range Rover Evoque,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S9),26.5,0.0,41.8,0.0,Small Sport Utility Vehicle 4WD,2014,-500,,,T,,,,,,JLX +11.75609,0.0,0.0,0.0,25,24.9123,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.5312,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,82,,7,1950,0,Regular,Regular Gasoline,7,-1,32,31.5901,0,0.0,0.0,0.0,0.0,0,0,34632,0,0,Nissan,Rogue AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),32.0077,0.0,44.4724,0.0,Small Sport Utility Vehicle 4WD,2014,2250,,,,,,,,,NSX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,354,-1,0.0,354.0,25,24.8803,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,86,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.8121,0,0.0,0.0,0.0,0.0,0,0,34633,0,0,Toyota,RAV4 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),28.5,0.0,40.4,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,,,,,,,TYX +13.1844,0.0,0.0,0.0,22,21.9706,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.5038,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,87,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.5233,0,0.0,0.0,0.0,0.0,0,0,34634,0,0,Toyota,RAV4 Limited AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9366,0.0,39.9785,0.0,Small Sport Utility Vehicle 4WD,2014,1000,,,,,,,,,TYX +20.589638,6.806822,0.0,0.0,14,13.6778,9,9.4419,0.0,0.0,0.0,572,573,573.0,572.0,16,15.5917,11,11.038,0.0,0.0,0.0,8,5.0,4-Wheel Drive,23,SIDI; FFV,3,3750,4150,Premium or E85,Premium Gasoline,3,3,19,18.8082,14,13.9123,0.0,0.0,0.0,0,0,34635,0,0,Land Rover,Range Rover L FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),16.9,11.5,26.0,19.1,Standard Sport Utility Vehicle 4WD,2014,-6750,,,,S,FFV,E85,305,,JLX +17.337486000000002,5.348574,0.0,0.0,17,16.6628,12,12.1231,0.0,0.0,0.0,466,469,469.0,466.0,19,19.0885,14,13.5764,0.0,0.0,0.0,6,3.0,4-Wheel Drive,27,SIDI; FFV,4,3150,3250,Premium or E85,Premium Gasoline,4,4,23,23.22,16,15.9072,0.0,0.0,0.0,0,0,34636,0,0,Land Rover,Range Rover L FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8,14.9,32.3,21.9,Standard Sport Utility Vehicle 4WD,2014,-3750,,,,S,FFV,E85,388,,JLX +16.4805,0.0,0.0,0.0,18,18.1702,0,0.0,0.0,0.0,0.0,437,-1,0.0,437.0,20,20.4625,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,35,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.1929,0,0.0,0.0,0.0,0.0,0,0,34637,0,0,Toyota,Highlander AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.8,0.0,33.7,0.0,Standard Sport Utility Vehicle 4WD,2014,-1750,,,,,,,,,TYX +12.19557,0.0,0.0,0.0,24,23.974,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,27.1159,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,113,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,32,32.2878,0,0.0,0.0,0.0,0.0,0,0,34638,7,0,Volkswagen,Beetle Convertible,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.665,0.0,45.4922,0.0,Subcompact Cars,2014,1750,,,T,,,,,,VWX +6.5922,0.0,0.0,0.0,53,52.5854,0,0.0,0.0,0.0,0.0,178,-1,0.0,178.0,50,49.5685,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,17,,10,1100,0,Regular,Regular Gasoline,10,-1,46,46.3205,0,0.0,0.0,0.0,0.0,17,87,34639,0,0,Toyota,Prius c,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),71.8675,0.0,69.6552,0.0,Compact Cars,2014,6500,,,,,Hybrid,,,144V Ni-MH,TYX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4101,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3464,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1987,-2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,24.7637,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.798,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,112,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,33,32.6943,0,0.0,0.0,0.0,0.0,15,85,34640,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.8016,0.0,46.0974,0.0,Compact Cars,2014,2250,,,T,,,,,,VWX +12.19557,0.0,0.0,0.0,24,23.7579,0,0.0,0.0,0.0,0.0,326,-1,0.0,326.0,27,27.0899,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,111,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,33,32.6943,0,0.0,0.0,0.0,0.0,15,85,34641,0,0,Volkswagen,Beetle,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.3673,0.0,46.0651,0.0,Compact Cars,2014,1750,,,T,,,,,,VWX +13.1844,0.0,0.0,0.0,23,22.6723,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.8158,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,87,,6,2200,0,Regular,Regular Gasoline,6,-1,28,28.0579,0,0.0,0.0,0.0,0.0,0,0,34642,0,0,Nissan,Rogue Select FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.9,0.0,39.3,0.0,Small Sport Utility Vehicle 2WD,2014,1000,,,,,,,,,NSX +13.73375,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,24.0683,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,88,,6,2300,0,Regular,Regular Gasoline,6,-1,27,27.0268,0,0.0,0.0,0.0,0.0,0,0,34643,0,0,Nissan,Rogue Select AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),28.1,0.0,37.8,0.0,Small Sport Utility Vehicle 4WD,2014,500,,,,,,,,,NSX +17.337486000000002,0.0,0.0,0.0,16,16.464,0,0.0,0.0,0.0,0.0,472,-1,0.0,472.0,19,18.7253,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,71,,4,3150,0,Premium,Premium Gasoline,4,-1,23,22.5029,0,0.0,0.0,0.0,0.0,0,0,34644,9,0,Nissan,GT-R,N,false,79,0,0,0.0,0.0,0.0,0.0,Auto(AM6),20.3104,0.0,30.1591,0.0,Subcompact Cars,2015,-3750,,,T,,,,,,NSX +14.327048,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2974,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,75,,5,2400,0,Regular,Regular Gasoline,5,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,34645,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,40.0,0.0,Compact Cars,2015,0,,,T,,,,,,VVX +10.987,0.0,0.0,0.0,26,26.0884,0,0.0,0.0,0.0,0.0,293,-1,0.0,293.0,30,30.29,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2,SIDI,7,1850,0,Regular,Regular Gasoline,7,-1,38,37.7138,0,0.0,0.0,0.0,0.0,0,0,34646,0,15,Mazda,6,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),33.6591,0.0,53.5651,0.0,Midsize Cars,2015,2750,,,,,,,,,TKX +10.283832,0.0,0.0,0.0,28,27.9814,0,0.0,0.0,0.0,0.0,275,-1,0.0,275.0,32,32.3263,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3,SIDI; with i-ELOOP Technology Package,8,1700,0,Regular,Regular Gasoline,8,-1,40,39.8982,0,0.0,0.0,0.0,0.0,0,0,34647,0,15,Mazda,6,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),36.3466,0.0,56.8478,0.0,Midsize Cars,2015,3500,,,,,,,,,TKX +11.360558000000001,0.0,0.0,0.0,25,24.9521,0,0.0,0.0,0.0,0.0,304,-1,0.0,304.0,29,29.1012,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,36.5243,0,0.0,0.0,0.0,0.0,0,0,34648,0,15,Mazda,6,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.0633,0.0,51.7862,0.0,Midsize Cars,2015,2500,,,,,,,,,TKX +15.689436,0.0,0.0,0.0,18,17.7196,0,0.0,0.0,0.0,0.0,427,-1,0.0,427.0,21,20.8369,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,5,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,27,26.5446,0,0.0,0.0,0.0,0.0,0,0,34649,0,16,Kia,K900,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 8-spd,22.2,0.0,37.1,0.0,Large Cars,2015,-1000,,,,,,,,,KMX +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4106,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3465,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Large Cars,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,494,-1,0.0,494.0,18,17.7385,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,6,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.8718,0,0.0,0.0,0.0,0.0,0,0,34650,0,16,Kia,K900,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.6,0.0,31.8,0.0,Large Cars,2015,-4750,,,,,,,,,KMX +15.689436,0.0,0.0,0.0,18,18.3567,0,0.0,0.0,0.0,0.0,425,-1,0.0,425.0,21,20.892,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2,SIDI,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.1348,0,0.0,0.0,0.0,0.0,0,0,34651,0,0,Kia,Sorento FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.049,0.0,35.059,0.0,Small Sport Utility Vehicle 2WD,2015,-1000,,,,,,,,,KMX +11.360558000000001,0.0,0.0,0.0,26,26.4348,0,0.0,0.0,0.0,0.0,307,-1,0.0,307.0,29,28.7826,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,5,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,32,32.2875,0,0.0,0.0,0.0,0.0,0,0,34652,0,0,Mazda,CX-5 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),34.1482,0.0,45.4998,0.0,Small Sport Utility Vehicle 2WD,2015,2500,,,,,,,,,TKX +11.360558000000001,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,302,-1,0.0,302.0,29,29.3513,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,35,34.5855,0,0.0,0.0,0.0,0.0,0,0,34653,0,0,Mazda,CX-5 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.7,0.0,48.9,0.0,Small Sport Utility Vehicle 2WD,2015,2500,,,,,,,,,TKX +12.19557,0.0,0.0,0.0,25,24.6199,0,0.0,0.0,0.0,0.0,324,-1,0.0,324.0,27,27.352,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,7,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,32,31.6438,0,0.0,0.0,0.0,0.0,0,0,34654,0,0,Mazda,CX-5 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5992,0.0,44.5514,0.0,Small Sport Utility Vehicle 2WD,2015,1750,,,,,,,,,TKX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,22,21.5082,0,0.0,0.0,0.0,0.0,4,2.4,All-Wheel Drive,3,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,34655,0,0,Kia,Sorento AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,24.3,0.0,34.9,0.0,Small Sport Utility Vehicle 4WD,2015,-500,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,18,17.5594,0,0.0,0.0,0.0,0.0,449,-1,0.0,449.0,20,19.8321,0,0.0,0.0,0.0,0.0,6,3.3,All-Wheel Drive,1,SIDI,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.5588,0,0.0,0.0,0.0,0.0,0,0,34656,0,0,Kia,Sorento AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,21.9871,0.0,32.7872,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,,,,,,,KMX +11.75609,0.0,0.0,0.0,25,25.4066,0,0.0,0.0,0.0,0.0,321,-1,0.0,321.0,28,27.6017,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,6,SIDI,7,1950,0,Regular,Regular Gasoline,7,-1,31,30.8607,0,0.0,0.0,0.0,0.0,0,0,34657,0,0,Mazda,CX-5 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.7,0.0,43.4,0.0,Small Sport Utility Vehicle 4WD,2015,2250,,,,,,,,,TKX +12.657024,0.0,0.0,0.0,24,23.8004,0,0.0,0.0,0.0,0.0,338,-1,0.0,338.0,26,26.1853,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel Drive,8,SIDI,6,2100,0,Regular,Regular Gasoline,6,-1,30,29.8398,0,0.0,0.0,0.0,0.0,0,0,34658,0,0,Mazda,CX-5 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),30.4589,0.0,41.9028,0.0,Small Sport Utility Vehicle 4WD,2015,1500,,,,,,,,,TKX +16.4805,0.0,0.0,0.0,17,17.2799,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,19.6537,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,22,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.6195,0,0.0,0.0,0.0,0.0,0,0,34659,0,0,Volvo,XC60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6445,0.0,32.5692,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,T,,,,,,VVX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3466,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1987,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.2799,0,0.0,0.0,0.0,0.0,434,-1,0.0,434.0,20,19.6537,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,21,,5,2750,0,Regular,Regular Gasoline,5,-1,24,23.6195,0,0.0,0.0,0.0,0.0,0,0,34660,0,0,Volvo,XC70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.6445,0.0,32.5692,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,T,,,,,,VVX +11.360558000000001,0.0,0.0,0.0,25,24.9068,0,0.0,0.0,0.0,0.0,303,-1,0.0,303.0,29,29.277,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,227,SIDI; with Stop/Start Technology,7,1900,0,Regular,Regular Gasoline,7,-1,37,37.2695,0,0.0,0.0,0.0,0.0,0,0,34661,0,16,Ford,Fusion FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S6),32.0,0.0,52.9,0.0,Midsize Cars,2014,2500,,,T,,,,,,FMX +4.181064109756098,3.2961,0.0,2.5,44,44.2254,108,108.01,0.0,31.0,0.5,110,-1,0.0,110.0,43,42.7418,100,100.0057,34.0,0.0,0.48,4,2.0,Front-Wheel Drive,320,PHEV,10,1300,0,Regular Gas and Electricity,Regular Gasoline,10,-1,41,41.0585,92,91.7,0.0,37.0,0.44,0,0,34662,0,19,Ford,C-MAX Energi Plug-in Hybrid,N,true,0,100,0,0.0,23.085,0.0,19.171,Automatic (variable gear ratios),61.0,154.3,58.6,131.0,Midsize Cars,2014,7250,,,,,Plug-in Hybrid,Electricity,21,68 kW,FMX +12.657024,0.0,0.0,0.0,22,22.3665,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6242,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,3,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,31,31.1759,0,0.0,0.0,0.0,0.0,0,0,34663,0,0,Audi,TT Roadster quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.3669,0.0,42.1911,0.0,Two Seaters,2015,500,,,T,,,,,,VGA +12.657024,0.0,0.0,0.0,22,22.3665,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.6242,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,2,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,31,31.1759,0,0.0,0.0,0.0,0.0,0,0,34664,13,0,Audi,TT Coupe quattro,N,false,74,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.3669,0.0,42.1911,0.0,Subcompact Cars,2015,500,,,T,,,,,,VGA +13.73375,0.0,0.0,0.0,21,21.1383,0,0.0,0.0,0.0,0.0,371,-1,0.0,371.0,24,23.887,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,24,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.4009,0,0.0,0.0,0.0,0.0,0,0,34668,0,12,Subaru,WRX,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.8,0.0,39.8,0.0,Compact Cars,2015,-500,,,T,,,,,,FJX +17.337486000000002,0.0,0.0,0.0,17,17.0411,0,0.0,0.0,0.0,0.0,458,-1,0.0,458.0,19,19.3375,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,26,,4,3150,0,Premium,Premium Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,34669,0,12,Subaru,WRX,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.3,0.0,32.2,0.0,Compact Cars,2015,-3750,,,T,,,,,,FJX +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3467,21,21,Chevrolet,Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,26.0,0.0,Large Cars,1987,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,21.9953,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,23,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,34670,0,14,Volvo,S60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,37.4,0.0,Compact Cars,2015,-500,,,T,,,,,,VVX +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,21.9953,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,20,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,34671,0,15,Volvo,S80 AWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,37.4,0.0,Midsize Cars,2015,-500,,,T,,,,,,VVX +14.327048,0.0,0.0,0.0,20,20.2543,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2974,0,0.0,0.0,0.0,0.0,5,2.5,All-Wheel Drive,85,,5,2400,0,Regular,Regular Gasoline,5,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,34672,0,28,Volvo,V60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),25.6,0.0,40.0,0.0,Small Station Wagons,2015,0,,,T,,,,,,VVX +14.964294,0.0,0.0,0.0,19,18.9,0,0.0,0.0,0.0,0.0,396,-1,0.0,396.0,22,21.9953,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,86,,5,2500,0,Regular,Regular Gasoline,5,-1,28,27.5,0,0.0,0.0,0.0,0.0,0,0,34673,0,28,Volvo,V60 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.3,0.0,37.4,0.0,Small Station Wagons,2015,-500,,,T,,,,,,VVX +17.337486000000002,5.348574,0.0,0.0,16,16.1043,12,11.855,0.0,0.0,0.0,478,458,458.0,478.0,19,18.5694,14,13.7328,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,515,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.843,17,17.0298,0.0,0.0,0.0,0,0,34674,0,0,Chevrolet,Silverado C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0642,14.7701,31.7586,23.6765,Standard Pickup Trucks 2WD,2015,-2500,,,,,FFV,E85,360/480,,GMX +17.337486000000002,5.348574,0.0,0.0,16,16.1051,12,11.8556,0.0,0.0,0.0,478,458,458.0,478.0,19,18.5702,14,13.7334,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,516,SIDI; FFV,4,2900,3250,Gasoline or E85,Regular Gasoline,4,4,23,22.8437,17,17.0302,0.0,0.0,0.0,0,0,34675,0,0,GMC,Sierra C15 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,20.0652,14.7708,31.7596,23.6771,Standard Pickup Trucks 2WD,2015,-2500,,,,,FFV,E85,360/480,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.8212,12,11.6251,0.0,0.0,0.0,490,470,470.0,490.0,18,18.1248,13,13.3873,0.0,0.0,0.0,8,5.3,4-Wheel Drive,523,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.0485,16,16.4317,0.0,0.0,0.0,0,0,34676,0,0,Chevrolet,Silverado K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6923,14.4696,30.6195,22.8192,Standard Pickup Trucks 4WD,2015,-3250,,,,,FFV,E85,340/440,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.8224,12,11.6267,0.0,0.0,0.0,490,470,470.0,490.0,18,18.1259,13,13.3887,0.0,0.0,0.0,8,5.3,4-Wheel Drive,524,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,22.0493,16,16.4324,0.0,0.0,0.0,0,0,34677,0,0,GMC,Sierra K15 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.6938,14.4714,30.6206,22.8203,Standard Pickup Trucks 4WD,2015,-3250,,,,,FFV,E85,340/440,,GMX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,388,-1,0.0,388.0,23,22.6206,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,4,SIDI,5,2400,0,Regular,Regular Gasoline,5,-1,27,27.0268,0,0.0,0.0,0.0,0.0,0,0,34678,0,0,Kia,Sorento FWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,25.2,0.0,37.8,0.0,Small Sport Utility Vehicle 2WD,2015,0,,,,,,,,,KMX +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8774,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,505,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,34679,0,0,Cadillac,Escalade 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.9,0.0,Standard Sport Utility Vehicle 2WD,2015,-4250,,,,,,,,,GMX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3468,22,22,Ford,LTD Crown Victoria,Y,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8774,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,506,SIDI,4,3250,0,Regular,Regular Gasoline,4,-1,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,34680,0,0,Cadillac,Escalade ESV 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.9,0.0,Standard Sport Utility Vehicle 2WD,2015,-4250,,,,,,,,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8271,12,11.6494,0.0,0.0,0.0,481,461,461.0,481.0,18,18.4739,14,13.6637,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,509,SIDI; FFV,4,3050,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.22,17,17.3251,0.0,0.0,0.0,0,0,34681,0,0,Chevrolet,Tahoe C1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,14.5,32.3,24.1,Standard Sport Utility Vehicle 2WD,2015,-3250,,,,,FFV,E85,360,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8271,12,11.6494,0.0,0.0,0.0,481,461,461.0,481.0,18,18.4739,14,13.6637,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,510,SIDI; FFV,4,3050,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.22,17,17.3251,0.0,0.0,0.0,0,0,34682,0,0,Chevrolet,Suburban C1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,14.5,32.3,24.1,Standard Sport Utility Vehicle 2WD,2015,-3250,,,,,FFV,E85,450,,GMX +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8774,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,507,SIDI,4,3250,0,Regular,Regular Gasoline,4,0,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,34683,0,0,GMC,Yukon C1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.9,0.0,Standard Sport Utility Vehicle 2WD,2015,-4250,,,,,,,,,GMX +19.381068,0.0,0.0,0.0,15,14.6028,0,0.0,0.0,0.0,0.0,527,-1,0.0,527.0,17,16.8774,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,508,SIDI,4,3250,0,Regular,Regular Gasoline,4,0,21,20.8459,0,0.0,0.0,0.0,0.0,0,0,34684,0,0,GMC,Yukon C1500 XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.1,0.0,28.9,0.0,Standard Sport Utility Vehicle 2WD,2015,-4250,,,,,,,,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8271,12,11.6494,0.0,0.0,0.0,481,461,461.0,481.0,18,18.4739,14,13.6637,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,512,SIDI; FFV,4,3050,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.22,17,17.3251,0.0,0.0,0.0,0,0,34685,0,0,GMC,Yukon C1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,14.5,32.3,24.1,Standard Sport Utility Vehicle 2WD,2015,-3250,,,,,FFV,E85,360,,GMX +18.304342000000002,5.348574,0.0,0.0,16,15.8271,12,11.6494,0.0,0.0,0.0,481,461,461.0,481.0,18,18.4739,14,13.6637,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,513,SIDI; FFV,4,3050,3250,Gasoline or E85,Regular Gasoline,4,4,23,23.22,17,17.3251,0.0,0.0,0.0,0,0,34686,0,0,GMC,Yukon C1500 XL 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.7,14.5,32.3,24.1,Standard Sport Utility Vehicle 2WD,2015,-3250,,,,,FFV,E85,450,,GMX +20.589638,0.0,0.0,0.0,14,14.0,0,0.0,0.0,0.0,0.0,555,-1,0.0,555.0,16,16.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,501,SIDI,3,3450,0,Regular,Regular Gasoline,3,-1,21,20.6356,0,0.0,0.0,0.0,0.0,0,0,34687,0,0,Cadillac,Escalade 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0,0.0,28.6,0.0,Standard Sport Utility Vehicle 4WD,2015,-5250,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,13.9865,0,0.0,0.0,0.0,0.0,548,-1,0.0,548.0,16,16.1967,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,502,SIDI,3,3450,0,Regular,Regular Gasoline,3,-1,20,20.0736,0,0.0,0.0,0.0,0.0,0,0,34688,0,0,Cadillac,Escalade ESV 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2996,0.0,27.7989,0.0,Standard Sport Utility Vehicle 4WD,2015,-5250,,,,,,,,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.522,11,11.2595,0.0,0.0,0.0,498,482,482.0,498.0,18,17.8407,13,13.0525,0.0,0.0,0.0,8,5.3,4-Wheel Drive,517,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,21.8254,16,16.207,0.0,0.0,0.0,0,0,34689,0,0,Chevrolet,Tahoe K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,14.0,30.3,22.5,Standard Sport Utility Vehicle 4WD,2015,-3250,,,,,FFV,E85,330,,GMX +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3500,(POLICE) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3469,22,22,Ford,LTD Crown Victoria,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Large Cars,1987,-9250,,,,,,,,, +18.304342000000002,6.242500000000001,0.0,0.0,15,15.2927,11,10.6244,0.0,0.0,0.0,503,511,511.0,503.0,18,17.6525,12,12.3102,0.0,0.0,0.0,8,5.3,4-Wheel Drive,518,SIDI; FFV,4,3050,3800,Gasoline or E85,Regular Gasoline,4,4,22,21.7555,15,15.2721,0.0,0.0,0.0,0,0,34690,0,0,Chevrolet,Suburban K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,13.2,30.2,21.2,Standard Sport Utility Vehicle 4WD,2015,-3250,,,,,FFV,E85,380,,GMX +20.589638,0.0,0.0,0.0,14,13.9865,0,0.0,0.0,0.0,0.0,548,-1,0.0,548.0,16,16.1967,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,503,SIDI,3,3450,0,Regular,Regular Gasoline,3,0,20,20.0736,0,0.0,0.0,0.0,0.0,0,0,34691,0,0,GMC,Yukon K1500 XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.2996,0.0,27.7989,0.0,Standard Sport Utility Vehicle 4WD,2015,-5250,,,,,,,,,GMX +20.589638,0.0,0.0,0.0,14,14.0,0,0.0,0.0,0.0,0.0,555,-1,0.0,555.0,16,16.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel Drive,504,SIDI,3,3450,0,Regular,Regular Gasoline,3,0,21,20.6356,0,0.0,0.0,0.0,0.0,0,0,34692,0,0,GMC,Yukon K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,18.0,0.0,28.6,0.0,Standard Sport Utility Vehicle 4WD,2015,-5250,,,,,,,,,GMX +18.304342000000002,6.242500000000001,0.0,0.0,15,15.2927,11,10.6244,0.0,0.0,0.0,503,511,511.0,503.0,18,17.6525,12,12.3102,0.0,0.0,0.0,8,5.3,4-Wheel Drive,520,SIDI; FFV,4,3050,3800,Gasoline or E85,Regular Gasoline,4,4,22,21.7555,15,15.2721,0.0,0.0,0.0,0,0,34693,0,0,GMC,Yukon K1500 XL 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.0,13.2,30.2,21.2,Standard Sport Utility Vehicle 4WD,2015,-3250,,,,,FFV,E85,380,,GMX +18.304342000000002,5.758082,0.0,0.0,16,15.522,11,11.2595,0.0,0.0,0.0,498,482,482.0,498.0,18,17.8407,13,13.0525,0.0,0.0,0.0,8,5.3,4-Wheel Drive,521,SIDI; FFV,4,3050,3500,Gasoline or E85,Regular Gasoline,4,4,22,21.8254,16,16.207,0.0,0.0,0.0,0,0,34694,0,0,GMC,Yukon K1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,19.3,14.0,30.3,22.5,Standard Sport Utility Vehicle 4WD,2015,-3250,,,,,FFV,E85,330,,GMX +11.75609,0.0,0.0,0.0,23,23.4641,0,0.0,0.0,0.0,0.0,320,-1,0.0,320.0,28,27.7486,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,200,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,36,35.7204,0,0.0,0.0,0.0,0.0,0,0,34695,11,0,BMW,228i,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),29.9929,0.0,50.5876,0.0,Subcompact Cars,2014,1250,,,T,,,,,,BMX +7.646952,0.0,0.0,0.0,45,44.7208,0,0.0,0.0,0.0,0.0,209,-1,0.0,209.0,43,42.6324,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,431,,10,1300,0,Regular,Regular Gasoline,10,-1,40,40.3305,0,0.0,0.0,0.0,0.0,0,0,34696,0,24,Ford,C-MAX Hybrid FWD,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),61.8,0.0,57.5,0.0,Large Cars,2014,5500,,,,,Hybrid,,,280V Li-Ion,FMX +13.1844,0.0,0.0,0.0,22,22.0102,0,0.0,0.0,0.0,0.0,355,-1,0.0,355.0,25,24.9515,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,446,SIDI,6,2200,0,Regular,Regular Gasoline,6,-1,30,29.8225,0,0.0,0.0,0.0,0.0,0,0,34697,0,0,Ford,Transit Connect Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),27.9909,0.0,41.8774,0.0,Special Purpose Vehicle 2WD,2014,1000,,,T,,,,,,FMX +13.73375,0.0,0.0,0.0,24,23.6136,0,0.0,0.0,0.0,0.0,363,-1,0.0,363.0,24,24.3373,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,681,,6,2300,0,Regular,Regular Gasoline,6,-1,25,25.2844,0,0.0,0.0,0.0,0.0,0,0,34698,0,0,Nissan,NV200 Cargo Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),30.2,0.0,38.9,0.0,Special Purpose Vehicle 2WD,2014,500,,,,,,,,,NSX +0.18000000000000002,0.0,0.0,8.0,126,126.4649,0,0.0,0.0,27.0,0.0,0,-1,0.0,0.0,114,113.7879,0,0.0,30.0,0.0,0.0,,,Front-Wheel Drive,901,,10,550,0,Electricity,Electricity,10,-1,101,101.3686,0,0.0,0.0,33.0,0.0,24,92,34699,0,0,Nissan,Leaf,N,false,0,0,84,92.0,0.0,74.0,0.0,Automatic (A1),180.6641,0.0,144.8123,0.0,Midsize Cars,2014,9250,,,,,EV,,,80 kW DCPM,NSX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,83,347,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3470,22,22,Mercury,Grand Marquis,Y,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.3396,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,152,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,34700,0,0,Jaguar,F-Type V8 S Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.2,0.0,Two Seaters,2015,-4750,,,,S,,,,,JLX +18.304342000000002,0.0,0.0,0.0,16,15.6746,0,0.0,0.0,0.0,0.0,487,-1,0.0,487.0,18,18.3396,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,153,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.1504,0,0.0,0.0,0.0,0.0,0,0,34701,0,0,Jaguar,F-Type R Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5,0.0,32.2,0.0,Two Seaters,2015,-4750,,,,S,,,,,JLX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.843,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,154,SIDI,5,2600,0,Premium,Premium Gasoline,5,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,34702,0,0,Jaguar,F-Type Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,39.1,0.0,Two Seaters,2015,-1000,,,,S,,,,,JLX +14.327048,0.0,0.0,0.0,20,19.8843,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.843,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,155,SIDI,5,2600,0,Premium,Premium Gasoline,5,-1,28,27.9206,0,0.0,0.0,0.0,0.0,0,0,34703,0,0,Jaguar,F-Type Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.1,0.0,39.1,0.0,Two Seaters,2015,-1000,,,,S,,,,,JLX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.1841,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,156,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,34704,0,0,Jaguar,F-Type S Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.3,0.0,38.0,0.0,Two Seaters,2015,-1750,,,,S,,,,,JLX +14.964294,0.0,0.0,0.0,19,19.2904,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,22.1841,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,157,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,27,27.1644,0,0.0,0.0,0.0,0.0,0,0,34705,0,0,Jaguar,F-Type S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.3,0.0,38.0,0.0,Two Seaters,2015,-1750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,15.8721,0,0.0,0.0,0.0,0.0,474,-1,0.0,474.0,19,18.5914,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,101,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,34706,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.7,0.0,32.9,0.0,Minicompact Cars,2015,-3750,,,,,,,,,JLX +18.304342000000002,0.0,0.0,0.0,16,15.5983,0,0.0,0.0,0.0,0.0,490,-1,0.0,490.0,18,18.0212,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,102,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,22.2443,0,0.0,0.0,0.0,0.0,0,0,34707,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),19.4,0.0,30.9,0.0,Minicompact Cars,2015,-4750,,,,,,,,,JLX +18.304342000000002,0.0,0.0,0.0,15,15.1397,0,0.0,0.0,0.0,0.0,508,-1,0.0,508.0,18,17.5194,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,103,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,34708,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.8,0.0,30.1,0.0,Minicompact Cars,2015,-4750,,,,S,,,,,JLX +19.381068,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,515,-1,0.0,515.0,17,17.292,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,104,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6856,0,0.0,0.0,0.0,0.0,0,0,34709,10,0,Jaguar,XK Convertible,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4,0.0,30.1,0.0,Minicompact Cars,2015,-5750,,,,S,,,,,JLX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3471,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1987,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,24.0818,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.297,0,0.0,0.0,0.0,0.0,4,1.8,All-Wheel Drive,4,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,33,32.6198,0,0.0,0.0,0.0,0.0,0,0,34710,0,10,Audi,A3 quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AM-S6),30.0,0.0,44.6,0.0,Subcompact Cars,2015,750,,,T,,,,,,VGA +15.689436,0.0,0.0,0.0,19,18.9528,0,0.0,0.0,0.0,0.0,405,-1,0.0,405.0,21,21.2827,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,25,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,25,25.0457,0,0.0,0.0,0.0,0.0,0,0,34711,0,12,Subaru,WRX,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AV-S8),23.8467,0.0,34.9304,0.0,Compact Cars,2015,-2250,,,T,,,,,,FJX +18.304342000000002,0.0,0.0,0.0,15,14.9865,0,0.0,0.0,0.0,0.0,500,-1,0.0,500.0,18,17.7573,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,251,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,22.9415,0,0.0,0.0,0.0,0.0,0,0,34712,0,18,Jaguar,XF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S8),18.6437,0.0,31.8935,0.0,Midsize Cars,2015,-4750,,,,S,,,,,JLX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,352,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34713,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2015,-4750,,,,S,,,,,JLX +18.304342000000002,0.0,0.0,0.0,15,14.8331,0,0.0,0.0,0.0,0.0,504,-1,0.0,504.0,18,17.657,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,353,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34714,0,18,Jaguar,XJL,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic (S8),18.4,0.0,32.0,0.0,Large Cars,2015,-4750,,,,S,,,,,JLX +13.1844,0.0,0.0,0.0,22,22.0898,0,0.0,0.0,0.0,0.0,362,-1,0.0,362.0,25,24.6811,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,16,,6,2200,0,Regular,Regular Gasoline,6,-1,29,28.8121,0,0.0,0.0,0.0,0.0,0,0,34715,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1,0.0,40.4,0.0,Small Sport Utility Vehicle 4WD,2015,1000,,,,,,,,,FJX +12.19557,0.0,0.0,0.0,24,24.4053,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.1715,0,0.0,0.0,0.0,0.0,4,2.5,All-Wheel Drive,18,,7,2050,0,Regular,Regular Gasoline,7,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,34716,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),31.3,0.0,44.4,0.0,Small Sport Utility Vehicle 4WD,2015,1750,,,,,,,,,FJX +13.1844,0.0,0.0,0.0,23,23.1075,0,0.0,0.0,0.0,0.0,357,-1,0.0,357.0,25,24.9254,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,20,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,28,27.5771,0,0.0,0.0,0.0,0.0,0,0,34717,0,0,Subaru,Forester AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S8),29.5,0.0,38.6,0.0,Small Sport Utility Vehicle 4WD,2015,0,,,T,,,,,,FJX +12.19557,0.0,0.0,0.0,23,22.9727,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.7794,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,404,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5804,0,0.0,0.0,0.0,0.0,0,0,34718,10,0,BMW,428i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),29.314,0.0,47.41,0.0,Subcompact Cars,2014,750,,,T,,,,,,BMX +7.317342,0.0,0.0,0.0,44,44.3164,0,0.0,0.0,0.0,0.0,196,-1,0.0,196.0,45,45.3559,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,44,,10,1200,0,Regular,Regular Gasoline,10,-1,47,46.6945,0,0.0,0.0,0.0,0.0,0,0,34719,0,11,Honda,Civic Hybrid,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),61.1467,0.0,67.1963,0.0,Compact Cars,2014,6000,,,,,Hybrid,,,144V Li-Ion,HNX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3472,16,16,Oldsmobile,Delta 88 Royale,Y,false,102,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1987,-2500,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,20.3986,0,0.0,0.0,0.0,0.0,438,-1,0.0,438.0,23,23.1914,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,942,,6,2600,0,Diesel,Diesel,5,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,34721,0,0,Ram,1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,25.7954,0.0,39.0,0.0,Standard Pickup Trucks 2WD,2014,-1000,,,T,,Diesel,,,,CRX +17.351199,0.0,0.0,0.0,19,19.474,0,0.0,0.0,0.0,0.0,459,-1,0.0,459.0,22,22.155,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel Drive,943,,5,2700,0,Diesel,Diesel,4,-1,27,26.6371,0,0.0,0.0,0.0,0.0,0,0,34722,0,0,Ram,1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 8-spd,24.5469,0.0,37.2343,0.0,Standard Pickup Trucks 4WD,2014,-1500,,,T,,Diesel,,,,CRX +11.75609,0.0,0.0,0.0,27,27.4282,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,28,27.6799,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,49,,7,1950,0,Regular,Regular Gasoline,7,-1,28,27.9938,0,0.0,0.0,0.0,0.0,0,0,34723,0,0,Toyota,Highlander Hybrid 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.6,0.0,38.8,0.0,Standard Sport Utility Vehicle 4WD,2014,2250,,,,,Hybrid,,,288V Ni-MH,TYX +11.75609,0.0,0.0,0.0,28,28.016,0,0.0,0.0,0.0,0.0,313,-1,0.0,313.0,28,28.1365,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,52,,7,1950,0,Regular,Regular Gasoline,7,-1,28,28.2852,0,0.0,0.0,0.0,0.0,0,0,34724,0,0,Toyota,Highlander Hybrid 4WD LE Plus,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),39.1,0.0,38.6,0.0,Standard Sport Utility Vehicle 4WD,2014,2250,,,,,Hybrid,,,288V Ni-MH,TYX +12.657024,0.0,0.0,0.0,22,22.1179,0,0.0,0.0,0.0,0.0,338,-1,0.0,338.0,26,26.2839,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,201,SIDI,7,2300,0,Premium,Premium Gasoline,7,-1,34,34.1444,0,0.0,0.0,0.0,0.0,0,0,34725,11,0,BMW,228i,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.1384,0.0,48.2455,0.0,Subcompact Cars,2014,500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,21.5715,0,0.0,0.0,0.0,0.0,350,-1,0.0,350.0,25,25.396,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,235,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.4215,0,0.0,0.0,0.0,0.0,0,0,34726,11,0,BMW,M235i,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.3908,0.0,45.6974,0.0,Subcompact Cars,2014,0,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,19,19.4182,0,0.0,0.0,0.0,0.0,389,-1,0.0,389.0,23,22.585,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,236,SIDI,6,2600,0,Premium,Premium Gasoline,6,-1,28,28.2074,0,0.0,0.0,0.0,0.0,0,0,34727,11,0,BMW,M235i,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,24.4718,0.0,39.5179,0.0,Subcompact Cars,2014,-1000,,,T,,,,,,BMX +0.059892,0.0,0.0,0.0,27,26.6826,0,0.0,0.0,0.0,0.0,218,-1,0.0,218.0,31,30.8034,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,43,RNG=192,8,1000,0,CNG,Natural Gas,9,-1,38,37.9706,0,0.0,0.0,0.0,0.0,0,0,34728,0,6,Honda,Civic Natural Gas,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 5-spd,34.4988,0.0,53.95,0.0,Compact Cars,2014,7000,,,,,CNG,,,,HNX +29.950562,0.0,0.0,0.0,10,10.1563,0,0.0,0.0,0.0,0.0,805,-1,0.0,805.0,11,11.0853,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,5,,1,5500,0,Premium,Premium Gasoline,1,-1,12,12.4806,0,0.0,0.0,0.0,0.0,0,0,34729,0,0,Roush Performance,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.4,0.0,17.1,0.0,Standard Pickup Trucks 2WD,2014,-15500,,,,S,,,,,RII +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3473,16,16,Oldsmobile,Ninety-Eight Regency,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1987,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,11.6865,0,0.0,0.0,0.0,0.0,681,-1,0.0,681.0,13,12.9943,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,7,,1,4650,0,Premium,Premium Gasoline,1,-1,15,15.0532,0,0.0,0.0,0.0,0.0,0,0,34730,0,0,Roush Performance,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6,0.0,20.5,0.0,Standard Pickup Trucks 2WD,2014,-11250,,,,S,,,,,RII +29.950562,0.0,0.0,0.0,10,10.1563,0,0.0,0.0,0.0,0.0,805,-1,0.0,805.0,11,11.0853,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,3,,1,5500,0,Premium,Premium Gasoline,1,-1,12,12.4806,0,0.0,0.0,0.0,0.0,0,0,34731,0,0,Roush Performance,F150 Raptor Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.4,0.0,17.1,0.0,Standard Pickup Trucks 4WD,2014,-15500,,,,S,,,,,RII +29.950562,0.0,0.0,0.0,10,10.1563,0,0.0,0.0,0.0,0.0,805,-1,0.0,805.0,11,11.0853,0,0.0,0.0,0.0,0.0,8,6.2,Part-time 4-Wheel Drive,4,,1,5500,0,Premium,Premium Gasoline,1,-1,12,12.4806,0,0.0,0.0,0.0,0.0,0,0,34732,0,0,Roush Performance,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),12.4,0.0,17.1,0.0,Standard Pickup Trucks 4WD,2014,-15500,,,,S,,,,,RII +25.336022,0.0,0.0,0.0,12,11.6865,0,0.0,0.0,0.0,0.0,681,-1,0.0,681.0,13,12.9943,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel Drive,6,,1,4650,0,Premium,Premium Gasoline,1,-1,15,15.0532,0,0.0,0.0,0.0,0.0,0,0,34733,0,0,Roush Performance,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),14.6,0.0,20.5,0.0,Standard Pickup Trucks 4WD,2014,-11250,,,,S,,,,,RII +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,3,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,34734,0,0,Aston Martin,V8 Vantage S,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.6866,0.0,28.793,0.0,Two Seaters,2011,-6750,G,,,,,,,,ASX +19.381068,0.0,0.0,0.0,14,14.2728,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,16.7906,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,1,,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4058,0,0.0,0.0,0.0,0.0,0,0,34735,0,0,Spyker,C8 Aileron,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,17.101,0.0,27.471,0.0,Two Seaters,2011,-5750,G,,,,,,,,SKR +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,1,,-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,34736,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,37.6,0.0,Two Seaters,2011,-1000,,,,,,,,,LTX +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,2,,-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,34737,0,0,Lotus,Elise/Exige,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,25.2,0.0,37.0,0.0,Two Seaters,2011,-1750,,,,S,,,,,LTX +21.974,0.0,0.0,0.0,13,13.2131,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,15.3817,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,69,,-1,4000,0,Premium,Premium Gasoline,-1,-1,19,19.1604,0,0.0,0.0,0.0,0.0,0,0,34738,0,0,Porsche,911 GT3 RS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.3414,0.0,26.4976,0.0,Two Seaters,2011,-8000,G,,,,,,,,PRX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.4092,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,10,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,22,21.8952,0,0.0,0.0,0.0,0.0,0,0,34739,10,0,Jaguar,XK,N,false,74,0,0,0.0,0.0,0.0,0.0,Automatic (S6),18.4744,0.0,30.37,0.0,Minicompact Cars,2011,-5750,,,,S,,,,,JCX +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3474,0,15,Pontiac,Bonneville,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.9744,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0126,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,3,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.4839,0,0.0,0.0,0.0,0.0,0,0,34740,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,34.7,0.0,Minicompact Cars,2011,-2250,,,,,,,,,LTX +16.4805,0.0,0.0,0.0,17,17.3554,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,20.2817,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,4,,-1,3000,0,Premium,Premium Gasoline,-1,-1,26,25.5463,0,0.0,0.0,0.0,0.0,0,0,34741,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Manual 6-spd,20.8,0.0,33.8,0.0,Minicompact Cars,2011,-3000,,,,S,,,,,LTX +14.327048,0.0,0.0,0.0,20,19.5874,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.6393,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,5,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,27.9648,0,0.0,0.0,0.0,0.0,0,0,34742,2,2,Lotus,Evora,N,false,48,48,0,0.0,0.0,0.0,0.0,Automatic (S6),23.7,0.0,38.4,0.0,Minicompact Cars,2011,-1000,,,,,,,,,LTX +15.689436,0.0,0.0,0.0,18,17.9669,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0341,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,6,,-1,2850,0,Premium,Premium Gasoline,-1,-1,27,26.58,0,0.0,0.0,0.0,0.0,0,0,34743,0,0,Lotus,Evora,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,21.5,0.0,35.5,0.0,Minicompact Cars,2011,-2250,,,,,,,,,LTX +9.141184,0.0,0.0,0.0,36,35.5,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,36.3306,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,71,,-1,1550,0,Regular,Regular Gasoline,-1,-1,37,37.4,0,0.0,0.0,0.0,0.0,4,74,34744,0,0,Scion,iQ,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),46.941,0.0,58.5,0.0,Minicompact Cars,2011,4250,,,,,,,,,TYX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.352,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,140,SIDI,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,34745,10,0,BMW,M1 Coupe,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Subcompact Cars,2011,-2250,,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.8971,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.4145,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,1,,-1,3750,0,Premium,Premium Gasoline,-1,-1,21,21.082,0,0.0,0.0,0.0,0.0,0,0,34746,13,0,Roush Performance,Stage 3 Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1,0.0,30.62,0.0,Subcompact Cars,2011,-6750,G,,,S,,,,,RII +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,18,,-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,34747,0,13,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,40.9,0.0,Compact Cars,2011,-500,,,,,,,,,HNX +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,19,,-1,2300,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,34748,0,13,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),28.1,0.0,44.3,0.0,Compact Cars,2011,500,,,,,,,,,HNX +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,23,,-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,34749,0,13,Acura,TSX,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (S5),24.5,0.0,39.5,0.0,Compact Cars,2011,-1000,,,,,,,,,HNX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3475,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Large Cars,1987,-18500,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,17.7895,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,20.6259,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,28,,-1,2850,0,Premium,Premium Gasoline,-1,-1,26,25.6182,0,0.0,0.0,0.0,0.0,0,0,34750,0,12,Mercedes-Benz,C300,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 6-spd,22.2929,0.0,35.758,0.0,Compact Cars,2011,-2250,,,,,,,,,MBX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0456,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,122,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34751,0,16,Chrysler,300,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,37.9,0.0,Large Cars,2011,-1000,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,17.7948,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,21.0456,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,121,,-1,2600,0,Regular,Regular Gasoline,-1,-1,27,27.0956,0,0.0,0.0,0.0,0.0,0,0,34752,0,15,Dodge,Charger,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 5-spd,22.3,0.0,37.9,0.0,Large Cars,2011,-1000,,,,,,,,,CRX +19.381068,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,17.2884,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,11,SIDI,-1,3550,0,Premium,Premium Gasoline,-1,-1,21,21.4759,0,0.0,0.0,0.0,0.0,0,0,34753,0,18,Jaguar,XJ,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),18.5218,0.0,29.8172,0.0,Large Cars,2011,-5750,,,,S,,,,,JCX +27.4675,0.0,0.0,0.0,10,10.1732,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.039,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,240,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.5173,0,0.0,0.0,0.0,0.0,0,0,34754,0,15,Maybach,57,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4213,0.0,21.3515,0.0,Large Cars,2011,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.1732,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.039,0,0.0,0.0,0.0,0.0,12,5.5,Rear-Wheel Drive,245,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.5173,0,0.0,0.0,0.0,0.0,0,0,34755,0,15,Maybach,62,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.4213,0.0,21.3515,0.0,Large Cars,2011,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.3206,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2127,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,250,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.7394,0,0.0,0.0,0.0,0.0,0,0,34756,0,15,Maybach,57 S,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6075,0.0,21.6639,0.0,Large Cars,2011,-13250,G,,T,,,,,,MBX +27.4675,0.0,0.0,0.0,10,10.3206,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,12.2127,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,255,,-1,5050,0,Premium,Premium Gasoline,-1,-1,16,15.7394,0,0.0,0.0,0.0,0.0,0,0,34757,0,15,Maybach,62 S,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 5-spd,12.6075,0.0,21.6639,0.0,Large Cars,2011,-13250,G,,T,,,,,,MBX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,20,,-1,2400,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,31,94,34758,0,0,Acura,TSX Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S5),27.4,0.0,42.0,0.0,Small Station Wagons,2011,0,,,,,,,,,HNX +25.336022,8.320004,0.0,0.0,11,11.1818,8,7.953,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,12.811,9,9.1203,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,244,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,15.5866,11,11.114,0.0,0.0,0.0,0,0,34759,0,0,Ford,Expedition Limo. 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.6993,9.7436,21.449,15.2941,Sport Utility Vehicle - 2WD,2011,-9250,,,,,FFV,E85,100,,FMX +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44024,(FFS) (GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3476,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Large Cars,1987,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,15.8271,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.2716,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,81,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,22.5234,0,0.0,0.0,0.0,0.0,0,0,34760,0,0,Jeep,Grand Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,19.7,0.0,31.3,0.0,Sport Utility Vehicle - 2WD,2011,-3250,,,,,,,,,CRX +13.73375,0.0,0.0,0.0,22,21.7246,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,23.6535,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,37,SIDI,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,26.5328,0,0.0,0.0,0.0,0.0,0,0,34761,0,0,Kia,Sportage 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.6,0.0,40.2,0.0,Sport Utility Vehicle - 2WD,2011,500,,,T,,,,,,KMX +25.336022,8.320004,0.0,0.0,11,11.1818,8,7.953,0.0,0.0,0.0,-1,-1,699.4444444444445,683.6153846153846,13,12.811,9,9.1203,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,245,FFV,-1,4250,5050,Gasoline or E85,Regular Gasoline,-1,-1,16,15.5866,11,11.114,0.0,0.0,0.0,0,0,34762,0,0,Lincoln,Navigator Limo. 2WD FFV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,13.6993,9.7436,21.449,15.2941,Sport Utility Vehicle - 2WD,2011,-9250,,,,,FFV,E85,100,,FMX +18.304342000000002,0.0,0.0,0.0,16,16.1315,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,18.472,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel Drive,82,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,22.4536,0,0.0,0.0,0.0,0.0,0,0,34763,0,0,Jeep,Grand Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,20.1,0.0,31.2,0.0,Sport Utility Vehicle - 4WD,2011,-3250,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,21,21.2851,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,22.9008,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,38,SIDI,-1,2400,0,Regular,Regular Gasoline,-1,-1,25,25.2427,0,0.0,0.0,0.0,0.0,0,0,34764,0,0,Kia,Sportage 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,27.0,0.0,38.4,0.0,Sport Utility Vehicle - 4WD,2011,0,,,T,,,,,,KMX +20.589638,0.0,0.0,0.0,14,14.141,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,16.3104,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,227,,-1,3450,0,Regular,Regular Gasoline,-1,-1,20,20.0743,0,0.0,0.0,0.0,0.0,0,0,34765,0,0,Lincoln,MKT Hearse AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),17.5,0.0,27.8,0.0,Sport Utility Vehicle - 4WD,2011,-5250,,,,,,,,,FMX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,95,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,34766,0,0,Nissan,Murano CrossCabriolet,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),21.0,0.0,30.6,0.0,Sport Utility Vehicle - 4WD,2011,-3750,,,,,,,,,NSX +14.964294,0.0,0.0,0.0,18,18.0952,0,0.0,0.0,0.0,0.0,409,-1,0.0,409.0,22,21.6622,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,2,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,29,28.538,0,0.0,0.0,0.0,0.0,0,0,34767,0,15,Hyundai,Genesis RWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 8-spd,22.7,0.0,40.0,0.0,Large Cars,2015,-500,,,,,,,,,HYX +17.337486000000002,0.0,0.0,0.0,16,16.3595,0,0.0,0.0,0.0,0.0,459,-1,0.0,459.0,19,19.3791,0,0.0,0.0,0.0,0.0,6,3.8,All-Wheel Drive,3,SIDI,4,2900,0,Regular,Regular Gasoline,4,-1,25,25.0247,0,0.0,0.0,0.0,0.0,0,0,34768,0,15,Hyundai,Genesis AWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 8-spd,20.4,0.0,34.9,0.0,Large Cars,2015,-2500,,,,,,,,,HYX +18.304342000000002,0.0,0.0,0.0,15,14.7564,0,0.0,0.0,0.0,0.0,503,-1,0.0,503.0,18,17.6153,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0807,0,0.0,0.0,0.0,0.0,0,0,34769,0,15,Hyundai,Genesis RWD,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.3,0.0,32.1,0.0,Large Cars,2015,-4750,,,,,,,,,HYX +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44023,(FFS) (GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,3477,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Large Cars,1987,-22500,T,,,,,,,, +3.614241815668203,0.24600000000000002,0.0,5.0,31,31.0,85,85.0,0.0,39.0,0.67,91,-1,0.0,91.0,33,33.0,82,82.0,41.0,0.0,0.65,4,1.4,Front-Wheel Drive,401,PHEV,10,1850,750,Premium Gas or Electricity,Premium Gasoline,10,-1,35,35.0,80,80.0,0.0,42.0,0.64,0,0,34770,11,0,Cadillac,ELR,N,false,83,0,0,0.0,38.46,0.0,35.05,Automatic (variable gear ratios),47.6,144.9,53.5,133.3,Subcompact Cars,2014,6500,,,,,Plug-in Hybrid,Electricity,37,126 kW,GMX +12.19557,0.0,0.0,0.0,23,23.4556,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,27.0673,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,7,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,33,33.3421,0,0.0,0.0,0.0,0.0,0,0,34771,0,12,Audi,A3,N,false,0,86,0,0.0,0.0,0.0,0.0,Auto(AM-S6),28.9,0.0,46.6,0.0,Subcompact Cars,2015,750,,,T,,,,,,VGA +9.976196,0.0,0.0,0.0,30,29.6664,0,0.0,0.0,0.0,0.0,268,-1,0.0,268.0,33,33.1245,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,39,,8,1650,0,Regular,Regular Gasoline,8,-1,39,38.6277,0,0.0,0.0,0.0,0.0,0,0,34772,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),38.7696,0.0,54.936,0.0,Compact Cars,2014,3750,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,21.9,0,0.0,0.0,0.0,0.0,352,-1,0.0,352.0,25,25.2034,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,45,,6,2400,0,Premium,Premium Gasoline,6,-1,31,30.9,0,0.0,0.0,0.0,0.0,0,0,34773,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.5,0.0,41.6,0.0,Compact Cars,2014,0,,,,,,,,,HNX +9.404872000000001,0.0,0.0,0.0,31,31.1553,0,0.0,0.0,0.0,0.0,254,-1,0.0,254.0,35,35.038,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,42,,9,1550,0,Regular,Regular Gasoline,9,-1,41,41.3339,0,0.0,0.0,0.0,0.0,0,0,34774,0,12,Honda,Civic HF,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),40.9352,0.0,59.0168,0.0,Compact Cars,2014,4250,,,,,,,,,HNX +0.228,0.0,0.0,12.0,88,87.9,0,0.0,0.0,38.0,0.0,0,-1,0.0,0.0,89,88.8,0,0.0,38.0,0.0,0.0,,,Rear-Wheel Drive,1,85 kW-hr battery pack,10,700,0,Electricity,Electricity,10,-1,90,90.1,0,0.0,0.0,37.0,0.0,26,94,34775,0,0,Tesla,Model S (85 kW-hr battery pack),N,false,0,0,265,262.7,0.0,266.8,0.0,Automatic (A1),110.4,0.0,113.2,0.0,Large Cars,2014,8500,,,,,EV,,,270 kW AC Induction,TSL +0.21000000000000002,0.0,0.0,10.0,94,94.4,0,0.0,0.0,36.0,0.0,0,-1,0.0,0.0,95,95.4,0,0.0,35.0,0.0,0.0,,,Rear-Wheel Drive,2,60 kW-hr battery pack,10,650,0,Electricity,Electricity,10,-1,97,96.7,0,0.0,0.0,35.0,0.0,26,94,34776,0,0,Tesla,Model S (60 kW-hr battery pack),N,false,0,0,208,205.7,0.0,210.7,0.0,Automatic (A1),118.6,0.0,121.5,0.0,Large Cars,2014,8750,,,,,EV,,,225 kW AC Induction,TSL +14.964294,0.0,0.0,0.0,18,18.3197,0,0.0,0.0,0.0,0.0,403,-1,0.0,403.0,22,21.928,0,0.0,0.0,0.0,0.0,6,3.6,All-Wheel Drive,3,,5,2500,0,Regular,Regular Gasoline,5,-1,29,28.8804,0,0.0,0.0,0.0,0.0,0,0,34777,0,16,Chrysler,200 AWD,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 9-spd,22.9996,0.0,40.4998,0.0,Midsize Cars,2015,-500,,,,,,,,,CRX +15.689436,0.0,0.0,0.0,18,18.1836,0,0.0,0.0,0.0,0.0,428,-1,0.0,428.0,21,20.6914,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,22,,5,2600,0,Regular,Regular Gasoline,5,-1,25,24.8862,0,0.0,0.0,0.0,0.0,0,0,34778,0,0,Lexus,RX 350,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.818,0.0,34.7,0.0,Small Sport Utility Vehicle 2WD,2015,-1000,,,,,,,,,TYX +10.987,0.0,0.0,0.0,32,31.5059,0,0.0,0.0,0.0,0.0,297,-1,0.0,297.0,30,29.7833,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,31,,7,2000,0,Premium,Premium Gasoline,7,-1,28,27.9177,0,0.0,0.0,0.0,0.0,0,0,34779,0,0,Lexus,RX 450h,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),41.4485,0.0,39.0959,0.0,Small Sport Utility Vehicle 2WD,2015,2000,,,,,Hybrid,,,288V Ni-MH,TYX +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47045,B202 (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,102,3478,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Large Cars,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,18.4697,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,21.1729,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,23,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,34780,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.2,0.0,36.0,0.0,Small Sport Utility Vehicle 4WD,2015,-1000,,,,,,,,,TYX +16.4805,0.0,0.0,0.0,18,17.5473,0,0.0,0.0,0.0,0.0,445,-1,0.0,445.0,20,19.9715,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,24,,5,2750,0,Regular,Regular Gasoline,5,-1,24,24.0289,0,0.0,0.0,0.0,0.0,0,0,34781,0,0,Lexus,RX 350 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),21.971,0.0,33.4638,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,,,,,,,TYX +11.360558000000001,0.0,0.0,0.0,30,29.5084,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6072,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,32,,7,2100,0,Premium,Premium Gasoline,7,-1,28,27.5778,0,0.0,0.0,0.0,0.0,0,0,34782,0,0,Lexus,RX 450h AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AV-S6),38.5411,0.0,38.601,0.0,Small Sport Utility Vehicle 4WD,2015,1500,,,,,Hybrid,,,288V Ni-MH,TYX +13.73375,0.0,0.0,0.0,20,19.9303,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,24,23.6015,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,414,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,30,30.4591,0,0.0,0.0,0.0,0.0,0,0,34783,10,0,BMW,435i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.162,0.0,42.8105,0.0,Subcompact Cars,2014,-500,,,T,,,,,,BMX +9.976196,0.0,0.0,0.0,29,29.3565,0,0.0,0.0,0.0,0.0,271,-1,0.0,271.0,33,32.7649,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,40,,8,1650,0,Regular,Regular Gasoline,8,-1,38,38.1834,0,0.0,0.0,0.0,0.0,0,0,34784,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Auto(AV-S7),38.3217,0.0,54.2691,0.0,Compact Cars,2014,3750,,,,,,,,,HNX +10.613442000000001,0.0,0.0,0.0,28,27.8438,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,31.0373,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,41,,8,1800,0,Regular,Regular Gasoline,8,-1,36,36.0976,0,0.0,0.0,0.0,0.0,0,0,34785,12,12,Honda,Civic,N,false,83,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.1499,0.0,51.1496,0.0,Compact Cars,2014,3000,,,,,,,,,HNX +12.19557,0.0,0.0,0.0,24,23.7178,0,0.0,0.0,0.0,0.0,332,-1,0.0,332.0,27,26.8926,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,212,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,32,32.1529,0,0.0,0.0,0.0,0.0,0,0,34786,0,13,Mercedes-Benz,CLA250 4matic,N,false,0,88,0,0.0,0.0,0.0,0.0,Auto(AM7),30.3444,0.0,45.3013,0.0,Compact Cars,2014,750,,,T,,,,,,MBX +10.613442000000001,0.0,0.0,0.0,27,27.1065,0,0.0,0.0,0.0,0.0,288,-1,0.0,288.0,31,30.7203,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,5,,8,1950,0,Premium,Premium Gasoline,8,-1,37,36.7006,0,0.0,0.0,0.0,0.0,13,97,34787,0,0,Dodge,Dart,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM6),35.1,0.0,52.0496,0.0,Midsize Cars,2014,2250,,,T,,,,,,CRX +14.675904000000001,0.0,0.0,0.0,23,23.0,0,0.0,0.0,0.0,0.0,391,-1,0.0,391.0,26,26.0,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,570,,7,2300,0,Diesel,Diesel,6,-1,31,31.405,0,0.0,0.0,0.0,0.0,0,0,34788,0,0,BMW,X5 xDrive35d,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),30.34,0.0,44.2,0.0,Standard Sport Utility Vehicle 4WD,2014,500,,,T,,Diesel,,,,BMX +8.099619256371815,6.5922,0.0,3.0,23,22.6723,42,41.6362,0.87,53.0,0.39,206,-1,0.0,206.0,25,25.2387,50,49.9705,52.0,0.5,0.39,6,3.0,Rear-Wheel Drive,641,PHEV,8,2400,0,Premium and Electricity,Premium Gasoline,9,-1,29,29.2912,66,66.1553,0.03,51.0,0.38,0,0,34789,0,16,Porsche,Panamera S E-Hybrid,N,true,0,108,0,0.0,16.01,0.0,15.6,Auto(AM-S8),28.9,59.5,41.1,94.5,Large Cars,2014,2250,,,,S,Plug-in Hybrid,Electricity,16,70 kW,PRX +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47055,"B202 (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,102,3479,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Large Cars,1987,-2500,,,T,,,,,, +9.690534,0.0,0.0,0.0,29,29.0,0,0.0,0.0,0.0,0.0,268,-1,0.0,268.0,34,34.1488,0,0.0,0.0,0.0,0.0,3,1.5,Front-Wheel Drive,32,SIDI,8,1750,0,Premium,Premium Gasoline,8,-1,41,41.0,0,0.0,0.0,0.0,0.0,9,80,34790,0,0,MINI,Cooper (3-doors),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),38.8689,0.0,59.5973,0.0,Subcompact Cars,2014,3250,,,T,,,,,,BMX +9.690534,0.0,0.0,0.0,30,29.9636,0,0.0,0.0,0.0,0.0,258,-1,0.0,258.0,34,34.3947,0,0.0,0.0,0.0,0.0,3,1.5,Front-Wheel Drive,33,SIDI,8,1750,0,Premium,Premium Gasoline,8,-1,42,41.9827,0,0.0,0.0,0.0,0.0,9,80,34791,0,0,MINI,Cooper (3-doors),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,39.2,0.0,60.0,0.0,Subcompact Cars,2014,3250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,301,-1,0.0,301.0,29,29.4054,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,55,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,38,37.5368,0,0.0,0.0,0.0,0.0,9,80,34792,0,0,MINI,Cooper S (3-doors),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.1,0.0,53.3,0.0,Subcompact Cars,2014,1500,,,T,,,,,,BMX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,582,-1,0.0,582.0,15,15.1841,0,0.0,0.0,0.0,0.0,8,7.0,Rear-Wheel Drive,120,,2,4000,0,Premium,Premium Gasoline,2,-1,19,19.1604,0,0.0,0.0,0.0,0.0,0,0,34793,11,0,Chevrolet,Camaro,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,26.5,0.0,Compact Cars,2014,-8000,G,,,,,,,,GMX +15.689436,0.0,0.0,0.0,18,17.6444,0,0.0,0.0,0.0,0.0,432,-1,0.0,432.0,21,20.5664,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,814,,5,2600,0,Regular,Regular Gasoline,5,-1,26,25.7855,0,0.0,0.0,0.0,0.0,0,0,34794,0,0,Ram,C/V,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 6-spd,22.1,0.0,36.0,0.0,Minivan - 2WD,2014,-1000,,,,,,,,,CRX +12.657024,0.0,0.0,0.0,22,21.9803,0,0.0,0.0,0.0,0.0,341,-1,0.0,341.0,26,25.9308,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,428,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,33,33.2305,0,0.0,0.0,0.0,0.0,0,0,34795,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),27.9499,0.0,46.8923,0.0,Two Seaters,2015,500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,22,22.2199,0,0.0,0.0,0.0,0.0,337,-1,0.0,337.0,26,26.4148,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,429,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,34,34.3383,0,0.0,0.0,0.0,0.0,0,0,34796,0,0,BMW,Z4 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,28.2783,0.0,48.5331,0.0,Two Seaters,2015,500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.5445,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.352,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,435,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,26.1997,0,0.0,0.0,0.0,0.0,0,0,34797,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,23.3,0.0,36.6,0.0,Two Seaters,2015,-2250,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1135,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5071,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,436,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.5293,0,0.0,0.0,0.0,0.0,0,0,34798,0,0,BMW,Z4 sDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.3958,0.0,32.7447,0.0,Two Seaters,2015,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,17.1135,0,0.0,0.0,0.0,0.0,454,-1,0.0,454.0,20,19.5071,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,438,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.5293,0,0.0,0.0,0.0,0.0,0,0,34799,0,0,BMW,Z4 sDrive35is,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),21.3958,0.0,32.7447,0.0,Two Seaters,2015,-3000,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,83,348,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47050,"B202 (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,102,3480,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Large Cars,1987,-1000,,SIL,T,,,,,, +11.360558000000001,0.0,0.0,0.0,26,25.9718,0,0.0,0.0,0.0,0.0,300,-1,0.0,300.0,29,29.0504,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,30,,7,2100,0,Premium,Premium Gasoline,7,-1,34,33.9721,0,0.0,0.0,0.0,0.0,0,0,34800,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.4948,0.0,47.9902,0.0,Two Seaters,2015,1500,,,,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,28,27.6759,0,0.0,0.0,0.0,0.0,287,-1,0.0,287.0,31,30.8749,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,40,,8,1950,0,Premium,Premium Gasoline,8,-1,36,35.9544,0,0.0,0.0,0.0,0.0,0,0,34801,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),35.9103,0.0,50.9362,0.0,Two Seaters,2015,2250,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,50,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34802,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Two Seaters,2015,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,52,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34803,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Two Seaters,2015,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,70,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34804,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Two Seaters,2015,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,72,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34805,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Two Seaters,2015,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,25.9718,0,0.0,0.0,0.0,0.0,300,-1,0.0,300.0,29,29.0504,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,36,,7,2100,0,Premium,Premium Gasoline,7,-1,34,33.9721,0,0.0,0.0,0.0,0.0,0,0,34806,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),33.4948,0.0,47.9902,0.0,Minicompact Cars,2015,1500,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,58,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34807,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Minicompact Cars,2015,1250,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.2565,0,0.0,0.0,0.0,0.0,312,-1,0.0,312.0,28,28.4451,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,78,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.6349,0,0.0,0.0,0.0,0.0,0,0,34808,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4896,0.0,47.4907,0.0,Minicompact Cars,2015,1250,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,14,13.819,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.0447,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,22,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,24,23.8488,0,0.0,0.0,0.0,0.0,0,0,34809,7,0,Bentley,Continental GT Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.3,0.0,31.8,0.0,Subcompact Cars,2015,-5750,G,,T,,,,,,VGA +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47041,B202 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,102,3481,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Large Cars,1987,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,15.2087,0,0.0,0.0,0.0,0.0,475,-1,0.0,475.0,19,18.5553,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,24,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,25.3816,0,0.0,0.0,0.0,0.0,0,0,34810,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.1,0.0,33.5,0.0,Compact Cars,2015,-3750,,,T,,,,,,VGA +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,16,87,34811,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2015,750,,,,,,,,,BMX +12.19557,0.0,0.0,0.0,25,24.9783,0,0.0,0.0,0.0,0.0,328,-1,0.0,328.0,27,26.9788,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,42,,7,2250,0,Premium,Premium Gasoline,7,-1,30,29.9062,0,0.0,0.0,0.0,0.0,14,87,34812,0,0,MINI,Cooper Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.1,0.0,42.0,0.0,Compact Cars,2015,750,,,,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,60,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,16,87,34813,0,0,MINI,Cooper S Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2015,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,61,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,32,32.2876,0,0.0,0.0,0.0,0.0,16,87,34814,0,0,MINI,Cooper S Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2015,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.3335,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.0353,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,62,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,30,30.3272,0,0.0,0.0,0.0,0.0,16,87,34815,0,0,MINI,Cooper S Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8122,0.0,42.617,0.0,Compact Cars,2015,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,25.1069,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.4327,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,63,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9353,0,0.0,0.0,0.0,0.0,16,87,34816,0,0,MINI,Cooper S Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2799,0.0,43.5096,0.0,Compact Cars,2015,750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,25.1926,0,0.0,0.0,0.0,0.0,318,-1,0.0,318.0,28,27.9113,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,64,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,32,32.152,0,0.0,0.0,0.0,0.0,14,87,34817,0,0,MINI,Cooper S Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),32.4,0.0,45.3,0.0,Compact Cars,2015,1250,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.2591,0,0.0,0.0,0.0,0.0,309,-1,0.0,309.0,29,28.6678,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,65,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,32,32.2876,0,0.0,0.0,0.0,0.0,14,87,34818,0,0,MINI,Cooper S Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.9,0.0,45.5,0.0,Compact Cars,2015,1500,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.3335,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.0353,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,66,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,30,30.3272,0,0.0,0.0,0.0,0.0,14,87,34819,0,0,MINI,Cooper S Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8122,0.0,42.617,0.0,Compact Cars,2015,500,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47040,B202 (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,102,3482,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Large Cars,1987,-1750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,25.1069,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.4327,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,67,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9353,0,0.0,0.0,0.0,0.0,14,87,34820,0,0,MINI,Cooper S Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2799,0.0,43.5096,0.0,Compact Cars,2015,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.3335,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.0353,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,82,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,30,30.3272,0,0.0,0.0,0.0,0.0,16,87,34821,0,0,MINI,JCW Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8122,0.0,42.617,0.0,Compact Cars,2015,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,25.1069,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.4327,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,83,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9353,0,0.0,0.0,0.0,0.0,16,87,34822,0,0,MINI,JCW Countryman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2799,0.0,43.5096,0.0,Compact Cars,2015,750,,,T,,,,,,BMX +12.657024,0.0,0.0,0.0,23,23.3335,0,0.0,0.0,0.0,0.0,340,-1,0.0,340.0,26,26.0353,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,84,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,30,30.3272,0,0.0,0.0,0.0,0.0,14,87,34823,0,0,MINI,JCW Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),29.8122,0.0,42.617,0.0,Compact Cars,2015,500,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,25,25.1069,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,27,27.4327,0,0.0,0.0,0.0,0.0,4,1.6,All-Wheel Drive,85,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,31,30.9353,0,0.0,0.0,0.0,0.0,14,87,34824,0,0,MINI,JCW Paceman All4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,32.2799,0.0,43.5096,0.0,Compact Cars,2015,750,,,T,,,,,,BMX +11.75609,0.0,0.0,0.0,25,24.6434,0,0.0,0.0,0.0,0.0,319,-1,0.0,319.0,28,27.6891,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,1,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,33,32.6158,0,0.0,0.0,0.0,0.0,16,93,34825,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S6),30.7,0.0,45.3,0.0,Compact Cars,2015,1250,,,T,,,,,,VGA +11.75609,0.0,0.0,0.0,25,24.9095,0,0.0,0.0,0.0,0.0,311,-1,0.0,311.0,28,28.407,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,8,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,34,34.2917,0,0.0,0.0,0.0,0.0,16,93,34826,0,0,Volkswagen,GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,30.0,0.0,46.4,0.0,Compact Cars,2015,1250,,,T,,,,,,VGA +11.360558000000001,0.0,0.0,0.0,25,24.9236,0,0.0,0.0,0.0,0.0,306,-1,0.0,306.0,29,29.1287,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,87,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,36.6969,0,0.0,0.0,0.0,0.0,0,0,34827,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S8),32.0234,0.0,52.0425,0.0,Compact Cars,2015,2500,,,T,,,,,,VVX +11.75609,0.0,0.0,0.0,24,23.7059,0,0.0,0.0,0.0,0.0,323,-1,0.0,323.0,28,27.6642,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,92,SIDI,7,2150,0,Premium,Premium Gasoline,7,-1,35,34.7577,0,0.0,0.0,0.0,0.0,0,0,34828,0,14,Volvo,S60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S8),30.3279,0.0,49.1557,0.0,Compact Cars,2015,1250,,,T,S,,,,,VVX +19.381068,0.0,0.0,0.0,14,13.819,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.0447,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,23,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,24,23.8488,0,0.0,0.0,0.0,0.0,0,0,34829,13,0,Bentley,Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S8),17.3,0.0,31.8,0.0,Midsize Cars,2015,-5750,G,,T,,,,,,VGA +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3483,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +11.75609,0.0,0.0,0.0,23,23.0351,0,0.0,0.0,0.0,0.0,322,-1,0.0,322.0,28,27.6966,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,1,,7,1950,0,Regular,Regular Gasoline,7,-1,36,36.0,0,0.0,0.0,0.0,0.0,0,0,34830,0,16,Chrysler,200,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 9-spd,29.4,0.0,52.1952,0.0,Midsize Cars,2015,2250,,,,,,,,,CRX +14.327048,0.0,0.0,0.0,19,18.9925,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,23.1342,0,0.0,0.0,0.0,0.0,6,3.6,Front-Wheel Drive,2,,5,2400,0,Regular,Regular Gasoline,5,-1,32,31.5409,0,0.0,0.0,0.0,0.0,0,0,34831,0,16,Chrysler,200,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 9-spd,23.9,0.0,44.4,0.0,Midsize Cars,2015,0,,,,,,,,,CRX +11.360558000000001,0.0,0.0,0.0,25,24.9236,0,0.0,0.0,0.0,0.0,306,-1,0.0,306.0,29,29.1287,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,89,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,36.6969,0,0.0,0.0,0.0,0.0,0,0,34832,0,15,Volvo,S80 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),32.0234,0.0,52.0425,0.0,Midsize Cars,2015,2500,,,T,,,,,,VVX +12.657024,0.0,0.0,0.0,22,22.061,0,0.0,0.0,0.0,0.0,345,-1,0.0,345.0,26,25.7652,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,150,SIDI,6,2300,0,Premium,Premium Gasoline,6,-1,32,32.4178,0,0.0,0.0,0.0,0.0,25,98,34833,0,0,BMW,X1 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.0605,0.0,45.692,0.0,Large Cars,2015,500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,17.8699,0,0.0,0.0,0.0,0.0,423,-1,0.0,423.0,21,20.9509,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,154,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,27,26.5446,0,0.0,0.0,0.0,0.0,25,98,34834,0,0,BMW,X1 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.4,0.0,37.1,0.0,Large Cars,2015,-2250,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,21,21.1285,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.7591,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,371,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.0235,0,0.0,0.0,0.0,0.0,0,0,34835,0,28,BMW,X3 sDrive 28i,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),26.7866,0.0,39.2499,0.0,Large Cars,2015,-500,,,T,,,,,,BMX +9.404872000000001,0.0,0.0,0.0,32,32.289,0,0.0,0.0,0.0,0.0,256,-1,0.0,256.0,35,34.8179,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,1,SIDI,8,1550,0,Regular,Regular Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,0,0,34836,0,17,Honda,Fit,N,false,0,96,0,0.0,0.0,0.0,0.0,Auto(AV-S7),42.6,0.0,54.75,0.0,Small Station Wagons,2015,4250,,,,,,,,,HNX +10.283832,0.0,0.0,0.0,29,28.9711,0,0.0,0.0,0.0,0.0,277,-1,0.0,277.0,32,32.0484,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,2,SIDI,8,1700,0,Regular,Regular Gasoline,8,-1,37,36.8297,0,0.0,0.0,0.0,0.0,0,0,34837,0,17,Honda,Fit,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 6-spd,37.7661,0.0,52.2424,0.0,Small Station Wagons,2015,3500,,,,,,,,,HNX +11.360558000000001,0.0,0.0,0.0,25,24.9236,0,0.0,0.0,0.0,0.0,306,-1,0.0,306.0,29,29.1287,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,88,SIDI,7,1900,0,Regular,Regular Gasoline,7,-1,37,36.6969,0,0.0,0.0,0.0,0.0,0,0,34838,0,28,Volvo,V60 FWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S8),32.0234,0.0,52.0425,0.0,Small Station Wagons,2015,2500,,,T,,,,,,VVX +14.327048,0.0,0.0,0.0,20,19.9584,0,0.0,0.0,0.0,0.0,385,-1,0.0,385.0,23,22.9997,0,0.0,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,4,,5,2600,0,Premium,Premium Gasoline,5,-1,28,28.2637,0,0.0,0.0,0.0,0.0,0,0,34839,0,0,Acura,RDX 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),25.2,0.0,39.6,0.0,Small Sport Utility Vehicle 2WD,2015,-1000,,,,,,,,,HNX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3484,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,24.046,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.7903,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,90,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,34840,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S8),30.8,0.0,43.8,0.0,Small Sport Utility Vehicle 2WD,2015,1750,,,T,,,,,,VVX +12.19557,0.0,0.0,0.0,24,24.046,0,0.0,0.0,0.0,0.0,333,-1,0.0,333.0,27,26.7903,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,91,SIDI,7,2050,0,Regular,Regular Gasoline,7,-1,31,31.133,0,0.0,0.0,0.0,0.0,0,0,34841,0,37,Volvo,XC70 FWD,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic (S8),30.8,0.0,43.8,0.0,Small Sport Utility Vehicle 2WD,2015,1750,,,T,,,,,,VVX +13.1844,0.0,0.0,0.0,22,21.9075,0,0.0,0.0,0.0,0.0,356,-1,0.0,356.0,25,25.0627,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,93,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,30,30.417,0,0.0,0.0,0.0,0.0,0,0,34842,0,34,Volvo,XC60 FWD,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic (S8),27.8502,0.0,42.7487,0.0,Small Sport Utility Vehicle 2WD,2015,0,,,T,S,,,,,VVX +14.964294,0.0,0.0,0.0,19,19.4391,0,0.0,0.0,0.0,0.0,399,-1,0.0,399.0,22,22.229,0,0.0,0.0,0.0,0.0,6,3.5,All-Wheel Drive,5,,5,2750,0,Premium,Premium Gasoline,5,-1,27,26.9579,0,0.0,0.0,0.0,0.0,0,0,34843,0,0,Acura,RDX 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),24.5,0.0,37.7,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,,,,,,,HNX +13.73375,0.0,0.0,0.0,21,21.1285,0,0.0,0.0,0.0,0.0,372,-1,0.0,372.0,24,23.7591,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,370,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,28,28.0235,0,0.0,0.0,0.0,0.0,0,0,34844,0,0,BMW,X3 xDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.7866,0.0,39.2499,0.0,Small Sport Utility Vehicle 4WD,2015,-500,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,19,18.7674,0,0.0,0.0,0.0,0.0,415,-1,0.0,415.0,21,21.3853,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,372,SIDI,5,2850,0,Premium,Premium Gasoline,5,-1,26,25.7807,0,0.0,0.0,0.0,0.0,0,0,34845,0,0,BMW,X3 xDrive35i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5983,0.0,35.9931,0.0,Small Sport Utility Vehicle 4WD,2015,-2250,,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.0,0,0.0,0.0,0.0,0.0,420,-1,0.0,420.0,21,20.6263,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,42,,5,2600,0,Regular,Regular Gasoline,5,-1,25,25.103,0,0.0,0.0,0.0,0.0,0,0,34846,0,0,Volvo,XC70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.5139,0.0,34.6045,0.0,Small Sport Utility Vehicle 4WD,2015,-1000,,,,,,,,,VVX +16.4805,0.0,0.0,0.0,18,17.8507,0,0.0,0.0,0.0,0.0,429,-1,0.0,429.0,20,20.4264,0,0.0,0.0,0.0,0.0,6,3.2,All-Wheel Drive,43,,5,2750,0,Regular,Regular Gasoline,5,-1,25,24.8,0,0.0,0.0,0.0,0.0,0,0,34847,0,0,Volvo,XC60 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),22.0502,0.0,34.3019,0.0,Small Sport Utility Vehicle 4WD,2015,-1750,,,,,,,,,VVX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,-1,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34848,6,0,MINI,Cooper S Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Minicompact Cars,2015,1500,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,22,21.505,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,25,24.5542,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,1, PFI,6,2400,0,Premium,Premium Gasoline,6,-1,30,29.7013,0,0.0,0.0,0.0,0.0,0,0,34849,7,0,Subaru,BRZ,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,27.3,0.0,41.7,0.0,Minicompact Cars,2015,0,,,,,,,,,FJX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3485,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,24.5488,0,0.0,0.0,0.0,0.0,317,-1,0.0,317.0,28,27.9059,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,2, PFI,7,2150,0,Premium,Premium Gasoline,7,-1,34,33.5061,0,0.0,0.0,0.0,0.0,0,0,34850,7,0,Subaru,BRZ,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic (S6),31.5,0.0,47.3,0.0,Minicompact Cars,2015,1250,,,,,,,,,FJX +12.19557,0.0,0.0,0.0,23,22.7397,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.6018,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,404,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5706,0,0.0,0.0,0.0,0.0,0,0,34851,9,0,BMW,428i Convertible,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.9928,0.0,47.3955,0.0,Subcompact Cars,2015,750,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,21,21.0376,0,0.0,0.0,0.0,0.0,358,-1,0.0,358.0,25,24.8728,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,640,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.0038,0,0.0,0.0,0.0,0.0,0,0,34852,13,0,BMW,640i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.6629,0.0,45.0816,0.0,Subcompact Cars,2015,0,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,22.7397,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.6018,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,528,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5706,0,0.0,0.0,0.0,0.0,0,0,34853,0,14,BMW,528i,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S8),28.9928,0.0,47.3955,0.0,Midsize Cars,2015,750,,,T,,,,,,BMX +12.19557,0.0,0.0,0.0,23,22.7397,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.6018,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,152,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5706,0,0.0,0.0,0.0,0.0,25,98,34854,0,0,BMW,X1 sDrive28i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),28.9928,0.0,47.3955,0.0,Large Cars,2015,750,,,T,,,,,,BMX +9.141184,0.0,0.0,0.0,33,33.0,0,0.0,0.0,0.0,0.0,247,-1,0.0,247.0,36,36.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,3,SIDI,8,1550,0,Regular,Regular Gasoline,8,-1,41,41.0912,0,0.0,0.0,0.0,0.0,0,0,34855,0,17,Honda,Fit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),44.8998,0.0,58.6496,0.0,Small Station Wagons,2015,4250,,,,,,,,,HNX +10.40295132375,0.30000000000000004,0.0,3.0,20,20.4,68,68.266,0.0,49.0,0.3339,277,-1,0.0,277.0,22,21.7,67,67.3824,50.0,0.0,0.3229,8,4.6,All-Wheel Drive,541,PHEV,7,2750,900,Premium Gas or Electricity,Premium Gasoline,8,-1,24,23.5,66,66.333,0.0,51.0,0.3093,0,0,34856,0,0,Porsche,918 Spyder,N,false,0,0,0,0.0,12.97,0.0,11.76,Auto(AM-S7),28.6,97.6956,34.3,94.9437,Two Seaters,2015,1000,,,,,Plug-in Hybrid,Electricity,12,95 kW and 116 kW,PRX +13.1844,0.0,0.0,0.0,21,21.0553,0,0.0,0.0,0.0,0.0,356,-1,0.0,356.0,25,25.1287,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,406,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,33,32.9105,0,0.0,0.0,0.0,0.0,0,0,34857,10,0,BMW,428i xDrive Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),26.687,0.0,46.4193,0.0,Subcompact Cars,2014,0,,,T,,,,,,BMX +10.613442000000001,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,285,-1,0.0,285.0,31,31.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,54,SIDI,8,1950,0,Premium,Premium Gasoline,8,-1,38,38.0,0,0.0,0.0,0.0,0.0,9,80,34858,0,0,MINI,Cooper S (3-doors),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),36.0383,0.0,55.75,0.0,Subcompact Cars,2014,2250,,,T,,,,,,BMX +0.324,0.0,0.0,6.0,61,61.32,0,0.0,0.0,55.0,0.0,0,-1,0.0,0.0,63,62.9357,0,0.0,54.0,0.0,0.0,,,Front-Wheel Drive,1,,10,950,0,Electricity,Electricity,10,-1,65,65.03,0,0.0,0.0,52.0,0.0,0,0,34859,0,0,BYD,e6,N,false,0,0,127,121.1,0.0,133.9,0.0,Automatic (A1),87.6,0.0,92.9,0.0,Small Sport Utility Vehicle 2WD,2014,7250,,,,,EV,,,75 kW AC PMSM,BYD +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3486,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1987,1500,,SIL,,,,,,, +0.324,0.0,0.0,6.0,61,61.32,0,0.0,0.0,55.0,0.0,0,-1,0.0,0.0,63,62.9357,0,0.0,54.0,0.0,0.0,,,Front-Wheel Drive,1,,10,950,0,Electricity,Electricity,10,-1,65,65.03,0,0.0,0.0,52.0,0.0,0,0,34860,0,0,BYD,e6,N,false,0,0,127,121.1,0.0,133.9,0.0,Automatic (A1),87.6,0.0,92.9,0.0,Small Sport Utility Vehicle 2WD,2013,7250,,,,,EV,,,75 kW AC PMSM,BYD +10.987,0.0,0.0,0.0,27,27.2112,0,0.0,0.0,0.0,0.0,298,0,0.0,298.0,30,29.7557,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,31,,7,2000,0,Premium,Premium Gasoline,7,-1,34,33.5952,0,0.0,0.0,0.0,0.0,0,0,34861,0,0,MINI,Cooper Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2487,0.0,47.432,0.0,Two Seaters,2015,2000,,,,,,,,,BMX +10.283832,0.0,0.0,0.0,29,29.3032,0,0.0,0.0,0.0,0.0,275,0,0.0,275.0,32,32.2454,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,41,,8,1900,0,Premium,Premium Gasoline,8,-1,37,36.7561,0,0.0,0.0,0.0,0.0,0,0,34862,0,0,MINI,Cooper Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,38.2448,0.0,52.1324,0.0,Two Seaters,2015,2500,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,0,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,51,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34863,0,0,MINI,Cooper S Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Two Seaters,2015,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,0,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,53,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34864,0,0,MINI,Cooper S Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Two Seaters,2015,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,0,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,71,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34865,0,0,MINI,John Cooper Works Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Two Seaters,2015,1500,,,T,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,0,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,73,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34866,0,0,MINI,John Cooper Works Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Two Seaters,2015,1500,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.2112,0,0.0,0.0,0.0,0.0,298,0,0.0,298.0,30,29.7557,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,37,,7,2000,0,Premium,Premium Gasoline,7,-1,34,33.5952,0,0.0,0.0,0.0,0.0,0,0,34867,6,0,MINI,Cooper Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2487,0.0,47.432,0.0,Minicompact Cars,2015,2000,,,,,,,,,BMX +11.360558000000001,0.0,0.0,0.0,26,26.0926,0,0.0,0.0,0.0,0.0,302,0,0.0,302.0,29,29.4219,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,79,SIDI,7,2100,0,Premium,Premium Gasoline,7,-1,35,34.858,0,0.0,0.0,0.0,0.0,0,0,34868,6,0,MINI,John Cooper Works Convertible,N,false,72,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,33.665,0.0,49.3047,0.0,Minicompact Cars,2015,1500,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.9942,0,0.0,0.0,0.0,0.0,374,0,0.0,374.0,24,23.7022,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,641,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,31,30.6494,0,0.0,0.0,0.0,0.0,0,0,34869,11,0,BMW,640i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2483,0.0,43.0898,0.0,Subcompact Cars,2015,-500,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3487,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,19.782,0,0.0,0.0,0.0,0.0,382,0,0.0,382.0,23,23.1236,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,643,SIDI,5,2600,0,Premium,Premium Gasoline,5,-1,29,29.1395,0,0.0,0.0,0.0,0.0,0,0,34870,13,0,BMW,640i xDrive Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.962,0.0,40.8783,0.0,Subcompact Cars,2015,-1000,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.782,0,0.0,0.0,0.0,0.0,382,0,0.0,382.0,23,23.1236,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,645,SIDI,5,2600,0,Premium,Premium Gasoline,5,-1,29,29.1395,0,0.0,0.0,0.0,0.0,0,0,34871,11,0,BMW,640i xDrive Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),24.962,0.0,40.8783,0.0,Subcompact Cars,2015,-1000,,,T,,,,,,BMX +13.1844,0.0,0.0,0.0,21,21.0376,0,0.0,0.0,0.0,0.0,358,0,0.0,358.0,25,24.8728,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,455,SIDI,6,2400,0,Premium,Premium Gasoline,6,-1,32,32.0038,0,0.0,0.0,0.0,0.0,0,0,34872,0,12,BMW,435i Gran Coupe,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S8),26.6629,0.0,45.0816,0.0,Compact Cars,2015,0,,,T,,,,,,BMX +13.73375,0.0,0.0,0.0,20,19.9942,0,0.0,0.0,0.0,0.0,374,0,0.0,374.0,24,23.7022,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,642,SIDI,6,2500,0,Premium,Premium Gasoline,6,-1,31,30.6494,0,0.0,0.0,0.0,0.0,0,0,34873,0,12,BMW,640i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),25.2483,0.0,43.0898,0.0,Compact Cars,2015,-500,,,T,,,,,,BMX +14.327048,0.0,0.0,0.0,20,19.782,0,0.0,0.0,0.0,0.0,382,0,0.0,382.0,23,23.1236,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,644,SIDI,5,2600,0,Premium,Premium Gasoline,5,-1,29,29.1395,0,0.0,0.0,0.0,0.0,0,0,34874,0,12,BMW,640i xDrive Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),24.962,0.0,40.8783,0.0,Compact Cars,2015,-1000,,,T,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.2112,0,0.0,0.0,0.0,0.0,298,0,0.0,298.0,30,29.7557,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,39,,7,2000,0,Premium,Premium Gasoline,7,-1,34,33.5952,0,0.0,0.0,0.0,0.0,16,87,34875,0,0,MINI,Cooper Countryman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2487,0.0,47.432,0.0,Compact Cars,2015,2000,,,,,,,,,BMX +10.987,0.0,0.0,0.0,27,27.2112,0,0.0,0.0,0.0,0.0,298,0,0.0,298.0,30,29.7557,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,43,,7,2000,0,Premium,Premium Gasoline,7,-1,34,33.5952,0,0.0,0.0,0.0,0.0,14,87,34876,0,0,MINI,Cooper Paceman,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,35.2487,0.0,47.432,0.0,Compact Cars,2015,2000,,,,,,,,,BMX +14.675904000000001,0.0,0.0,0.0,23,23.0876,0,0.0,0.0,0.0,0.0,387,0,0.0,387.0,26,26.1261,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,747,,6,2300,0,Diesel,Diesel,5,-1,31,31.1342,0,0.0,0.0,0.0,0.0,0,0,34877,0,14,BMW,740Ld xDrive,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic (S8),29.4725,0.0,46.7981,0.0,Large Cars,2015,500,,,T,,Diesel,,,,BMX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,0,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,273,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34878,0,0,Mercedes-Benz,SLS AMG GT Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2015,-8000,G,,,,,,,,MBX +21.974,0.0,0.0,0.0,13,12.9802,0,0.0,0.0,0.0,0.0,592,0,0.0,592.0,15,15.063,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,274,SIDI,3,4000,0,Premium,Premium Gasoline,3,-1,19,18.7377,0,0.0,0.0,0.0,0.0,0,0,34879,0,0,Mercedes-Benz,SLS AMG GT Roadster,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM7),16.0,0.0,25.9,0.0,Two Seaters,2015,-8000,G,,,,,,,,MBX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3488,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,16.3717,0,0.0,0.0,0.0,0.0,461,0,0.0,461.0,19,19.267,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,652,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,25,24.5799,0,0.0,0.0,0.0,0.0,0,0,34880,13,0,BMW,650i xDrive Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.4161,0.0,34.2579,0.0,Subcompact Cars,2015,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.7286,0,0.0,0.0,0.0,0.0,477,0,0.0,477.0,19,18.628,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,656,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0457,0,0.0,0.0,0.0,0.0,0,0,34881,11,0,BMW,650i xDrive Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5708,0.0,33.4879,0.0,Subcompact Cars,2015,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.7286,0,0.0,0.0,0.0,0.0,477,0,0.0,477.0,19,18.628,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,658,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0457,0,0.0,0.0,0.0,0.0,0,0,34882,0,12,BMW,650i xDrive Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5708,0.0,33.4879,0.0,Compact Cars,2015,-3750,,,T,,,,,,BMX +17.337486000000002,0.0,0.0,0.0,16,15.7286,0,0.0,0.0,0.0,0.0,477,0,0.0,477.0,19,18.628,0,0.0,0.0,0.0,0.0,8,4.4,All-Wheel Drive,659,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,24,24.0457,0,0.0,0.0,0.0,0.0,0,0,34883,0,12,BMW,Alpina B6 Gran Coupe xDrive,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),19.5708,0.0,33.4879,0.0,Compact Cars,2015,-3750,,,T,,,,,,BMX +9.404872000000001,0.0,0.0,0.0,31,31.4872,0,0.0,0.0,0.0,0.0,255,0,0.0,255.0,35,34.811,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,101,,8,1550,0,Regular,Regular Gasoline,8,-1,40,39.9674,0,0.0,0.0,0.0,0.0,18,94,34884,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),41.4211,0.0,56.9522,0.0,Compact Cars,2015,4250,,,,,,,,,NSX +10.987,0.0,0.0,0.0,27,27.0,0,0.0,0.0,0.0,0.0,296,0,0.0,296.0,30,30.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,102,,7,1850,0,Regular,Regular Gasoline,7,-1,36,36.0,0,0.0,0.0,0.0,0.0,18,94,34885,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.2267,0.0,52.0,0.0,Compact Cars,2015,2750,,,,,,,,,NSX +10.987,0.0,0.0,0.0,26,26.1174,0,0.0,0.0,0.0,0.0,297,0,0.0,297.0,30,29.88,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,103,,7,1850,0,Regular,Regular Gasoline,7,-1,35,35.0,0,0.0,0.0,0.0,0.0,18,94,34886,0,15,Nissan,Versa,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.7,0.0,51.4,0.0,Compact Cars,2015,2750,,,,,,,,,NSX +12.739500000000001,0.0,0.0,0.0,27,27.2345,0,0.0,0.0,0.0,0.0,340,0,0.0,340.0,30,29.9287,0,0.0,0.0,0.0,0.0,4,2.0,All-Wheel Drive,374,,7,2000,0,Diesel,Diesel,6,-1,34,34.0449,0,0.0,0.0,0.0,0.0,0,0,34887,0,0,BMW,X3 xDrive28d,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S8),35.2819,0.0,48.0981,0.0,Small Sport Utility Vehicle 4WD,2015,2000,,,T,,Diesel,,,,BMX +13.1844,0.0,0.0,0.0,22,22.3814,0,0.0,0.0,0.0,0.0,356,-1,0.0,356.0,25,24.5032,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9,,6,2400,0,Premium,Premium Gasoline,6,-1,28,27.7145,0,0.0,0.0,0.0,0.0,0,0,34888,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.5,0.0,38.8,0.0,Two Seaters,2015,0,,,,,,,,,TKX +13.73375,0.0,0.0,0.0,21,21.2117,0,0.0,0.0,0.0,0.0,368,-1,0.0,368.0,24,23.7609,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,10,,6,2500,0,Premium,Premium Gasoline,6,-1,28,27.8519,0,0.0,0.0,0.0,0.0,0,0,34889,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,26.9,0.0,39.0,0.0,Two Seaters,2015,-500,,,,,,,,,TKX +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3489,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,20.6108,0,0.0,0.0,0.0,0.0,375,-1,0.0,375.0,23,23.2695,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,11,,5,2600,0,Premium,Premium Gasoline,5,-1,28,27.6251,0,0.0,0.0,0.0,0.0,0,0,34890,0,0,Mazda,MX-5,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S6),26.083,0.0,38.6699,0.0,Two Seaters,2015,-1000,,,,,,,,,TKX +9.690534,0.0,0.0,0.0,30,30.4456,0,0.0,0.0,0.0,0.0,264,-1,0.0,264.0,34,33.6679,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,56,,8,1600,0,Regular,Regular Gasoline,8,-1,39,38.6703,0,0.0,0.0,0.0,0.0,0,0,34891,0,11,Chevrolet,Spark,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),39.9,0.0,55.0,0.0,Subcompact Cars,2015,4000,,,,,,,,,GMX +9.690534,0.0,0.0,0.0,31,31.1996,0,0.0,0.0,0.0,0.0,258,-1,0.0,258.0,34,34.3786,0,0.0,0.0,0.0,0.0,4,1.2,Front-Wheel Drive,57,,8,1600,0,Regular,Regular Gasoline,8,-1,39,39.2689,0,0.0,0.0,0.0,0.0,0,0,34892,0,11,Chevrolet,Spark,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.9,0.0,Subcompact Cars,2015,4000,,,,,,,,,GMX +12.19557,0.0,0.0,0.0,23,22.7397,0,0.0,0.0,0.0,0.0,334,-1,0.0,334.0,27,26.6018,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,408,SIDI,7,2250,0,Premium,Premium Gasoline,7,-1,34,33.5706,0,0.0,0.0,0.0,0.0,0,0,34893,0,12,BMW,428i Gran Coupe,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S8),28.9928,0.0,47.3955,0.0,Compact Cars,2015,750,,,T,,,,,,BMX +25.336022,0.0,0.0,0.0,11,10.5402,0,0.0,0.0,0.0,0.0,688,-1,0.0,688.0,13,12.8889,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,61,,1,4650,0,Premium,Premium Gasoline,1,-1,18,17.7129,0,0.0,0.0,0.0,0.0,0,0,34894,0,11,Bentley,Mulsanne,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic (S8),12.9,0.0,21.8,0.0,Midsize Cars,2015,-11250,G,,T,,,,,,VGA +18.304342000000002,0.0,0.0,0.0,15,14.9098,0,0.0,0.0,0.0,0.0,502,-1,0.0,502.0,18,17.7166,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,5,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.0111,0,0.0,0.0,0.0,0.0,0,0,34895,0,16,Hyundai,Equus,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 8-spd,18.5,0.0,32.0,0.0,Large Cars,2015,-4750,,,,,,,,,HYX +14.964294,0.0,0.0,0.0,19,18.5539,0,0.0,0.0,0.0,0.0,404,-1,0.0,404.0,22,21.893,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,7,SIDI,5,2500,0,Regular,Regular Gasoline,5,-1,28,28.0665,0,0.0,0.0,0.0,0.0,0,0,34896,0,15,Kia,Cadenza,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 6-spd,23.4,0.0,37.5,0.0,Large Cars,2015,-500,,,,,,,,,KMX +16.4805,0.0,0.0,0.0,17,16.8455,0,0.0,0.0,0.0,0.0,444,-1,0.0,444.0,20,20.0453,0,0.0,0.0,0.0,0.0,8,4.7,Rear-Wheel Drive,202,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,26,26.1061,0,0.0,0.0,0.0,0.0,0,0,34897,0,12,Mercedes-Benz,S550,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,21.8,0.0,35.5,0.0,Large Cars,2015,-3000,,,T,,,,,,MBX +18.304342000000002,0.0,0.0,0.0,15,15.0138,0,0.0,0.0,0.0,0.0,499,-1,0.0,499.0,18,17.8613,0,0.0,0.0,0.0,0.0,8,5.5,4-Wheel Drive,205,SIDI,4,3350,0,Premium,Premium Gasoline,4,-1,23,23.2509,0,0.0,0.0,0.0,0.0,0,0,34898,0,12,Mercedes-Benz,S63 AMG 4matic,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,18.7,0.0,31.7,0.0,Large Cars,2015,-4750,,,T,,,,,,MBX +17.337486000000002,0.0,0.0,0.0,16,15.9779,0,0.0,0.0,0.0,0.0,462,-1,0.0,462.0,19,19.2777,0,0.0,0.0,0.0,0.0,8,4.7,4-Wheel Drive,207,SIDI,4,3150,0,Premium,Premium Gasoline,4,-1,26,25.7868,0,0.0,0.0,0.0,0.0,0,0,34899,0,12,Mercedes-Benz,S550 4matic,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.5,0.0,34.5,0.0,Large Cars,2015,-3750,,,T,,,,,,MBX +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,83,349,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Compact Cars,1985,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4190,N (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3490,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Small Station Wagons,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,17.4185,0,0.0,0.0,0.0,0.0,450,-1,0.0,450.0,20,19.7576,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel Drive,10,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,24,23.6373,0,0.0,0.0,0.0,0.0,0,0,34900,0,0,Land Rover,LR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S9),21.8,0.0,32.9,0.0,Small Sport Utility Vehicle 4WD,2015,-3000,,,T,,,,,,JLX +0.18000000000000002,0.0,0.0,7.0,126,126.3678,0,0.0,0.0,27.0,0.0,0,-1,0.0,0.0,112,112.2077,0,0.0,30.0,0.0,0.0,,,Rear-Wheel Drive,141,,10,550,0,Electricity,Electricity,10,-1,99,98.6914,0,0.0,0.0,34.0,0.0,13,85,34901,0,0,Mitsubishi,i-MiEV,N,false,0,0,62,68.5545,0.0,54.8184,0.0,Automatic (A1),180.5254,0.0,140.9876,0.0,Subcompact Cars,2014,9250,,,,,EV,,,49 kW DCPM,MTX +16.4805,0.0,0.0,0.0,17,16.6769,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,19.5259,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,650,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.6788,0,0.0,0.0,0.0,0.0,0,0,34902,13,0,BMW,650i Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8186,0.0,34.4007,0.0,Subcompact Cars,2015,-3000,,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6769,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,19.5259,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,654,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.6788,0,0.0,0.0,0.0,0.0,0,0,34903,11,0,BMW,650i Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8186,0.0,34.4007,0.0,Subcompact Cars,2015,-3000,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6229,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1143,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,660,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,34904,13,0,BMW,M6 Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1261,0.0,30.0,0.0,Subcompact Cars,2015,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5879,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9804,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,661,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3625,0,0.0,0.0,0.0,0.0,0,0,34905,13,0,BMW,M6 Coupe,N,false,87,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7838,0.0,28.2106,0.0,Subcompact Cars,2015,-6750,G,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6229,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1143,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,662,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,34906,11,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1261,0.0,30.0,0.0,Subcompact Cars,2015,-5750,G,,T,,,,,,BMX +20.589638,0.0,0.0,0.0,14,13.5879,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9804,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,663,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3625,0,0.0,0.0,0.0,0.0,0,0,34907,11,0,BMW,M6 Convertible,N,false,88,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7838,0.0,28.2106,0.0,Subcompact Cars,2015,-6750,G,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,16.6769,0,0.0,0.0,0.0,0.0,440,-1,0.0,440.0,20,19.5259,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,657,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.6788,0,0.0,0.0,0.0,0.0,0,0,34908,0,12,BMW,650i Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic (S8),20.8186,0.0,34.4007,0.0,Compact Cars,2015,-3000,,,T,,,,,,BMX +19.381068,0.0,0.0,0.0,15,14.6229,0,0.0,0.0,0.0,0.0,517,-1,0.0,517.0,17,17.1143,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,664,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.6157,0,0.0,0.0,0.0,0.0,0,0,34909,0,12,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.1261,0.0,30.0,0.0,Compact Cars,2015,-5750,G,,T,,,,,,BMX +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4191,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3491,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Small Station Wagons,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,13.5879,0,0.0,0.0,0.0,0.0,554,-1,0.0,554.0,16,15.9804,0,0.0,0.0,0.0,0.0,8,4.4,Rear-Wheel Drive,665,SIDI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.3625,0,0.0,0.0,0.0,0.0,0,0,34910,0,12,BMW,M6 Gran Coupe,N,false,0,97,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.7838,0.0,28.2106,0.0,Compact Cars,2015,-6750,G,,T,,,,,,BMX +15.689436,0.0,0.0,0.0,18,18.3,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,21,21.4317,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,95,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,34911,0,14,Volvo,S60 PoleStar AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.0,0.0,Compact Cars,2015,-1000,,,T,,,,,,VVX +13.73375,0.0,0.0,0.0,20,20.0324,0,0.0,0.0,0.0,0.0,369,-1,0.0,369.0,24,23.7336,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,8,SIDI,6,2300,0,Regular,Regular Gasoline,6,-1,31,30.6564,0,0.0,0.0,0.0,0.0,0,0,34912,0,15,Kia,Optima,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),25.3,0.0,43.1,0.0,Midsize Cars,2015,500,,,T,,,,,,KMX +16.4805,0.0,0.0,0.0,17,17.0,0,0.0,0.0,0.0,0.0,445,-1,0.0,445.0,20,20.3238,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,156,,5,3000,0,Premium,Premium Gasoline,5,-1,25,24.9555,0,0.0,0.0,0.0,0.0,0,0,34913,0,19,Infiniti,QX50,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),22.1,0.0,34.8,0.0,Small Station Wagons,2015,-3000,,,,,,,,,NSX +16.4805,0.0,0.0,0.0,17,17.2653,0,0.0,0.0,0.0,0.0,447,-1,0.0,447.0,20,19.8802,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,157,,5,3000,0,Premium,Premium Gasoline,5,-1,24,24.3963,0,0.0,0.0,0.0,0.0,0,0,34914,0,19,Infiniti,QX50 AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S7),21.5969,0.0,33.9932,0.0,Small Station Wagons,2015,-3000,,,,,,,,,NSX +15.689436,0.0,0.0,0.0,18,18.3,0,0.0,0.0,0.0,0.0,408,-1,0.0,408.0,21,21.4317,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,96,,5,2600,0,Regular,Regular Gasoline,5,-1,27,27.1,0,0.0,0.0,0.0,0.0,0,0,34915,0,28,Volvo,V60 PoleStar AWD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic (S6),23.1,0.0,37.0,0.0,Small Station Wagons,2015,-1000,,,T,,,,,,VVX +17.337486000000002,0.0,0.0,0.0,17,16.9656,0,0.0,0.0,0.0,0.0,457,-1,0.0,457.0,19,19.4761,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,581,,4,3150,0,Premium,Premium Gasoline,4,-1,24,23.7762,0,0.0,0.0,0.0,0.0,0,0,34916,0,0,Infiniti,QX70 RWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),21.2,0.0,33.1,0.0,Small Sport Utility Vehicle 2WD,2015,-3750,,,,,,,,,NSX +18.304342000000002,0.0,0.0,0.0,16,16.1487,0,0.0,0.0,0.0,0.0,486,-1,0.0,486.0,18,18.3078,0,0.0,0.0,0.0,0.0,6,3.7,All-Wheel Drive,582,,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.884,0,0.0,0.0,0.0,0.0,0,0,34917,0,0,Infiniti,QX70 AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S7),20.1226,0.0,30.3839,0.0,Small Sport Utility Vehicle 4WD,2015,-4750,,,,,,,,,NSX +0.18000000000000002,0.0,0.0,8.0,126,126.4612,0,0.0,0.0,27.0,0.0,0,-1,0.0,0.0,114,113.7816,0,0.0,30.0,0.0,0.0,,,Front-Wheel Drive,901,,10,550,0,Electricity,Electricity,10,-1,101,101.3602,0,0.0,0.0,33.0,0.0,24,92,34918,0,0,Nissan,Leaf,N,false,0,0,84,92.0,0.0,74.0,0.0,Automatic (A1),180.6589,0.0,144.8003,0.0,Midsize Cars,2015,9250,,,,,EV,,,80 kW DCPM,NSX +18.304342000000002,0.0,0.0,0.0,15,15.0,0,0.0,0.0,0.0,0.0,501,-1,0.0,501.0,18,17.99,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,1,,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.81,0,0.0,0.0,0.0,0.0,0,0,34919,0,0,McLaren Automotive,MP4-12C Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.32,0.0,30.04,0.0,Two Seaters,2014,-4750,,,T,,,,,,MLN +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38041,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3492,0,31,Nissan,Maxima Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Station Wagons,1987,-3250,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,15.0,0,0.0,0.0,0.0,0.0,501,-1,0.0,501.0,18,17.99,0,0.0,0.0,0.0,0.0,8,3.8,Rear-Wheel Drive,2,,4,3350,0,Premium,Premium Gasoline,4,-1,22,21.81,0,0.0,0.0,0.0,0.0,0,0,34920,0,0,McLaren Automotive,MP4-12C Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 7-spd,20.32,0.0,30.04,0.0,Two Seaters,2014,-4750,,,T,,,,,,MLN +20.589638,0.0,0.0,0.0,14,14.0224,0,0.0,0.0,0.0,0.0,544,-1,0.0,544.0,16,16.214,0,0.0,0.0,0.0,0.0,10,5.2,All-Wheel Drive,25, PFI,3,3750,0,Premium,Premium Gasoline,3,-1,20,20.0427,0,0.0,0.0,0.0,0.0,0,0,34921,0,0,Lamborghini,Huracan,N,false,0,0,0,0.0,0.0,0.0,0.0,Auto(AM-S7),16.8,0.0,25.5,0.0,Two Seaters,2015,-6750,G,,,,,,,,VGA +21.974,6.806822,0.0,0.0,12,12.0228,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,45,FFV,3,4000,4150,Premium or E85,Premium Gasoline,3,3,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,34922,7,0,Bentley,Continental GT Convertible,N,false,86,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Subcompact Cars,2015,-8000,G,,T,,FFV,E85,262,,VGA +21.974,6.806822,0.0,0.0,12,12.4737,9,8.8115,0.0,0.0,0.0,580,576,576.0,580.0,15,15.2827,11,10.8449,0.0,0.0,0.0,12,6.0,All-Wheel Drive,43,FFV,3,4000,4150,Premium or E85,Premium Gasoline,3,3,21,21.0866,15,15.1054,0.0,0.0,0.0,0,0,34923,11,0,Bentley,Continental GT,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic (S8),15.4,10.5,28.3,20.8,Compact Cars,2015,-8000,G,,T,,FFV,E85,262,,VGA +16.4805,0.0,0.0,0.0,17,16.5369,0,0.0,0.0,0.0,0.0,442,-1,0.0,442.0,20,19.9551,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,9,SIDI,5,3000,0,Premium,Premium Gasoline,5,-1,27,26.7008,0,0.0,0.0,0.0,0.0,0,0,34924,0,15,Audi,S8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),19.9,0.0,36.4,0.0,Midsize Cars,2015,-3000,,,T,,,,,,VGA +14.964294,0.0,0.0,0.0,18,18.2315,0,0.0,0.0,0.0,0.0,401,-1,0.0,401.0,22,22.0244,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,11,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,30,29.5343,0,0.0,0.0,0.0,0.0,0,0,34925,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),22.5929,0.0,39.4,0.0,Midsize Cars,2015,-1750,,,T,,,,,,VGA +14.964294,0.0,0.0,0.0,19,18.6853,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.3303,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,40,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,29.3211,0,0.0,0.0,0.0,0.0,0,0,34926,0,15,Audi,A8,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5657,0.0,39.6,0.0,Midsize Cars,2015,-1750,,,,S,,,,,VGA +21.974,6.806822,0.0,0.0,12,12.0228,9,8.6127,0.0,0.0,0.0,604,589,589.0,604.0,15,14.6643,11,10.5874,0.0,0.0,0.0,12,6.0,All-Wheel Drive,44,FFV,3,4000,4150,Premium or E85,Premium Gasoline,3,3,20,20.0478,15,14.7094,0.0,0.0,0.0,0,0,34927,13,0,Bentley,Flying Spur,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic (S8),14.4,10.5,26.7,20.5,Midsize Cars,2015,-8000,G,,T,,FFV,E85,262,,VGA +14.964294,0.0,0.0,0.0,18,17.9485,0,0.0,0.0,0.0,0.0,410,-1,0.0,410.0,22,21.5369,0,0.0,0.0,0.0,0.0,8,4.0,All-Wheel Drive,10,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,28.5015,0,0.0,0.0,0.0,0.0,0,0,34928,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),22.278,0.0,39.1,0.0,Large Cars,2015,-1750,,,T,,,,,,VGA +19.381068,0.0,0.0,0.0,14,13.8358,0,0.0,0.0,0.0,0.0,534,-1,0.0,534.0,17,16.602,0,0.0,0.0,0.0,0.0,12,6.3,All-Wheel Drive,14,SIDI,4,3550,0,Premium,Premium Gasoline,4,-1,22,21.9706,0,0.0,0.0,0.0,0.0,0,0,34929,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),17.2,0.0,28.6,0.0,Large Cars,2015,-5750,G,,,,,,,,VGA +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3493,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +13.631265,0.0,0.0,0.0,24,23.8727,0,0.0,0.0,0.0,0.0,360,-1,0.0,360.0,28,28.2271,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,15,,7,2100,0,Diesel,Diesel,6,-1,36,36.3252,0,0.0,0.0,0.0,0.0,0,0,34930,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),29.9399,0.0,51.4,0.0,Large Cars,2015,1500,,,T,,Diesel,,,,VGA +14.964294,0.0,0.0,0.0,19,18.6853,0,0.0,0.0,0.0,0.0,397,-1,0.0,397.0,22,22.3303,0,0.0,0.0,0.0,0.0,6,3.0,All-Wheel Drive,41,SIDI,5,2750,0,Premium,Premium Gasoline,5,-1,29,29.3211,0,0.0,0.0,0.0,0.0,0,0,34931,0,15,Audi,A8 L,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic (S8),23.5657,0.0,39.6,0.0,Large Cars,2015,-1750,,,,S,,,,,VGA +14.327048,4.679378,0.0,0.0,19,19.314,13,13.4846,0.0,0.0,0.0,393,393,393.0,393.0,23,22.6253,16,16.0071,0.0,0.0,0.0,6,3.5,Front-Wheel Drive,151,FFV,5,2400,2850,Gasoline or E85,Regular Gasoline,5,5,29,28.6232,21,20.7519,0.0,0.0,0.0,0,0,34932,0,20,Ford,Taurus FWD FFV,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic (S6),24.3317,16.9878,40.1243,29.0903,Large Cars,2015,0,,,,,FFV,E85,304,,FMX +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,3494,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.8718,0.0,Small Station Wagons,1987,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,38005,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3495,0,24,Nissan,Sentra Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Small Station Wagons,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS) 2 barrel carb,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3496,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS) 2 barrel carb,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3497,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3498,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS) fuel injection,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3499,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1987,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9021,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,7,74,35,0,0,Alfa Romeo,GT V6 2.5,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Minicompact Cars,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,83,350,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3500,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,40.0,0.0,Small Station Wagons,1987,1000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,3501,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,54.0,0.0,Small Station Wagons,1987,3000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,3502,0,29,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Small Station Wagons,1987,2250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3503,0,23,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Small Station Wagons,1987,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26021,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,3504,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.8718,0.0,Small Station Wagons,1987,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,26021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3505,0,23,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3105,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3506,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,40.0,0.0,Small Station Wagons,1987,1000,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3104,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,3507,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,54.0,0.0,Small Station Wagons,1987,3000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3106,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,3508,0,29,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Small Station Wagons,1987,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3509,0,29,Mazda,323 Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,83,351,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3510,0,29,Mazda,323 Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.3077,0.0,Small Station Wagons,1987,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS) 2 barrel carb,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3511,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3512,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3513,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3514,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3515,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1987,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3516,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1987,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS) 2 barrel carb,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3517,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS) 2 barrel carb,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3518,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Station Wagons,1987,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3519,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1987,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,83,352,0,14,Oldsmobile,Firenza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS) fuel injection,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3520,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1987,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3521,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,42.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4203,(122) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3522,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1987,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4202,(122) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3523,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Small Station Wagons,1987,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66033,"(A-ENGINE) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3524,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Small Station Wagons,1987,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3525,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1987,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3526,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Station Wagons,1987,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3527,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1987,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66033,"(A-ENGINE) (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3528,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Station Wagons,1987,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66036,"(A-ENGINE) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3529,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0513,0.0,Small Station Wagons,1987,-1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41020,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,353,0,11,Peugeot,505,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3530,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,39.7436,0.0,Small Station Wagons,1987,500,,2MODE 2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,3531,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Small Station Wagons,1987,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3532,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,39.7436,0.0,Small Station Wagons,1987,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,3533,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Small Station Wagons,1987,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3534,0,27,Toyota,Tercel Wagon 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Small Station Wagons,1987,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3535,0,27,Toyota,Tercel Wagon 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Small Station Wagons,1987,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59016,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3536,33,0,Volkswagen,Fox GL Wagon,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Small Station Wagons,1987,1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,59011,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3537,0,38,Volkswagen,Quantum Syncro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Station Wagons,1987,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3538,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Small Station Wagons,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3539,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Station Wagons,1987,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41020,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,354,0,11,Peugeot,505,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64001,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3540,0,39,Audi,5000 CS quattro Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1987,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3541,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1987,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64003,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3542,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1987,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3543,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3544,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3545,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3546,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3547,0,42,Buick,Century Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3548,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3549,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,41.0,0.0,Midsize-Large Station Wagons,1987,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41010,(TURBO),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,355,0,11,Peugeot,505,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Compact Cars,1985,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3550,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3551,0,42,Chevrolet,Celebrity Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3552,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1987,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3553,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3554,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38032,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3555,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38032,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3556,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Midsize-Large Station Wagons,1987,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3557,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3558,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Midsize-Large Station Wagons,1987,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3559,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +17.351199,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41030,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,356,0,11,Peugeot,505,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,32.0,0.0,Compact Cars,1985,-1500,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3260,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3560,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.1795,0.0,Midsize-Large Station Wagons,1987,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3561,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3562,0,46,Ford,Taurus Wagon 3.0 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3563,0,46,Mercury,Sable Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3564,0,46,Mercury,Sable Wagon 3.0 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20050,"(DSL,TRBO) (NO-CAT)",-1,2700,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3565,0,42,Mercedes-Benz,300TD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-1500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,41,89,3566,0,0,Mcevoy Motors,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,3567,0,0,Mcevoy Motors,740 GLE Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3568,0,50,Oldsmobile,Custom Cruiser,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3569,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41030,"(DSL,TRBO)",-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,357,0,11,Peugeot,505,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Compact Cars,1985,500,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3570,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3571,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3572,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3573,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41020,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3574,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1987,-4750,,,T,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,41050,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3575,0,54,Peugeot,505 Station Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,T,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3576,0,35,Plymouth,Reliant Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2324,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3577,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Midsize-Large Station Wagons,1987,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3578,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4151,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3579,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1987,-1000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2011,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,358,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,51.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3580,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3581,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3582,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1987,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3583,0,39,Toyota,Cressida Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-4750,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,42,91,3584,0,0,Volvo,240 DL/240 GL Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,42,91,3585,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Midsize-Large Station Wagons,1987,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,3586,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1987,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,3587,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Midsize-Large Station Wagons,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,3588,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1987,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,3589,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,37.0,0.0,Midsize-Large Station Wagons,1987,-500,,SIL,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,85,359,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,51.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3590,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3591,0,50,Chevrolet,Caprice Wagon,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3592,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3593,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3594,0,50,Pontiac,Safari Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1987,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3595,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3596,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3597,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,34.0,0.0,Small Pickup Trucks,1987,-1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3598,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Small Pickup Trucks,1987,-500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3599,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Small Pickup Trucks,1987,-5250,,,,,,,,, +9.141184,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54011,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,36,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,45.0,0.0,55.0,0.0,Minicompact Cars,1985,4250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,85,360,0,0,Plymouth,Horizon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,42.3077,0.0,Compact Cars,1985,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3600,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Small Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3601,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1987,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3602,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3603,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3604,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3605,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Small Pickup Trucks,1987,-4250,,2MODE 3LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3606,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Small Pickup Trucks,1987,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3607,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1987,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3608,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3609,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,85,361,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1985,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3610,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3611,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3731,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3612,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3710,"(DSL,TRBO) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,3613,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,39.0,0.0,Small Pickup Trucks,1987,500,,,T,,Diesel,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3732,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3614,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,36.0,0.0,Small Pickup Trucks,1987,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3761,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3615,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3762,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3616,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3617,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3618,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3619,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,34.0,0.0,Small Pickup Trucks,1987,-1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,85,362,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,47.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3620,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Small Pickup Trucks,1987,-500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3621,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Small Pickup Trucks,1987,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3622,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Small Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3623,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1987,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3624,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-3250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29080,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3625,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Small Pickup Trucks,1987,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,29081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3626,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +11.924172,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29084,(NO-CAT),-1,1850,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,3627,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.8889,0.0,50.0,0.0,Small Pickup Trucks,1987,2750,,,,,Diesel,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29085,"(DSL,TRBO) (NO-CAT)",-1,2100,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,3628,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,42.3077,0.0,Small Pickup Trucks,1987,1500,,,T,,Diesel,,,, +13.172643,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,351.0344827586207,29,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29084,(NO-CAT),-1,2050,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,3629,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,45.0,0.0,Small Pickup Trucks,1987,1750,,,,,Diesel,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,85,363,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,47.0,0.0,Compact Cars,1985,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29082,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3630,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3631,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Small Pickup Trucks,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29082,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3632,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29083,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3633,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3634,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1987,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3635,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3636,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3637,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3638,0,0,Mazda,B2000/B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,56080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3639,0,0,Mazda,B2000/B2200/B2600,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,364,13,0,Pontiac,Grand Am,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,41.0,0.0,Compact Cars,1985,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,(FFS) 2 barrel carb,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3640,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57084,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3641,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.7692,0.0,Small Pickup Trucks,1987,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3642,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.1795,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57084,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,3643,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,40.0,0.0,Small Pickup Trucks,1987,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,(FFS) 2 barrel carb,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3644,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0513,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57084,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3645,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3646,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Small Pickup Trucks,1987,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57088,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3647,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1987,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) fuel injection,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3648,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.8974,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3720,"(DSL,TRBO) (NO-CAT)",-1,2450,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3649,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,36.0,0.0,Small Pickup Trucks,1987,-250,,,T,,Diesel,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4232,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,365,13,0,Pontiac,Grand Am,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3740,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3650,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Small Pickup Trucks,1987,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3770,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3651,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Small Pickup Trucks,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3771,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3652,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Small Pickup Trucks,1987,-3250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29095,"(DSL,TRBO) (NO-CAT)",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3653,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,33.3333,0.0,Small Pickup Trucks,1987,-1000,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29092,,-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3654,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29093,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3655,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.7692,0.0,Small Pickup Trucks,1987,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3656,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,(OHV),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3657,0,0,Subaru,Brat 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.8974,0.0,Small Pickup Trucks,1987,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4860,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3658,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4861,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3659,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4407,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,366,13,0,Pontiac,Grand Am,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4862,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3660,0,0,Chevrolet,El Camino Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4862,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3661,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3662,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3663,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3664,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3665,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3666,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3667,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3668,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3669,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,84,367,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1985,-3000,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3670,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3671,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3672,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-4500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3673,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-3500,,Creeper,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3674,0,0,Chevrolet,R10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3675,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3676,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3677,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3678,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3679,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,84,368,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3680,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3681,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3682,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3683,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-5500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3684,0,0,Chevrolet,R20 (C20) Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,2822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,3685,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Standard Pickup Trucks,1987,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3686,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3687,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2851,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3688,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3689,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4210,(FFS/TRBO),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,84,369,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Compact Cars,1985,-2250,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2851,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3690,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3691,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3692,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3693,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3694,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,Lock-up,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3695,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3696,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3697,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3698,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3699,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +7.844718,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54010,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,8,74,37,0,0,Chevrolet,Sprint,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,52.2222,0.0,68.0,0.0,Minicompact Cars,1985,5500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,84,370,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3700,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3701,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3702,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3703,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3704,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3705,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3706,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3707,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3708,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3709,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4201,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,15,84,371,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,51.0,0.0,Compact Cars,1985,2250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3819,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3710,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3711,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3712,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3713,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3911,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3714,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.2308,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3904,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3715,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3906,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3716,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3909,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3717,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3942,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3718,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3814,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3719,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,84,372,13,13,Pontiac,Sunbird,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3720,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3721,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3904,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3722,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3910,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3723,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3942,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3724,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4860,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3725,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4861,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3726,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4862,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3727,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4862,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3728,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3729,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,88,373,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,36.0,0.0,Compact Cars,1985,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3730,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3731,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3732,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3733,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3734,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3735,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3736,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3737,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3738,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3739,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-4500,,,,,Diesel,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,16,88,374,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,51.2821,0.0,Compact Cars,1985,3500,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3740,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3741,0,0,GMC,R15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-3500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3742,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3743,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3744,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3745,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3746,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3747,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3748,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3749,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,88,375,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,45.0,0.0,Compact Cars,1985,2500,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3750,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-5500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3751,0,0,GMC,R25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,1991,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,3752,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,38.0,0.0,Standard Pickup Trucks,1987,250,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3753,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-2500,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3754,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1987,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3755,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Standard Pickup Trucks,1987,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1940,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3756,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-5250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1940,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3757,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1987,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3758,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Standard Pickup Trucks,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3759,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.8974,0.0,Standard Pickup Trucks,1987,0,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,1003,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,88,376,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,49.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3760,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3761,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1987,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3762,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Standard Pickup Trucks,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3763,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3764,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3765,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3766,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3767,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3768,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3769,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1100,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,88,377,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,33.3333,0.0,Compact Cars,1985,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3770,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3771,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3772,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3773,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3774,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3775,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-6500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3776,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3777,0,0,Chevrolet,V10 (K10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3778,0,0,Chevrolet,V20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3779,0,0,Chevrolet,V20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,1100,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,88,378,13,13,Renault,Alliance/Encore,N,false,88,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1985,2250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3780,0,0,Chevrolet,V20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-6500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3781,0,0,Chevrolet,V20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3782,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3783,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3784,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2951,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3785,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2951,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3786,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3787,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3788,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,2954,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3789,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1987,-7750,,Creeper,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44020,(GUZZLER) (FFS),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,379,14,0,Rolls-Royce,Camargue,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Compact Cars,1985,-22500,T,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2971,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3790,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3791,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3792,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2971,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3793,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,3794,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Standard Pickup Trucks,1987,-15500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3795,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3796,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3797,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,3798,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Standard Pickup Trucks,1987,-18500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3799,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,2.9,Rear-Wheel Drive,22010,(GUZZLER),-1,5000,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,38,3,0,Ferrari,Mondial,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,20.0,0.0,Minicompact Cars,1985,-13000,T,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,22,87,380,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.9231,0.0,Compact Cars,1985,-4250,,,T,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3830,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3800,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3801,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3835,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3802,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,20.5128,0.0,Standard Pickup Trucks,1987,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3930,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3803,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Standard Pickup Trucks,1987,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3929,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3804,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3928,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3805,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3927,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3806,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3807,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3808,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3835,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3809,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1987,-7750,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,87,381,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Compact Cars,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3929,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3810,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3925,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3811,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,20.5128,0.0,Standard Pickup Trucks,1987,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3812,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3813,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3814,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3815,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1987,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3816,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Standard Pickup Trucks,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3817,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3818,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3819,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-4250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,22,87,382,0,14,Saab,900,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Compact Cars,1985,-2500,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3820,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3821,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3822,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0769,0.0,Standard Pickup Trucks,1987,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3823,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3824,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3825,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3826,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3827,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3828,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3829,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-6500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,87,383,0,14,Saab,900,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1985,-1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3830,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-5500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3831,0,0,GMC,V15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3832,0,0,GMC,V25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3833,0,0,GMC,V25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1987,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3834,0,0,GMC,V25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-6500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3835,0,0,GMC,V25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1987,-5500,,Creeper,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3836,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-3250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3837,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,32.0,0.0,Standard Pickup Trucks,1987,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3838,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1987,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3839,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Standard Pickup Trucks,1987,-5250,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,384,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Compact Cars,1985,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3840,0,0,Jeep,Comanche 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Standard Pickup Trucks,1987,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3841,0,0,Jeep,J-10 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1987,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3842,0,0,Jeep,J-10 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1987,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1992,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3843,0,0,Jeep,J-10 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1992,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3844,0,0,Jeep,J-20 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1987,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3845,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3846,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57084,,-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3847,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.2051,0.0,Standard Pickup Trucks,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57085,(FFS) 2 barrel carb,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3848,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3849,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,28.0,0.0,Standard Pickup Trucks,1987,-2500,,2MODE 2LKUP,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,385,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,47.0,0.0,Compact Cars,1985,2750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57088,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3850,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1987,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS) fuel injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3851,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1987,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3852,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Vans,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4804,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3853,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Vans,1987,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3854,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Vans,1987,-1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3855,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3856,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1987,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3857,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3858,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3859,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Vans,1987,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,386,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3860,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3861,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3862,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3863,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.359,0.0,Vans,1987,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3864,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1987,-7750,,,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3865,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1987,-4500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3866,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Vans,1987,-3500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3867,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1987,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3868,0,0,Nissan,Van(cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Vans,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3869,0,0,Nissan,Van(cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1987,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,387,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.0,0.0,Compact Cars,1985,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2851,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3870,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Vans,1987,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3871,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3872,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Vans,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2851,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3873,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Vans,1987,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3874,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3875,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1987,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,Lock-up,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3876,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.7949,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3877,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.7949,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3878,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0,0.0,Vans,1987,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3879,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,388,0,15,Subaru,Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,41.0,0.0,Compact Cars,1985,1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3880,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3881,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1987,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3882,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Vans,1987,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3731,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3883,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1987,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3730,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3884,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,36.0,0.0,Vans,1987,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3802,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3885,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Vans,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3802,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3886,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Vans,1987,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3819,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3887,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Vans,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3812,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3888,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3889,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,25.0,0.0,Vans,1987,-5250,,,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57021,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,20,89,389,0,14,Toyota,Camry,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,42.3077,0.0,Compact Cars,1985,1000,,,T,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3904,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3890,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Vans,1987,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3891,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3892,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3819,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3893,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3901,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3894,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3895,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3896,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3897,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3898,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3899,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,26.0,0.0,Vans,1987,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36004,(GUZZLER) (TURBO),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,39,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Minicompact Cars,1985,-11000,T,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57040,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,89,390,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Compact Cars,1985,1500,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3900,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3901,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3902,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,3903,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.359,0.0,Vans,1987,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3904,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1987,-7750,,,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3905,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1987,-4500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3906,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.7692,0.0,Vans,1987,-3500,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3907,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1987,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3908,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Vans,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4804,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3909,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Vans,1987,-1750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57040,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,89,391,0,14,Toyota,Camry,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.0,0.0,Compact Cars,1985,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3910,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Vans,1987,-1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3911,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3912,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1987,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3913,0,0,Mitsubishi,Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Vans,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3914,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,29.0,0.0,Vans,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3915,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1987,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3916,0,0,Toyota,Cargo Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,26.9231,0.0,Vans,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3917,0,0,Toyota,Cargo Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,28.2051,0.0,Vans,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3918,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3919,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1987,-4250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,392,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0,0.0,Compact Cars,1985,1500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3920,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3921,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,Vans,1987,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3922,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3923,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Vans,1987,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3924,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Vans,1987,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3925,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1987,-5500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3926,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3927,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Vans,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3928,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1987,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2851,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3929,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1987,-9250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,20,85,393,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,43.0,0.0,Compact Cars,1985,1750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3930,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2854,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3931,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.0,0.0,Vans,1987,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3932,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1987,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3933,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1987,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,Lock-up,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3934,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,21.0,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3935,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,21.7949,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3936,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0,0.0,Vans,1987,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,3937,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Vans,1987,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3938,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1987,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,3939,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1987,-13000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,394,0,13,Toyota,Corolla,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,47.0,0.0,Compact Cars,1985,2500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,3940,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Vans,1987,-15500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3732,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3941,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Vans,1987,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3800,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3942,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3801,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3943,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Vans,1987,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3817,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3944,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Vans,1987,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3815,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3945,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3946,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3816,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3947,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3900,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3948,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3949,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +12.306357,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57011,,-1,1900,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,395,0,13,Toyota,Corolla,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,37.7778,0.0,46.0,0.0,Compact Cars,1985,2500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3943,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3950,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1987,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3951,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Vans,1987,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3952,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,22.0,0.0,Vans,1987,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3953,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3954,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Vans,1987,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3955,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Vans,1987,-4500,,,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3956,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1987,-5500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3957,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1987,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3958,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3959,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1987,-4250,,SIL,,,,,,, +10.599264000000002,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57011,,-1,1650,0,Diesel,Diesel,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,20,85,396,0,13,Toyota,Corolla,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,60.0,0.0,Compact Cars,1985,3750,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3960,0,0,Mitsubishi,Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Vans,1987,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3961,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,29.0,0.0,Vans,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3962,0,0,Toyota,Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1987,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,3963,0,0,Toyota,Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,26.9231,0.0,Vans,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3964,0,0,Toyota,Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,28.2051,0.0,Vans,1987,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3965,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,19.2308,0.0,Vans,1987,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,3966,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59014,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3967,0,0,Volkswagen,Vanagon/Camper 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Vans,1987,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3968,0,0,Chevrolet,R10 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3969,0,0,Chevrolet,R10 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,397,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,31.0,0.0,Compact Cars,1985,-3750,,2MODE 2LKUP,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3970,0,0,Chevrolet,R10 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-4500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3971,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3972,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4804,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3973,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1987,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3974,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3975,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3976,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3977,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3978,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3979,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1987,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,398,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.7692,0.0,Compact Cars,1985,-3750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2871,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,3980,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1987,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2874,Lock-up,-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3981,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,3982,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1987,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2822,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3983,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3984,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3985,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,3986,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Special Purpose Vehicle 2WD,1987,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2899,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3987,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2899,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3988,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1987,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2834,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,3989,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59007,,-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,18,87,399,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.1111,0.0,59.0,0.0,Compact Cars,1985,3500,,SIL,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2841,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3990,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3761,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3991,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3763,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3992,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,3993,0,0,GMC,R15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1987,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,3994,0,0,GMC,R15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3995,0,0,GMC,R15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-4500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,3996,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4803,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,3997,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4804,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,3998,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1987,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,3999,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4185,(350 V8) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.0,0.0,Two Seaters,1985,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,36003,(GUZZLER) (TURBO),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,40,7,0,Maserati,Biturbo,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Minicompact Cars,1985,-7750,T,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,87,400,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.0,0.0,Compact Cars,1985,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4000,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4001,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4002,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4003,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4004,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4005,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1998,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4006,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1940,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4007,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1987,-5250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1940,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4008,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4009,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59005,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,87,401,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4010,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2824,,-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4011,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Special Purpose Vehicle 2WD,1987,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2899,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4012,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2899,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4013,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1987,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2834,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4014,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1987,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2841,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4015,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1987,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4016,0,0,American Motors Corporation,Eagle 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4017,0,0,American Motors Corporation,Eagle 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4018,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4019,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1987,-1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,87,402,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4020,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Special Purpose Vehicles,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4021,0,0,Chevrolet,T10 (S10) Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4022,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-5250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4023,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1987,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4024,0,0,Chevrolet,V10 (K10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4025,0,0,Chevrolet,V10 (K10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4026,0,0,Chevrolet,V10 (K10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4027,0,0,Chevrolet,V10 (K10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1987,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4028,0,0,Chevrolet,V10 (K10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-6500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4029,0,0,Chevrolet,V10 (K10) Suburban 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59011,"(DSL,TRBO)",-1,1750,0,Diesel,Diesel,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,403,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Compact Cars,1985,3250,,SIL,T,,Diesel,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (POLICE) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4030,0,0,Chevrolet,V10 (K10) Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.9487,0.0,Special Purpose Vehicles,1987,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4953,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4031,0,0,Chevrolet,V10 (K10) Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-6500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4032,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4033,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Special Purpose Vehicles,1987,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4034,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1987,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,38033,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4035,0,0,Nissan,Stanza Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1987,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2971,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4036,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4037,0,0,Dodge,AW100/AW150 Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2974,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4038,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1987,-13000,,Creeper,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4039,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Special Purpose Vehicles,1987,-18500,,,,,,,,, +10.905012000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,290.85714285714283,35,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59007,,-1,1700,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,404,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.1111,0.0,59.0,0.0,Compact Cars,1985,3500,,SIL,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2984,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4040,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1987,-13000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS) 2 barrel carb,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4041,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4042,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Special Purpose Vehicles,1987,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4043,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,23.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4044,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3770,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4045,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1987,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3771,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4046,0,0,Ford,Bronco II 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1987,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3834,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4047,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,17.9487,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4048,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1987,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3835,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4049,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,20.0,0.0,Special Purpose Vehicles,1987,-7750,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,405,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.0,0.0,Compact Cars,1985,0,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3930,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4050,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1987,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3929,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4051,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3926,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4052,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Special Purpose Vehicles,1987,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4053,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4054,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4055,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1987,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4056,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1987,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4902,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4057,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Special Purpose Vehicles,1987,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4058,0,0,GMC,T15 (S15) Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4059,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-5250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,406,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Compact Cars,1985,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4060,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1987,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4061,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4062,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4063,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4064,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Special Purpose Vehicles,1987,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4065,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-6500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4066,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4067,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.9487,0.0,Special Purpose Vehicles,1987,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4953,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4068,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-6500,,,,,Diesel,,,, +17.351199,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29095,"(DSL,TRBO) (NO-CAT)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4069,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,32.0,0.0,Special Purpose Vehicles,1987,-1500,,,T,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,407,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1985,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29096,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4070,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,29097,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4071,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-4250,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,1990,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4072,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,37.0,0.0,Special Purpose Vehicles,1987,250,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4073,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1987,-3250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4074,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,32.0,0.0,Special Purpose Vehicles,1987,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4075,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1987,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4076,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-4250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4077,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1987,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4078,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Special Purpose Vehicles,1987,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4079,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Special Purpose Vehicles,1987,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59005,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,408,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1985,1000,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1992,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4080,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1998,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4081,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1987,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4082,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1987,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1999,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4083,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1987,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.5,4-Wheel or All-Wheel Drive,46001,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4084,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1987,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4085,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,23.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4086,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.0,0.0,Special Purpose Vehicles,1987,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49080,(FFS) 2 barrel carb,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4087,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1987,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4088,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Special Purpose Vehicles,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66085,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4089,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1987,0,,,,,,,,, +12.306357,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59009,"(DSL,TRBO)",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,409,0,13,Volkswagen,Quantum,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,49.0,0.0,Compact Cars,1985,2500,,SIL,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66080,(OHV),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4090,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,35.8974,0.0,Special Purpose Vehicles,1987,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4091,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Special Purpose Vehicles,1987,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4092,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicles,1987,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4093,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4094,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Special Purpose Vehicles,1987,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4095,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,29.0,0.0,Special Purpose Vehicles,1987,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66081,(OHC),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4096,0,0,Subaru,Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Special Purpose Vehicles,1987,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4097,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.7692,0.0,Special Purpose Vehicles,1987,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66086,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4098,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1987,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4099,0,0,Suzuki,Samurai Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Special Purpose Vehicles,1987,1000,,,,,,,,, +9.141184,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54021,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,41,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,45.0,0.0,55.0,0.0,Minicompact Cars,1985,4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59017,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,410,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Compact Cars,1985,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4100,0,0,Suzuki,Samurai Hardtop,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Special Purpose Vehicles,1987,1000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,57095,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4101,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1987,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57088,"(FFS,TRBO)",-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4102,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicles,1987,-5250,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4103,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1987,-3250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4104,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,30.0,0.0,Special Purpose Vehicles,1987,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4105,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4106,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,19.2308,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4107,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1987,-9250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,4108,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1987,-13000,,2MODE 3LKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4109,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59017,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,411,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1985,-2500,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2853,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4110,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1987,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2884,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,4111,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1987,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4112,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1987,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4113,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,19.2308,0.0,Special Purpose Vehicle 2WD,1987,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4813,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4114,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1987,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4115,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1987,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4116,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1987,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9005,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4117,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Two Seaters,1988,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,9801,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4118,0,0,Aurora Cars Ltd,Aurora,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,27.0,0.0,Two Seaters,1988,-6250,T,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,12701,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4119,0,0,Bertone,X1/9,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1988,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,412,0,14,Volvo,240 DL/GL/turbo,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Compact Cars,1985,-4250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4120,0,0,Buick,Reatta,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Two Seaters,1988,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4600,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4121,0,0,Cadillac,Allante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Two Seaters,1988,-5750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4122,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Two Seaters,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4123,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1988,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4105,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4124,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Two Seaters,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4125,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1988,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,4126,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1988,-3250,,2LKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,23,49,4127,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Two Seaters,1988,-2500,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,4128,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,4129,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1988,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,413,0,14,Volvo,240 DL/GL/turbo,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1985,-4250,,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4130,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1988,-13000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4131,0,0,Ferrari,328 GTS/GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1988,-9250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4132,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Two Seaters,1988,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4133,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Two Seaters,1988,1500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4134,0,0,Ford,EXP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Two Seaters,1988,2250,,SIL,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4135,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,47.0,0.0,Two Seaters,1988,2500,,2LKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,4136,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,50.0,0.0,Two Seaters,1988,3500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26020,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4137,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,46.0,0.0,Two Seaters,1988,2250,,,,,,,,, +7.47116,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,201.97727272727272,44,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26011,(FFS),-1,1250,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,4138,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,55.6406,0.0,71.4175,0.0,Two Seaters,1988,5750,,SIL,,,,,,, +8.02051,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26011,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,0,0,4139,0,0,Honda,Civic CRX HF,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,67.9487,0.0,Two Seaters,1988,5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60011,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,414,0,14,Volvo,240 DL/GL/turbo,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Compact Cars,1985,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4140,16,0,Jaguar,XJ-SC,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,21.7949,0.0,Two Seaters,1988,-9250,T,,,,,,,, +47.068308,0.0,0.0,0.0,6,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1269.5714285714287,7,0.0,0,0.0,0.0,0.0,0.0,12,5.2,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,8600,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4141,8,0,Lamborghini,Countach,N,false,45,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,7.0,0.0,13.0,0.0,Two Seaters,1988,-31000,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4142,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,35.0,0.0,Two Seaters,1988,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,36001,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4143,0,0,Maserati,Q,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.0,0.0,Two Seaters,1988,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4144,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56015,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4145,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Two Seaters,1988,-4250,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4146,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Two Seaters,1988,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20062,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4147,0,0,Mercedes-Benz,560SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Two Seaters,1988,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,40602,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4148,0,0,Panther Car Company Limited,Kallista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Two Seaters,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,40601,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4149,0,0,Panther Car Company Limited,Kallista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,33.0,0.0,Two Seaters,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,415,0,14,Volvo,240 DL/GL/turbo,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1985,-500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4128,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4150,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.7436,0.0,Two Seaters,1988,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4124,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4151,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,45.0,0.0,Two Seaters,1988,1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4127,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4152,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Two Seaters,1988,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4153,0,0,Pontiac,Fiero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1988,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,6601,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4154,0,0,Red Shift Ltd.,Delta 204T,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,44.0,0.0,Two Seaters,1988,-1000,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,45525,"(GUZZLER) (FFS,TRBO)",-1,4650,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4155,0,0,Ruf Automobile Gmbh,Ruf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,25.0,0.0,Two Seaters,1988,-11250,T,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4156,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Two Seaters,1988,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4157,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.0,0.0,Two Seaters,1988,500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57027,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4158,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.0,0.0,Two Seaters,1988,-1750,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57025,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4159,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Two Seaters,1988,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,Front-Wheel Drive,64023,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,416,0,17,Audi,5000S,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57027,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4160,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Two Seaters,1988,-1000,,,,,,,,, +7.009706,0.0,0.0,0.0,44,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54027,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,51,0.0,0,0.0,0.0,0.0,0.0,8,74,4161,0,0,Chevrolet,Sprint Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,60.0,0.0,74.0,0.0,Minicompact Cars,1988,6250,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54024,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,4162,0,0,Chevrolet,Turbo Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1988,4000,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4163,3,0,Ferrari,3.2 Mondial/Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Minicompact Cars,1988,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,37201,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4164,20,0,Dacia,Coupe,N,false,45,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Minicompact Cars,1988,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,37201,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4165,0,15,Dacia,Sedan,N,false,0,53,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Minicompact Cars,1988,0,,,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54026,"(FFS,TRBO) (MPFI)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,4166,0,0,Pontiac,Turbo Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1988,4000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,42020,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4167,4,0,Porsche,911 Carrera,Y,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Minicompact Cars,1988,-3750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4168,4,0,Porsche,911 Turbo,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,28.2051,0.0,Minicompact Cars,1988,-5750,T,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42035,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,63,4169,0,0,Porsche,924 S,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Minicompact Cars,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,417,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42035,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,63,4170,0,0,Porsche,924 S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Minicompact Cars,1988,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,74,4171,0,0,Porsche,928 S4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Minicompact Cars,1988,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,8,74,4172,0,0,Porsche,928 S4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1988,-6750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,63,4173,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.2051,0.0,Minicompact Cars,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,63,4174,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Minicompact Cars,1988,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42040,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,4175,0,0,Porsche,944 S,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.3333,0.0,Minicompact Cars,1988,-3750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42015,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,4176,0,0,Porsche,944 Turbo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1988,-3000,,,T,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54025,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,4177,0,0,Suzuki,Forsa Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,55.0,0.0,Minicompact Cars,1988,4000,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4178,9,0,Toyota,Celica Convertible,N,false,73,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Minicompact Cars,1988,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4179,9,0,Toyota,Celica Convertible,N,false,73,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1988,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,418,0,17,Audi,5000S,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Midsize Cars,1985,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,59577,(GUZZLER) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4180,4,0,Porsche,911 Carrera,N,false,40,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,33.3333,0.0,Minicompact Cars,1988,-4750,T,EMS,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4181,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Minicompact Cars,1988,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4182,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,35.0,0.0,Minicompact Cars,1988,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,79,4183,0,0,Acura,Integra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1988,500,,2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26021,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,79,4184,0,0,Acura,Integra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4185,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4186,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,9010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4187,0,9,Alfa Romeo,Milano,N,false,0,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4188,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1988,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4189,7,0,Aston Martin,Saloon/Vantage/Volante,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1988,-18500,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,419,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1985,500,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4190,7,0,Aston Martin,Saloon/Vantage/Volante,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1988,-18500,T,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4191,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,34.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4192,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4193,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4194,0,8,Audi,80/90 quattro,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12055,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4195,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,36.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12050,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4196,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,37.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4197,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12046,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4198,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12046,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4199,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +7.844718,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54025,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,8,74,42,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,52.2222,0.0,68.0,0.0,Minicompact Cars,1985,5500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,420,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4200,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4201,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.7692,0.0,Subcompact Cars,1988,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4202,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1988,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12060,(GUZZLER) (FFS) (MPFI),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4203,12,0,BMW,6 Series,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Subcompact Cars,1988,-7750,T,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12060,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4204,12,0,BMW,6 Series,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Subcompact Cars,1988,-6250,T,,,,,,,, +27.4675,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12035,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4205,12,0,BMW,6 Series,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,24.0,0.0,Subcompact Cars,1988,-13250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,4206,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1988,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4118,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4207,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4114,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4208,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4125,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,4209,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1988,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4405,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,421,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4115,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,4210,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1988,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4126,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4211,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1988,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,4212,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4213,10,0,Chevrolet,Cavalier Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1988,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4214,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.1795,0.0,Subcompact Cars,1988,-1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,4215,0,11,Chevrolet,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,4216,0,11,Chevrolet,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1988,3750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29011,"(FFS,TRBO)",-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4217,0,11,Chevrolet,Spectrum Turbo,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1988,1750,,,T,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54021,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,4218,0,8,Chevrolet,Sprint,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1988,4000,,,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54021,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,8,74,4219,0,8,Chevrolet,Sprint,Y,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.6212,0.0,62.3415,0.0,Subcompact Cars,1988,5000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4402,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,422,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,4220,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1988,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,10,76,4221,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1988,-4750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4222,10,0,Chrysler,LeBaron Convertible,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1988,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4223,10,0,Chrysler,LeBaron Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4224,10,0,Chrysler,LeBaron Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4225,10,0,Chrysler,LeBaron Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Subcompact Cars,1988,0,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,19001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,4226,0,0,Daihatsu,Charade,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1988,4000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4227,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4228,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4229,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1988,-1000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,423,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4230,7,0,Nissan,Pulsar NX,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,72,4231,0,0,Nissan,Sentra Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,72,4232,0,0,Nissan,Sentra Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,4233,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.8974,0.0,Subcompact Cars,1988,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,4234,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Subcompact Cars,1988,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,76,4235,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0513,0.0,Subcompact Cars,1988,-2500,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,4236,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Subcompact Cars,1988,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,72,4237,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1988,-2500,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,72,4238,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4239,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1988,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,424,16,0,Buick,Regal,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,4240,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,49.0,0.0,Subcompact Cars,1988,3000,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,4241,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1988,2750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,4242,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1988,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4243,0,11,Dodge,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1988,1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,83,4244,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1988,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,4245,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Subcompact Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,4246,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,83,4247,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Subcompact Cars,1988,0,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3060,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,12,87,4248,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1988,4000,,SIL,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3061,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,12,87,4249,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1988,4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4440,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,425,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1985,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,11,83,4250,8,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1988,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,11,83,4251,8,0,Ford,Mustang,N,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,38.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,83,4252,8,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3402,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,83,4253,8,0,Ford,Mustang,Y,false,83,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1988,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,85,4254,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1988,2250,,2LKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26014,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,85,4255,0,12,Honda,Civic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1111,0.0,42.3077,0.0,Subcompact Cars,1988,1750,,2LKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26012,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,85,4256,0,12,Honda,Civic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1111,0.0,42.3077,0.0,Subcompact Cars,1988,1750,,2LKUP,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,85,4257,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1988,3500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26013,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,85,4258,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.8889,0.0,49.0,0.0,Subcompact Cars,1988,3500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,12,85,4259,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,48.0,0.0,Subcompact Cars,1988,3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,426,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26013,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,85,4260,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,46.1538,0.0,Subcompact Cars,1988,2750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4261,11,0,Honda,Prelude,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1988,-1750,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4262,11,0,Honda,Prelude,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(16 VALVE) (FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4263,11,0,Honda,Prelude,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Subcompact Cars,1988,-1000,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(16 VALVE) (FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4264,11,0,Honda,Prelude,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,82,4265,0,11,Hyundai,Excel,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,82,4266,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1988,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,82,4267,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,4268,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,4269,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1988,3750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,427,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,85,4270,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1988,3000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29011,"(FFS,TRBO)",-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,85,4271,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1988,1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,4272,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1988,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,77,4273,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1988,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,4274,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,4275,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1988,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4276,11,0,Jaguar,XJ-S,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,21.7949,0.0,Subcompact Cars,1988,-9250,T,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20020,(NO-CAT),-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4277,0,12,Mercedes-Benz,190D 2.5,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,44.0,0.0,Subcompact Cars,1988,1500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4278,0,12,Mercedes-Benz,190E 2.3,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Subcompact Cars,1988,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4279,0,12,Mercedes-Benz,190E 2.3,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Subcompact Cars,1988,-2250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4305,,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,428,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Midsize Cars,1985,-1000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4280,0,12,Mercedes-Benz,190E 2.6,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1988,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4281,0,12,Mercedes-Benz,190E 2.6,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1988,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4282,14,0,Mercedes-Benz,300CE,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,78,4283,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1988,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,14,78,4284,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,78,4285,0,0,Mitsubishi,Cordia,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS) 2 barrel carb,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4286,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0256,0.0,Subcompact Cars,1988,1750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,4287,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,49.0,0.0,Subcompact Cars,1988,3000,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,4288,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1988,2750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,4289,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1988,-500,,,T,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4346,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,429,16,0,Buick,Regal,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Midsize Cars,1985,-2000,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4290,0,11,Mitsubishi,Mirage,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1988,1000,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,82,4291,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,82,4292,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,82,4293,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,4294,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1988,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,10,76,4295,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1988,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4296,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1988,-500,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4297,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4298,0,11,Mitsubishi,Tredia,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4299,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1988,1750,,,,,,,,, +9.141184,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54021,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,8,74,43,0,0,Suzuki,SA310,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,45.0,0.0,55.0,0.0,Minicompact Cars,1985,4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4430,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,430,16,0,Buick,Riviera,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Midsize Cars,1985,-5750,,,T,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,11,81,4300,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,49.0,0.0,Subcompact Cars,1988,3000,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,11,81,4301,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Subcompact Cars,1988,2750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,11,81,4302,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.3333,0.0,Subcompact Cars,1988,-500,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,81,4303,0,11,Plymouth,Colt,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1988,1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,4304,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1988,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4118,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4305,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4114,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4306,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1988,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4125,(FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,4307,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1988,-5750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4115,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,4308,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1988,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4126,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,4309,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1988,-4750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4320,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,431,16,0,Buick,Riviera,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Midsize Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,4310,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54023,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,4311,0,8,Pontiac,Firefly,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1988,4000,,,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54023,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,74,4312,0,8,Pontiac,Firefly,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.8605,0.0,62.6493,0.0,Subcompact Cars,1988,5000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4313,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1988,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4117,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4314,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,38.0,0.0,Subcompact Cars,1988,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4315,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1988,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4316,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,43.0,0.0,Subcompact Cars,1988,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4317,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,4318,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1988,3750,,SIL,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44025,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4319,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1988,-18500,T,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Front-Wheel Drive,4340,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,432,16,0,Buick,Riviera,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1985,-2000,,,,,Diesel,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44025,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4320,9,0,Rolls-Royce,Corniche II,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Subcompact Cars,1988,-18500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47036,"(B202) (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4321,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Subcompact Cars,1988,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47032,"(B202) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4322,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Subcompact Cars,1988,-1000,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,78,4323,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1988,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,78,4324,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,9,78,4325,0,0,Subaru,Justy,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1988,3750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4326,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,39.7436,0.0,Subcompact Cars,1988,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4327,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4328,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1988,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66021,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4329,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1988,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4603,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,433,15,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4330,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1988,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4331,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1988,-2500,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54022,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,8,74,4332,0,8,Suzuki,Forsa,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1988,4000,,,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54022,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,8,74,4333,0,8,Suzuki,Forsa,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.8605,0.0,62.6493,0.0,Subcompact Cars,1988,5000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,4334,12,0,Toyota,Celica,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1988,-500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,79,4335,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57047,"(3S-GTE) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,4336,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.0,0.0,Subcompact Cars,1988,-3750,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,79,4337,12,0,Toyota,Celica,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57045,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,4338,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(4A-F) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4339,12,13,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Subcompact Cars,1988,1000,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Front-Wheel Drive,4340,(350 V8),-1,2950,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,434,15,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1985,-2750,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(4A-F) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4340,12,13,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(4A-F) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4341,12,13,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Subcompact Cars,1988,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57025,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4342,12,13,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57019,(4A-LC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,14,86,4343,0,0,Toyota,Corolla FX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.7436,0.0,Subcompact Cars,1988,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57019,(4A-LC) (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,4344,0,0,Toyota,Corolla FX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Subcompact Cars,1988,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57025,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,86,4345,0,0,Toyota,Corolla FX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1988,0,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57025,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,14,86,4346,0,0,Toyota,Corolla FX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.1795,0.0,Subcompact Cars,1988,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,4347,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1988,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57062,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,4348,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1988,-4750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,4349,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1988,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4603,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,435,0,14,Cadillac,Seville,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57062,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,4350,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1988,-4750,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,80,4351,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1988,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,80,4352,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.0,0.0,44.8718,0.0,Subcompact Cars,1988,2500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,80,4353,11,0,Toyota,Tercel,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Subcompact Cars,1988,2500,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57002,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,13,80,4354,0,0,Toyota,Tercel EZ,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,53.0,0.0,Subcompact Cars,1988,3750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4355,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1988,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59009,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4356,10,10,Volkswagen,Fox,Y,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Subcompact Cars,1988,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,73,4357,0,0,Volkswagen,Scirocco 16v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1988,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.1,Front-Wheel Drive,61412,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,6,80,4358,0,0,Yugo,GV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1988,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,61414,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,6,80,4359,0,0,Yugo,GV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,37.1795,0.0,Subcompact Cars,1988,500,,,,,,,,, +19.109250000000003,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Front-Wheel Drive,4340,(350 V8),-1,2950,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,436,0,14,Cadillac,Seville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1985,-2750,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,15,86,4360,0,14,Acura,Legend,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1988,-3250,,3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,86,4361,0,14,Acura,Legend,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4362,0,12,Sterling,825,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1988,-3250,,3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,10801,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4363,0,12,Sterling,825,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Compact Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10802,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4364,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1988,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10802,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4365,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Compact Cars,1988,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4366,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12020,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4367,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12010,(GUZZLER) (FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4368,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Compact Cars,1988,-4250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12010,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4369,0,14,BMW,5 Series,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Compact Cars,1988,-5250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,437,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1985,500,,,,,,,,, +27.4675,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12035,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4370,0,14,BMW,5 Series,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,24.0,0.0,Compact Cars,1988,-13250,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4371,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4372,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Compact Cars,1988,1500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4373,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4374,13,13,Buick,Skyhawk,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Compact Cars,1988,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4375,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4376,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Compact Cars,1988,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4113,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4377,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4378,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Compact Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4379,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1988,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4224,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,438,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,40.0,0.0,Midsize Cars,1985,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4380,0,13,Cadillac,Cimarron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.1795,0.0,Compact Cars,1988,-1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4100,(121) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4381,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4101,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4382,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,45.0,0.0,Compact Cars,1988,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4102,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4383,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4137,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4384,14,0,Chevrolet,Beretta,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Compact Cars,1988,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4103,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4385,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.1795,0.0,Compact Cars,1988,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4386,13,14,Chevrolet,Cavalier,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4387,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Compact Cars,1988,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4388,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4389,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.1795,0.0,Compact Cars,1988,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,439,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4100,(121) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4390,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.7436,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4101,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4391,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,45.0,0.0,Compact Cars,1988,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4102,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4392,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Compact Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4137,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4393,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Compact Cars,1988,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4103,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4394,0,14,Chevrolet,Corsica,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.1795,0.0,Compact Cars,1988,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,20,85,4395,0,14,Chevrolet,Nova,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Compact Cars,1988,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57610,(FFS) 2 barrel carb,-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,20,85,4396,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1988,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57620,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,20,85,4397,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,36.0,0.0,Compact Cars,1988,0,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57620,(FFS) fuel injection,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,20,85,4398,0,14,Chevrolet,Nova,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.1795,0.0,Compact Cars,1988,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4399,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1988,-3000,,,T,,,,,, +7.844718,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,211.5952380952381,42,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54020,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,8,74,44,0,0,Suzuki,SA310,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,52.2222,0.0,68.0,0.0,Minicompact Cars,1985,5500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,440,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4400,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1988,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4401,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4402,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Compact Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4403,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1988,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4404,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1988,-3250,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4405,0,14,Nissan,Maxima,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,89,4406,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1988,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,89,4407,12,12,Nissan,Sentra,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,45.0,0.0,Compact Cars,1988,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,89,4408,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1988,2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,89,4409,0,12,Nissan,Stanza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Compact Cars,1988,-1000,,2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,441,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1985,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,89,4410,0,12,Nissan,Stanza,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Compact Cars,1988,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,4411,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,4412,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1988,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4413,13,13,Dodge,Shadow,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1988,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4414,13,13,Dodge,Shadow,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Compact Cars,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4415,13,13,Dodge,Shadow,N,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Compact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4416,13,13,Dodge,Shadow,Y,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4417,13,13,Dodge,Shadow,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Compact Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4418,13,13,Dodge,Shadow,Y,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Compact Cars,1988,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,85,4419,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Compact Cars,1988,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,442,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3141,(FFS) (SPFI),-1,1700,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,18,85,4420,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,54.0,0.0,Compact Cars,1988,3500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,85,4421,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1988,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,85,4422,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Compact Cars,1988,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,4423,0,0,Ford,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,38.0,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,4424,0,0,Ford,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4425,13,13,Ford,Tempo,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1988,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3204,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4426,13,13,Ford,Tempo,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3203,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4427,13,13,Ford,Tempo AWD,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3241,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4428,15,0,Ford,Thunderbird,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Compact Cars,1988,-4250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3240,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4429,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Compact Cars,1988,-2500,,,T,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,443,16,16,Chevrolet,Celebrity,N,false,98,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4430,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4431,15,0,Ford,Thunderbird,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26033,(FFS) 2 barrel carb,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,86,4432,14,14,Honda,Accord,Y,false,86,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,39.0,0.0,Compact Cars,1988,500,,3LKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26033,(FFS) 2 barrel carb,-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,86,4433,14,14,Honda,Accord,Y,false,86,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Compact Cars,1988,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26034,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,86,4434,14,14,Honda,Accord,N,false,86,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Compact Cars,1988,-500,,3LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26034,(FFS) fuel injection,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,86,4435,14,14,Honda,Accord,Y,false,86,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Compact Cars,1988,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,30530,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4436,0,13,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Compact Cars,1988,-3250,,VLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,30537,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4437,0,13,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1988,-3750,,VLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4438,15,0,Mercury,Cougar,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3403,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4439,15,0,Mercury,Cougar,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,95,444,13,0,Chevrolet,Citation II,Y,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Midsize Cars,1985,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4440,13,13,Mercury,Topaz,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1988,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3204,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4441,13,13,Mercury,Topaz,Y,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3203,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4442,13,13,Mercury,Topaz AWD,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,87,4443,0,0,Mercury,Tracer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,37.0,0.0,Compact Cars,1988,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,87,4444,0,0,Mercury,Tracer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.8718,0.0,Compact Cars,1988,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3243,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,17,90,4445,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1988,-4250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3242,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,17,90,4446,0,0,Merkur,XR4Ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1988,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,4447,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,38.0,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,4448,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1988,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,56031,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,88,4449,0,15,Mazda,323,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,31.0,0.0,Compact Cars,1988,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4224,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,19,95,445,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.0,0.0,43.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,88,4450,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Compact Cars,1988,-1750,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,88,4451,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.3077,0.0,Compact Cars,1988,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4452,0,15,Mercedes-Benz,260E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.7692,0.0,Compact Cars,1988,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4453,0,15,Mercedes-Benz,260E,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Compact Cars,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4454,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4455,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1988,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20041,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4456,0,15,Mercedes-Benz,300SE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,24.0,0.0,Compact Cars,1988,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4457,15,0,Mercedes-Benz,560SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Compact Cars,1988,-11250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35904,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4458,0,14,Mcevoy Motors,240 DL/240 GL Sedan,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4459,0,12,Mitsubishi,Galant Sigma,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,95,446,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4460,0,12,Mitsubishi,Galant Sigma,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4461,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4462,13,13,Oldsmobile,Cutlass Calais,Y,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Compact Cars,1988,1500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4463,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1988,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4113,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4464,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4465,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Compact Cars,1988,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4466,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4467,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Compact Cars,1988,1500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4468,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4469,13,14,Oldsmobile,Firenza,N,false,85,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Compact Cars,1988,1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,95,447,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41030,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4470,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1988,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41030,"(FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4471,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1988,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4472,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4473,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4474,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1988,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4475,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Compact Cars,1988,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,4476,0,0,Plymouth,Horizon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Compact Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,16,85,4477,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1988,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4478,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1988,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4479,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1988,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,95,448,13,0,Chevrolet,Citation II,Y,false,94,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1985,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4480,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Compact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4481,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4482,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Compact Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4483,13,13,Plymouth,Sundance,N,false,89,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Compact Cars,1988,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4484,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1988,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4117,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4485,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,38.0,0.0,Compact Cars,1988,-2250,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4486,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,43.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4487,13,13,Pontiac,Grand Am,Y,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Compact Cars,1988,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4488,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Compact Cars,1988,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4113,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4489,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,19,95,449,13,0,Chevrolet,Citation II,N,false,94,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4108,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,4490,0,18,Pontiac,Lemans,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,41.0,0.0,Compact Cars,1988,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4107,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,89,4491,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,50.0,0.0,Compact Cars,1988,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4104,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,89,4492,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,51.2821,0.0,Compact Cars,1988,2750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4151,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,89,4493,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Compact Cars,1988,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4494,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Compact Cars,1988,-3000,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4117,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4495,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Compact Cars,1988,-1750,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4496,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Compact Cars,1988,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4497,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Compact Cars,1988,1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,(B202) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,4498,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,27.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47015,(B201) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,4499,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1988,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,45,6,0,Volkswagen,Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Minicompact Cars,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,450,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47035,"(B202) (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,88,4500,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Compact Cars,1988,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,(B202) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,88,4501,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47031,"(B202) (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,4502,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Compact Cars,1988,-2250,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,"(B202) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,88,4503,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,(B201) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,88,4504,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,19,83,4505,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Compact Cars,1988,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,4506,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Compact Cars,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,83,4507,0,15,Subaru,Sedan/3 Door,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,4508,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Compact Cars,1988,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,83,4509,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Compact Cars,1988,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4160,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,451,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4510,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,38.0,0.0,Compact Cars,1988,500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4511,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Compact Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57030,(3S-FE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4512,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Compact Cars,1988,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4513,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1988,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57048,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4514,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57048,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4515,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4516,0,13,Toyota,Cressida,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1988,-4750,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,4517,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,87,4518,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,4519,0,0,Volkswagen,GTI 16v,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1988,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,452,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4520,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4521,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4522,0,17,Volkswagen,Jetta GLI 16v,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1988,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59005,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4523,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Compact Cars,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59005,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4524,0,13,Volkswagen,Quantum,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4525,0,14,Volvo,240 DL/240 GL,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Compact Cars,1988,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4526,0,14,Volvo,240 DL/240 GL,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Compact Cars,1988,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60030,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4527,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Compact Cars,1988,-5250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64016,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4528,0,17,Audi,5000 CS quattro,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize Cars,1988,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64016,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4529,0,17,Audi,5000 CS Turbo,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1988,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,453,16,0,Chevrolet,Monte Carlo,Y,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64016,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4530,0,17,Audi,5000 CS Turbo,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1988,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4531,0,17,Audi,5000 S,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4532,0,17,Audi,5000 S,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4533,0,17,Audi,5000 S quattro,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1988,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4534,0,13,BMW,7 Series,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Midsize Cars,1988,-6250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4535,0,13,BMW,7 Series,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,28.2051,0.0,Midsize Cars,1988,-5250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4536,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Midsize Cars,1988,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4537,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4538,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4539,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,454,0,14,Chrysler,Executive Sedan/Limousine,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4540,16,0,Buick,Regal,Y,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4541,14,0,Buick,Riviera,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4542,14,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Midsize Cars,1988,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4543,0,14,Cadillac,Seville,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Midsize Cars,1988,-4250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4544,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Midsize Cars,1988,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4545,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4546,16,16,Chevrolet,Celebrity,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4547,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1988,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4109,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4548,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4135,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4549,16,0,Chevrolet,Monte Carlo,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1988,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,455,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.3333,0.0,Midsize Cars,1985,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,96,4550,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4551,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1988,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4552,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1988,-2250,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,4553,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4554,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,96,4555,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Midsize Cars,1988,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4556,0,17,Chrysler,New Yorker Turbo,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4557,0,17,Chrysler,New Yorker/5th Avenue,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1988,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4558,0,16,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1988,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16922,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4559,0,18,CX Automotive,CX 25 GTI,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize Cars,1988,-5750,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,456,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4560,0,18,CX Automotive,CX 25 GTI,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1988,-3750,T,DC/FW,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4561,15,15,Dodge,Aries,Y,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Midsize Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4562,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Midsize Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4563,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS) 2 barrel carb,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4564,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,24.359,0.0,Midsize Cars,1988,-8000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4565,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1988,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS) 4 barrel carb,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4566,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1988,-13250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4567,0,17,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4568,0,17,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1988,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,96,4569,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-3000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,457,15,15,Chrysler,LeBaron,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4570,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,4571,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1988,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4572,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1988,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,4573,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,96,4574,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Midsize Cars,1988,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4575,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4576,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1988,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4577,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3261,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4578,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1988,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3260,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4579,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1988,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,98,458,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4580,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize Cars,1988,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4581,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4582,14,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1988,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4583,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize Cars,1988,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4584,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3280,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,20,95,4585,0,0,Merkur,Scorpio,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,20,95,4586,0,0,Merkur,Scorpio,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Midsize Cars,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,4587,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,32.0,0.0,Midsize Cars,1988,-3750,,2MODE,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,4588,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,21,95,4589,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.7436,0.0,Midsize Cars,1988,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,98,459,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,4590,14,15,Mazda,626/MX-6,Y,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1988,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4591,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1988,-2500,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4592,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Midsize Cars,1988,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20041,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4593,0,15,Mercedes-Benz,300SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,24.0,0.0,Midsize Cars,1988,-6750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4594,0,15,Mercedes-Benz,420SEL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Midsize Cars,1988,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4595,0,15,Mercedes-Benz,560SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Midsize Cars,1988,-11250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4596,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Midsize Cars,1988,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4597,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4598,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4599,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,46,6,0,Volkswagen,Cabriolet,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Minicompact Cars,1985,0,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,98,460,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.3077,0.0,Midsize Cars,1985,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4600,16,0,Oldsmobile,Cutlass Supreme,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4601,16,0,Oldsmobile,Cutlass Supreme,N,false,96,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1988,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4602,16,0,Oldsmobile,Cutlass Supreme Classic,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1988,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4603,14,0,Oldsmobile,Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4604,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4605,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1988,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4606,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4607,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1988,-4750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS) 2 barrel carb,-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4608,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,24.359,0.0,Midsize Cars,1988,-8000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS) 4 barrel carb,-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4609,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1988,-13250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,98,461,0,0,Chrysler,LeBaron GTS,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Midsize Cars,1985,-3000,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4610,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.0,0.0,Midsize Cars,1988,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4611,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Midsize Cars,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4612,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1988,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4613,15,0,Pontiac,Grand Prix,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4614,15,0,Pontiac,Grand Prix,N,false,95,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1988,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4615,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Midsize Cars,1988,500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4616,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4617,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1988,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4618,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1988,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,4150,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4619,0,16,Pontiac,6000,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize Cars,1988,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,462,0,17,Chrysler,New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4620,0,15,Eagle,Renault Medallion Sedan,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4621,0,15,Eagle,Renault Medallion Sedan,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Midsize Cars,1988,1000,,SIL,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44025,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4622,0,15,Rolls-Royce,Eight/Mulsan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1988,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44025,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4623,0,15,Rolls-Royce,Silver Spirit/Silver Spur,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.1026,0.0,Midsize Cars,1988,-18500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4624,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1988,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4625,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Midsize Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(TURBO) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4626,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1988,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4627,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize Cars,1988,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60030,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4628,0,17,Volvo,740/760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Midsize Cars,1988,-5250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12070,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4629,0,13,BMW,750 Series,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,22.0,0.0,Large Cars,1988,-9250,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,463,0,17,Chrysler,New Yorker,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4630,0,16,Buick,Electra/Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4631,16,16,Buick,LeSabre,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4632,0,20,Cadillac,Brougham,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1988,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4633,16,16,Cadillac,DeVille,Y,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,1988,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4620,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4634,0,16,Cadillac,Fleetwood,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Large Cars,1988,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,13901,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4635,0,20,CCC Engineering,Duntov GT,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Large Cars,1988,-6250,T,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4111,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4636,0,21,Chevrolet,Caprice,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Large Cars,1988,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(305) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4637,0,21,Chevrolet,Caprice,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Large Cars,1988,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4136,(350 V8) (POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4638,0,21,Chevrolet,Caprice,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,26.0,0.0,Large Cars,1988,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16922,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4639,0,18,CX Automotive,CX 25 Prestige,N,false,0,106,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Large Cars,1988,-5750,,DC/FW,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2500,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,464,0,15,Chrysler,Newport/Fifth Avenue,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-5750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4640,0,22,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1988,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3500,(POLICE) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4641,0,22,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,22.0,0.0,Large Cars,1988,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,30810,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4642,0,15,"JBA Motorcars, Inc.",W-126/4 Series,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Large Cars,1988,-6250,T,EMS 2MODE CLKU,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4643,0,19,Lincoln,Continental,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4644,0,22,Mercury,Grand Marquis,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4645,0,22,Lincoln,Town Car,N,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4646,16,16,Oldsmobile,Delta 88,Y,false,102,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4647,0,16,Oldsmobile,Ninety-Eight/Touring,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4648,0,15,Pontiac,Bonneville,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Large Cars,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1125,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4649,0,17,Eagle,Premier,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Large Cars,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,465,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Midsize Cars,1985,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1125,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4650,0,17,Eagle,Premier,N,false,0,104,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0,0.0,Large Cars,1988,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,1030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4651,0,17,Eagle,Premier,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1988,-2500,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44025,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4652,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,143,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Large Cars,1988,-18500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47055,"(B202) (FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,4653,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.0,0.0,Large Cars,1988,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47045,(B202) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,4654,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,1988,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47050,"(B202) (FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,103,4655,0,0,Saab,9000,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Large Cars,1988,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47040,(B202) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,4656,0,0,Saab,9000,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Large Cars,1988,-1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4657,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Small Station Wagons,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4658,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Small Station Wagons,1988,1500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4659,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Small Station Wagons,1988,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,466,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4660,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Small Station Wagons,1988,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4661,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Small Station Wagons,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4662,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Small Station Wagons,1988,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4129,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4663,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Small Station Wagons,1988,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4664,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.1795,0.0,Small Station Wagons,1988,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4665,0,31,Nissan,Maxima Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Station Wagons,1988,-3250,,2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4666,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,36.0,0.0,Small Station Wagons,1988,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4667,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Small Station Wagons,1988,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,38003,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4668,0,24,Nissan,Sentra Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,37.1795,0.0,Small Station Wagons,1988,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4669,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1988,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,467,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.3077,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4670,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4671,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,38.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4672,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,45.0,0.0,Small Station Wagons,1988,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4673,0,28,Ford,Escort Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1988,500,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3141,(FFS) (SPFI),-1,1700,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,0,0,4674,0,28,Ford,Escort Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,54.0,0.0,Small Station Wagons,1988,3500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4675,0,28,Ford,Escort Wagon,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Small Station Wagons,1988,2250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26014,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4676,0,27,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,42.3077,0.0,Small Station Wagons,1988,1750,,2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26012,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4677,0,27,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,42.0,0.0,Small Station Wagons,1988,1500,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26013,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4678,0,27,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,46.0,0.0,Small Station Wagons,1988,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26022,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4679,0,27,Honda,Civic Wagon 4WD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,34.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,468,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.3333,0.0,Midsize Cars,1985,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3052,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4680,0,31,Mercury,Tracer Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,37.0,0.0,Small Station Wagons,1988,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3053,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4681,0,31,Mercury,Tracer Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Small Station Wagons,1988,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4682,0,29,Mazda,323 Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,36.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4683,0,29,Mazda,323 Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.3077,0.0,Small Station Wagons,1988,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) fuel injection,-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4684,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,38.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS) fuel injection,-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4685,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,45.0,0.0,Small Station Wagons,1988,2250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4686,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.4,Front-Wheel Drive,37201,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,34,64,4687,0,0,Dacia,Station Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Small Station Wagons,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(121) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4688,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0256,0.0,Small Station Wagons,1988,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(121) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,4689,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,46.0,0.0,Small Station Wagons,1988,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,469,15,15,Dodge,Aries,N,false,95,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,31.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4690,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Small Station Wagons,1988,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4691,0,34,Oldsmobile,Firenza Cruiser,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Small Station Wagons,1988,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4692,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Small Station Wagons,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49042,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4693,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4694,0,28,Plymouth,Colt Wagon,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,38.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49015,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4695,0,28,Plymouth,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,45.0,0.0,Small Station Wagons,1988,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4132,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4696,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Small Station Wagons,1988,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4133,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,4697,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.7179,0.0,Small Station Wagons,1988,1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4698,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.7692,0.0,Small Station Wagons,1988,-1750,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4699,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,47,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2500,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,470,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-5750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4700,0,35,Subaru,Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Small Station Wagons,1988,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4701,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Small Station Wagons,1988,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4702,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Small Station Wagons,1988,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4703,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,38.0,0.0,Small Station Wagons,1988,500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57030,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4704,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57048,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4705,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Small Station Wagons,1988,-2500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57022,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4706,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1988,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57022,(4A-FE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4707,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Small Station Wagons,1988,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(4A-F) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4708,0,31,Toyota,Corolla Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57020,(4A-F) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,4709,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Small Station Wagons,1988,2250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2600,(POLICE) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,471,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1985,-13250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4710,0,27,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Small Station Wagons,1988,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,4711,0,27,Toyota,Tercel Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,39.0,0.0,Small Station Wagons,1988,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4712,33,0,Volkswagen,Fox Wagon,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1988,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,59002,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4713,0,38,Volkswagen,Quantum Syncro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Station Wagons,1988,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59005,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4714,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Small Station Wagons,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,59005,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4715,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Small Station Wagons,1988,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64016,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4716,0,39,Audi,5000 CS quattro Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize-Large Station Wagons,1988,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4717,0,39,Audi,5000S Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4718,0,39,Audi,5000S Wagon,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4719,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1988,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,98,472,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4720,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4721,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1988,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,4722,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,40.0,0.0,Midsize-Large Station Wagons,1988,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4723,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4724,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4725,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1988,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4726,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16922,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4727,0,41,CX Automotive,Cxestate,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1988,-5750,,DC/FW,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4728,0,41,CX Automotive,Cxestate,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1988,-3750,T,DC/FW,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38022,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4729,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1988,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,98,473,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38022,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4730,0,43,Nissan,Stanza Wagon 2WD,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4731,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4732,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Midsize-Large Station Wagons,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4733,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4734,0,45,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4735,0,45,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3310,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4736,0,45,Ford,Taurus Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4737,0,45,Ford,Taurus Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4738,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3310,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4739,0,46,Mercury,Sable Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,98,474,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,43.0,0.0,Midsize Cars,1985,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4740,0,46,Mercury,Sable Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20040,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4741,0,42,Mercedes-Benz,300TE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Midsize-Large Station Wagons,1988,-6750,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,35904,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,41,89,4742,0,0,Mcevoy Motors,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4743,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1988,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4744,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4745,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41030,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4746,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1988,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4747,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4748,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4749,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,0,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,98,475,0,0,Dodge,Lancer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Midsize Cars,1985,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,4750,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Midsize-Large Station Wagons,1988,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4751,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4116,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4752,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1988,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4753,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1988,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4134,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4754,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Midsize-Large Station Wagons,1988,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4755,0,42,Eagle,Renault Medallion Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,4756,0,42,Eagle,Renault Medallion Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Midsize-Large Station Wagons,1988,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,91,4757,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,42,91,4758,0,0,Volvo,240 DL/240 GL Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Midsize-Large Station Wagons,1988,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,4759,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,476,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,4760,0,0,Volvo,740/760 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(TURBO) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,4761,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1988,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,4762,0,0,Volvo,740/760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Midsize-Large Station Wagons,1988,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4763,0,50,Buick,LeSabre/Electra Wagon,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4764,0,50,Chevrolet,Caprice Wagon,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4765,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4766,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4310,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4767,0,50,Oldsmobile,Custom Cruiser,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(307) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4768,0,50,Pontiac,Safari Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1988,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4769,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,477,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4770,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Small Pickup Trucks,1988,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4771,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4772,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0513,0.0,Small Pickup Trucks,1988,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4773,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks,1988,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4829,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4774,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1988,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4775,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4776,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.7692,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4777,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4778,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Small Pickup Trucks,1988,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4779,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,478,15,17,Dodge,600,N,false,96,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4780,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,33.3333,0.0,Small Pickup Trucks,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4781,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1988,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4782,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Small Pickup Trucks,1988,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4783,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4784,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4785,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,3701,,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4786,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3730,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4787,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3731,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4788,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Small Pickup Trucks,1988,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3761,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4789,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,479,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,32.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3763,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4790,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1988,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4791,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,4792,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Small Pickup Trucks,1988,0,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4793,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4794,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0513,0.0,Small Pickup Trucks,1988,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4795,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks,1988,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4829,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4796,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1988,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4797,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4798,0,0,Isuzu,Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1988,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4799,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Small Pickup Trucks,1988,-2500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,48,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,480,0,15,Ford,LTD,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4800,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,33.3333,0.0,Small Pickup Trucks,1988,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4801,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1988,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4802,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Small Pickup Trucks,1988,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4803,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4804,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4805,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4806,0,0,Mazda,B2200/B2600,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4807,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Small Pickup Trucks,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4808,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4809,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1988,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,481,0,15,Ford,LTD,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57084,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4810,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57085,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4811,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57084,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4812,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4813,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Small Pickup Trucks,1988,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57088,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4814,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.7692,0.0,Small Pickup Trucks,1988,-2500,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,4815,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1988,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4816,0,0,Ford,Courier Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1988,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3740,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4817,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Small Pickup Trucks,1988,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3780,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4818,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Small Pickup Trucks,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3782,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4819,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1988,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27914,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,482,0,15,Mercedes-Benz,500SE,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Midsize Cars,1985,-7750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56086,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4820,0,0,Mazda,B2600 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,23.0,0.0,Small Pickup Trucks,1988,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4821,0,0,Mazda,B2600 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1988,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4822,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4823,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4824,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4825,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4826,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4827,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4828,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4829,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1988,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,27914,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,483,0,15,Mercedes-Benz,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Midsize Cars,1985,-7750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4830,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4831,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4832,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.359,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4833,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4834,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.2051,0.0,Standard Pickup Trucks,1988,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4835,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4836,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4837,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4838,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4839,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +17.351199,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,3220,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,484,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Midsize Cars,1985,-1500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4840,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4841,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4842,0,0,Chevrolet,C20 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4843,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4844,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4845,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4846,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,2821,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,4847,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Standard Pickup Trucks,1988,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4848,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4849,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1988,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,485,0,15,Lincoln,Continental,N,false,0,102,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4850,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4851,0,0,Dodge,D100/D150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2871,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4852,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4853,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4854,0,0,Dodge,D100/D150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS) Lock-up,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4855,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4856,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4857,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1988,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4858,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1988,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4859,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-13000,,Creeper,,,,,,, +17.351199,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,3220,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,486,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Midsize Cars,1985,-1500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4860,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4861,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4862,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4863,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1988,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4864,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4865,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1988,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4866,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-13000,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3811,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4867,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3816,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4868,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4869,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,487,15,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3817,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4870,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3814,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4871,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3900,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4872,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3909,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4873,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3907,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4874,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1988,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3904,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4875,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3941,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4876,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4877,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3820,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4878,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3817,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4879,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3300,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,488,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,32.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3813,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4880,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3908,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4881,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3907,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4882,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1988,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3903,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4883,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3940,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4884,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4885,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4886,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4887,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4888,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4889,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,489,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4890,0,0,GMC,C15 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4891,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4892,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1988,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4893,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4894,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4895,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.359,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4896,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4897,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.2051,0.0,Standard Pickup Trucks,1988,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4824,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4898,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4899,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,49,0,7,Aston Martin,Saloon/Vantage/Volante,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1985,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,490,0,15,Mercury,Marquis,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Midsize Cars,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4900,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4901,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4902,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4903,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4904,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4905,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4906,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4907,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4908,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-3500,,,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4909,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3500,,Creeper,,,Diesel,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,36001,(GUZZLER),-1,6900,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,491,0,10,Maserati,Quattroporte,N,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.8889,0.0,13.0,0.0,Midsize Cars,1985,-22500,T,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4910,0,0,Isuzu,Pickup 2WD 1-Ton,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4911,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1988,-3250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,4912,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4913,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1988,-1750,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4914,0,0,Jeep,Comanche 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1988,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4915,0,0,Jeep,Comanche 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4916,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Standard Pickup Trucks,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57087,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4917,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4918,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4919,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,492,0,15,Mercedes-Benz,500SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Midsize Cars,1985,-9250,T,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4920,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4923,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4921,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(305) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4922,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4923,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4924,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4925,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4926,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4927,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4928,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-5500,,,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4929,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1988,-6500,,Creeper,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,493,16,16,Oldsmobile,Cutlass Ciera,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4930,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4931,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4932,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4923,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4933,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(305) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4934,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4935,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4936,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4937,0,0,Chevrolet,K20 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4938,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4939,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,494,16,16,Oldsmobile,Cutlass Ciera,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4940,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-5500,,,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4941,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4942,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,4943,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Standard Pickup Trucks,1988,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4944,0,0,Chevrolet,T10 (S10) Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4945,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,4946,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4947,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4948,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Standard Pickup Trucks,1988,-4250,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4949,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4422,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,495,16,16,Oldsmobile,Cutlass Ciera,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4950,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2972,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4951,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2942,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4952,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2972,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,4953,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4954,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4955,0,0,Dodge,Power Ram50 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4956,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4957,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-11000,,Creeper,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4958,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Standard Pickup Trucks,1988,-18500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4959,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1988,-13000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4402,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,496,16,16,Oldsmobile,Cutlass Ciera,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4960,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4961,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-11000,,Creeper,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,4962,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Standard Pickup Trucks,1988,-18500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4963,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1988,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4964,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,20.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3836,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4965,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3835,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4966,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4967,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3924,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,4968,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3930,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4969,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.9487,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,497,16,16,Oldsmobile,Cutlass Ciera,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3928,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4970,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3925,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4971,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1988,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3951,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4972,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4973,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1988,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3928,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4974,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3950,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4975,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,18.0,0.0,Standard Pickup Trucks,1988,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4976,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4977,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4978,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4923,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,4979,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,498,16,15,Oldsmobile,Cutlass Supreme,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(305) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4980,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4981,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4982,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4983,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4984,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4985,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4986,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-5500,,,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4987,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1988,-6500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4988,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4989,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4305,,-1,2600,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,499,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.7436,0.0,Midsize Cars,1985,-1000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4990,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4923,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,4991,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1988,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4930,(305) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,4992,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4993,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,4994,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4995,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,4996,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1988,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,4997,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1988,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,4998,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-5500,,,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,4999,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38043,"(GUZZLER) (FFS,TRBO)",-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,23,50,5,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Two Seaters,1985,-5250,T,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,50,11,0,Audi,Coupe GT,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4326,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,500,16,15,Oldsmobile,Cutlass Supreme,Y,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4900,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5000,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Standard Pickup Trucks,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4901,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5001,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Standard Pickup Trucks,1988,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5002,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5003,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4912,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5004,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5005,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5006,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5007,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5008,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5009,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1988,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4327,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,501,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5010,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5011,0,0,Jeep,Comanche 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1988,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5012,0,0,Jeep,Comanche 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1988,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1942,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5013,0,0,Jeep,J-10 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1988,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5014,0,0,Jeep,J-10 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1988,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5015,0,0,Jeep,J-20 Pickup Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1988,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5016,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5017,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1988,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5018,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1988,-4250,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5019,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Standard Pickup Trucks,1988,-1750,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,502,16,15,Oldsmobile,Cutlass Supreme,N,false,98,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Midsize Cars,1985,-2000,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57098,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5020,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1988,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57098,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5021,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1988,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5022,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Vans,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5023,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Vans,1988,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5024,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1988,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4828,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5025,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1988,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5026,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Vans,1988,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5027,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5028,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,24.359,0.0,Vans,1988,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5029,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Vans,1988,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Front-Wheel Drive,4320,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,503,15,0,Oldsmobile,Toronado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.2051,0.0,Midsize Cars,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4836,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5030,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1988,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4835,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5031,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Vans,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5032,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Vans,1988,-6250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5033,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1988,-4500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5034,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Vans,1988,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5035,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5036,0,0,Nissan,Van (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Vans,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5037,0,0,Nissan,Van (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1988,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5038,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5039,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Front-Wheel Drive,4340,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,504,15,0,Oldsmobile,Toronado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize Cars,1985,-2000,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5040,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Vans,1988,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5041,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5042,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.7949,0.0,Vans,1988,-7750,,Lockup A3,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5043,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0769,0.0,Vans,1988,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5044,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1988,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5045,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5046,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1988,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5047,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1988,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3804,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5048,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Vans,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3800,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5049,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Vans,1988,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,505,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3812,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5050,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Vans,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3810,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5051,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Vans,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3818,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5052,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3910,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5053,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1988,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3942,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5054,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,18.0,0.0,Vans,1988,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3815,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5055,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1988,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3911,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5056,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1988,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3942,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5057,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1988,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5058,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,24.359,0.0,Vans,1988,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5059,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,506,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize Cars,1985,-3750,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5060,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,24.359,0.0,Vans,1988,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5061,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Vans,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4836,(305) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5062,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1988,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4835,(305) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5063,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Vans,1988,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5064,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Vans,1988,-6250,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5065,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1988,-4500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5066,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Vans,1988,-3500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5067,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5068,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Vans,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5069,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Vans,1988,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,507,0,17,Plymouth,Caravelle,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5070,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1988,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4828,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5071,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1988,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5072,0,0,Mitsubishi,Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Vans,1988,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5073,0,0,Toyota,Van 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5074,0,0,Toyota,Van 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.0,0.0,Vans,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5075,0,0,Toyota,Van 4WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Vans,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5076,0,0,Toyota,Van 4WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,28.2051,0.0,Vans,1988,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5077,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1988,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4828,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5078,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1988,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5079,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2500,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,508,0,16,Plymouth,Gran Fury,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-5750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5080,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4836,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5081,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Vans,1988,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5082,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1988,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5083,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Vans,1988,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5084,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Vans,1988,-4500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5085,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Vans,1988,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38085,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5086,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5087,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1988,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5088,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5089,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2600,(POLICE) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,509,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1985,-13250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5090,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Vans,1988,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5091,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,16.6667,0.0,Vans,1988,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS) Lock-up,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5092,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.7949,0.0,Vans,1988,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5093,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Vans,1988,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5094,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1988,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5095,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,16.6667,0.0,Vans,1988,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2883,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5096,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1988,-9250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5097,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,14.1026,0.0,Vans,1988,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3802,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5098,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Vans,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3801,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5099,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Vans,1988,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,51,11,0,Audi,Coupe GT,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1985,-2500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,510,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Midsize Cars,1985,0,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3815,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5100,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1988,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3819,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5101,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1988,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3910,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5102,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1988,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3942,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5103,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1988,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5104,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Vans,1988,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5105,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Vans,1988,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4836,(305) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5106,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Vans,1988,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5107,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1988,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5108,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Vans,1988,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5109,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Vans,1988,-4500,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,511,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5110,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Vans,1988,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5111,0,0,GMC,Safari 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1988,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4828,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5112,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1988,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5113,0,0,Mitsubishi,Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Vans,1988,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5114,0,0,Toyota,Van 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1988,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5115,0,0,Toyota,Van 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.0,0.0,Vans,1988,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5116,0,0,Toyota,Van 4WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Vans,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5117,0,0,Toyota,Van 4WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,28.0,0.0,Vans,1988,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59008,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5118,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,20.0,0.0,Vans,1988,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59008,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5119,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1988,-6250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,512,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.3077,0.0,Midsize Cars,1985,1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59008,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5120,0,0,Volkswagen,Vanagon/Camper 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.0,0.0,Vans,1988,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5121,0,0,Chevrolet,R10 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1988,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5122,0,0,Chevrolet,R10 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-5500,,CLKUP,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5123,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Special Purpose Vehicle 2WD,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5124,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1988,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5125,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5126,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5127,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1988,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4829,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5128,0,0,Chevrolet,S10 Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2851,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5129,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,513,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.3333,0.0,Midsize Cars,1985,-500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5130,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS) Lock-up,-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5131,0,0,Dodge,AD100/AD150 Ramcharger 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1988,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5132,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1988,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5133,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1988,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2832,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5134,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1988,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2851,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5135,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3762,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5136,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1988,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3760,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5137,0,0,Ford,Bronco II 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1988,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4843,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5138,0,0,GMC,R15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1988,-9250,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4853,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5139,0,0,GMC,R15 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-5500,,CLKUP,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,514,15,15,Plymouth,Reliant,N,false,96,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,31.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5140,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Special Purpose Vehicle 2WD,1988,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5141,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1988,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5142,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5143,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5144,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1988,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4829,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5145,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,24601,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5146,0,0,Grumman Allied Industries,LLV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicle 2WD,1988,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5147,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1988,-3250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5148,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1988,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1825,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5149,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1988,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,515,0,17,Pontiac,Bonneville,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5150,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1988,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5151,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1988,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5152,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1988,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2832,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5153,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1988,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2851,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5154,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1988,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1942,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5155,0,0,Eagle,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5156,0,0,Chevrolet,T10 (S10) Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5157,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4913,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5158,0,0,Chevrolet,T10 (S10) Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Special Purpose Vehicles,1988,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5159,0,0,Chevrolet,T10 (S10) Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,516,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4944,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5160,0,0,Chevrolet,V10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5161,0,0,Chevrolet,V10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1988,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5162,0,0,Chevrolet,V10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4944,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5163,0,0,Chevrolet,V10 Suburban 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1988,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5164,0,0,Chevrolet,V10 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1988,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5165,0,0,Chevrolet,V10 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5166,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1988,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5167,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-7750,,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5168,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1988,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,38084,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5169,0,0,Nissan,Stanza Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,517,0,17,Pontiac,Bonneville,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Midsize Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,38084,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5170,0,0,Nissan,Stanza Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1988,-2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5171,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1988,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5172,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1988,-11000,,Creeper,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5173,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,14.0,0.0,Special Purpose Vehicles,1988,-18500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2994,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5174,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicles,1988,-13000,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5175,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Special Purpose Vehicles,1988,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5176,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5177,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Special Purpose Vehicles,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3781,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5178,0,0,Ford,Bronco II 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1988,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3782,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5179,0,0,Ford,Bronco II 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1988,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,518,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3831,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5180,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.2308,0.0,Special Purpose Vehicles,1988,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3836,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5181,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Special Purpose Vehicles,1988,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5182,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1988,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3834,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5183,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1988,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3929,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5184,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Special Purpose Vehicles,1988,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3928,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5185,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1988,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3926,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5186,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,17.9487,0.0,Special Purpose Vehicles,1988,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3950,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5187,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,18.0,0.0,Special Purpose Vehicles,1988,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4910,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5188,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5189,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,519,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4913,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5190,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Special Purpose Vehicles,1988,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5191,0,0,GMC,T15 (S15) Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4944,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5192,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5193,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1988,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5194,0,0,GMC,V15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4944,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5195,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1988,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4943,(350 V8) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5196,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1988,-13000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4952,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5197,0,0,GMC,V15 Suburban 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-6500,,CLKUP,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5198,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1988,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5199,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1988,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.1,4-Wheel or All-Wheel Drive,64021,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,52,8,0,Audi,Quattro,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,520,16,0,Pontiac,Grand Prix,N,false,98,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5200,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1988,-3250,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5201,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Special Purpose Vehicles,1988,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5202,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Special Purpose Vehicles,1988,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5203,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1988,-5250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1940,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5204,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1988,-3250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1959,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5205,0,0,Jeep,Grand Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1988,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1925,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5206,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1988,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5207,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1942,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5208,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,27.0,0.0,Special Purpose Vehicles,1988,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.5,4-Wheel or All-Wheel Drive,46001,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5209,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicles,1988,-11250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,521,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Midsize Cars,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5210,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,21.7949,0.0,Special Purpose Vehicles,1988,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5211,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,24.359,0.0,Special Purpose Vehicles,1988,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5212,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Special Purpose Vehicles,1988,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5213,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.7778,0.0,37.1795,0.0,Special Purpose Vehicles,1988,500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66080,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5214,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Special Purpose Vehicles,1988,2250,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5215,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.7692,0.0,Special Purpose Vehicles,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5216,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1988,0,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5217,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,29.0,0.0,Special Purpose Vehicles,1988,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5218,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1988,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5219,0,0,Suzuki,Samurai Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.1795,0.0,Special Purpose Vehicles,1988,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,522,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5220,0,0,Suzuki,Samurai Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.1795,0.0,Special Purpose Vehicles,1988,1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,57095,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5221,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1988,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5222,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Special Purpose Vehicles,1988,-5250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5223,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1988,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57098,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5224,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1988,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57098,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5225,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1988,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4870,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5226,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1988,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5227,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5228,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1988,-7750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5229,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1988,-13000,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,523,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5230,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1988,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2872,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5231,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1988,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5232,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1988,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2871,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5233,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1988,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2894,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5234,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicle 2WD,1988,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4812,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5235,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,21.0,0.0,Special Purpose Vehicle 2WD,1988,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5236,0,0,GMC,S15 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1988,-7750,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5237,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1988,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57086,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5238,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,19.0,0.0,Special Purpose Vehicle 2WD,1988,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9001,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5239,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Two Seaters,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,524,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.0,0.0,Midsize Cars,1985,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,12701,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5240,0,0,Bertone,X1/9,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Two Seaters,1989,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5241,0,0,Buick,Reatta,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Two Seaters,1989,-1750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4620,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5242,0,0,Cadillac,Allante,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,29.0,0.0,Two Seaters,1989,-6750,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5243,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Two Seaters,1989,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5244,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0513,0.0,Two Seaters,1989,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5245,0,0,Chevrolet,Corvette Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Two Seaters,1989,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5246,0,0,Chevrolet,Corvette Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0513,0.0,Two Seaters,1989,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2001,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5247,0,0,Chrysler,TC By,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Two Seaters,1989,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2004,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5248,0,0,Chrysler,TC By,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Two Seaters,1989,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2002,"(GUZZLER) (FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5249,0,0,Chrysler,TC By,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Two Seaters,1989,-5750,T,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4140,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,525,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Midsize Cars,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2003,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5250,0,0,Chrysler,TC By,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Two Seaters,1989,-5750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38051,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,23,49,5251,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Two Seaters,1989,-2500,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38052,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,5252,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1989,-3250,,2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38052,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,5253,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1989,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38051,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,49,5254,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1989,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,21110,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5255,0,0,Environmental Rsch and Devp Corp,ERD 1,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,23.0,0.0,Two Seaters,1989,-6750,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22201,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5256,0,0,Evans Automobiles,Series I,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Two Seaters,1989,-2500,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5257,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1989,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5258,0,0,Ferrari,328 GTS/GTB,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1989,-7750,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5259,0,0,Ferrari,348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,24.359,0.0,Two Seaters,1989,-9500,T,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,526,16,16,Pontiac,6000,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize Cars,1985,500,,,,,Diesel,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5260,0,0,Honda,Civic CRX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,46.0,0.0,Two Seaters,1989,2250,,2LKUP,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,5261,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,52.0,0.0,Two Seaters,1989,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5262,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Two Seaters,1989,1500,,,,,,,,, +7.47116,0.0,0.0,0.0,41,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,201.97727272727272,44,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26011,(FFS),-1,1250,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,0,0,5263,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,55.7061,0.0,71.2278,0.0,Two Seaters,1989,5750,,SIL,,,,,,, +8.02051,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26011,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,0,0,5264,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,67.0,0.0,Two Seaters,1989,5250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30566,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5265,0,0,Jaguar,XJS Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,21.0,0.0,Two Seaters,1989,-9250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30565,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5266,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,21.0,0.0,Two Seaters,1989,-9250,T,,,,,,,, +47.068308,0.0,0.0,0.0,6,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1269.5714285714287,7,0.0,0,0.0,0.0,0.0,0.0,12,5.2,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,8600,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5267,8,0,Lamborghini,Countach,N,false,45,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,7.0,0.0,13.0,0.0,Two Seaters,1989,-31000,T,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"GMP4 (FFS,TRBO) (MPFI)",-1,3550,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5268,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Two Seaters,1989,-5750,,EMS,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35002,"(GMP4+IC) (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5269,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1989,-3750,,EMS,T,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44020,(GUZZLER) (FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,527,0,15,Rolls-Royce,Silver Spirit/Spur/Mulsanne,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,10.0,0.0,13.0,0.0,Midsize Cars,1985,-18500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35010,"(GMP4) (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5270,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.8974,0.0,Two Seaters,1989,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36009,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5271,0,0,Maserati,Karif,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Two Seaters,1989,-9500,T,VLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36008,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5272,0,0,Maserati,Karif,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Two Seaters,1989,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36009,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5273,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Two Seaters,1989,-8000,T,VLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36008,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5274,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Two Seaters,1989,-8000,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5275,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Two Seaters,1989,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5276,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1989,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56015,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5277,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Two Seaters,1989,-4250,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5278,0,0,Mercedes-Benz,560SL,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Two Seaters,1989,-9500,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5279,0,0,Subaru,XT-DL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Two Seaters,1989,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,528,0,17,Volvo,740/760,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1985,-3250,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57004,(4A-GE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5280,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.0,0.0,Two Seaters,1989,500,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57005,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5281,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.0,0.0,Two Seaters,1989,-1750,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57005,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5282,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Two Seaters,1989,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,57004,(4A-GE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5283,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,40.0,0.0,Two Seaters,1989,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.2,Rear-Wheel Drive,22010,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5284,3,0,Ferrari,3.2 Mondial/Cabriolet,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Minicompact Cars,1989,-7750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36008,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5285,7,0,Maserati,225,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Minicompact Cars,1989,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36009,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5286,7,0,Maserati,222E,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Minicompact Cars,1989,-8000,T,VLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,42020,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5287,4,0,Porsche,911 Carrera,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Minicompact Cars,1989,-3750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42025,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5288,4,0,Porsche,911 Carrera,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,25.0,0.0,Minicompact Cars,1989,-9500,T,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42045,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5289,4,0,Porsche,911 Carrera 4,Y,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,28.0,0.0,Minicompact Cars,1989,-6750,T,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,529,0,17,Volvo,740/760,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,32.0,0.0,Midsize Cars,1985,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42026,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5290,4,0,Porsche,911 Turbo,N,false,56,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.9231,0.0,Minicompact Cars,1989,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,5291,0,0,Porsche,928 S4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Minicompact Cars,1989,-8000,T,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,74,5292,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Minicompact Cars,1989,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42031,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,74,5293,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,24.359,0.0,Minicompact Cars,1989,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,42010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,63,5294,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Minicompact Cars,1989,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.7,Rear-Wheel Drive,42010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,5295,0,0,Porsche,944,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Minicompact Cars,1989,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,63,5296,0,0,Porsche,944 S2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Minicompact Cars,1989,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,42015,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,5297,0,0,Porsche,944 Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Minicompact Cars,1989,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5298,9,0,Toyota,Celica Convertible,N,false,73,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1989,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5299,9,0,Toyota,Celica Convertible,Y,false,73,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1989,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64019,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,53,13,13,Audi,4000s,N,false,86,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,34.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,530,0,17,Volvo,740/760,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize Cars,1985,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,59577,(GUZZLER) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5300,4,0,Porsche,911 Carrera,N,false,40,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,33.3333,0.0,Minicompact Cars,1989,-4750,T,EMS,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5301,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Minicompact Cars,1989,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59003,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5302,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,35.0,0.0,Minicompact Cars,1989,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,79,5303,0,0,Acura,Integra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1989,500,,2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26021,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,79,5304,0,0,Acura,Integra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5305,0,9,Alfa Romeo,Milano,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1989,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,9015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5306,0,9,Alfa Romeo,Milano,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,9010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5307,0,9,Alfa Romeo,Milano,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5308,0,9,Aston Martin,Lagonda,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1989,-18500,T,,,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5309,7,0,Aston Martin,Saloon/Vantage/Volante,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1989,-18500,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,531,0,17,Volvo,740/760,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1985,-2500,,SIL,T,,,,,, +36.608684000000004,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,5310,7,0,Aston Martin,Saloon/Vantage/Volante,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,9.0,0.0,14.0,0.0,Subcompact Cars,1989,-18500,T,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5311,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Subcompact Cars,1989,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5312,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1989,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5313,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5314,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5315,0,8,Audi,80/90 quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12050,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5316,12,0,BMW,M3,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,37.0,0.0,Subcompact Cars,1989,-4750,,,,,,,,, +27.4675,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12070,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5317,12,0,BMW,M6,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,24.0,0.0,Subcompact Cars,1989,-13250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5318,9,0,BMW,325i Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5319,9,0,BMW,325i Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60050,"(DSL,TRBO)",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,532,0,17,Volvo,740/760,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,34.0,0.0,Midsize Cars,1985,-1000,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5320,12,12,BMW,325i/325is,Y,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5321,12,12,BMW,325i/325is,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5322,12,12,BMW,325ix,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5323,12,12,BMW,325ix,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5324,12,0,BMW,635csi,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Subcompact Cars,1989,-6250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5325,12,0,BMW,635csi,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Subcompact Cars,1989,-5250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4103,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,5326,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1989,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4122,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5327,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5328,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4105,(GM-CHEV) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5329,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1989,-4750,,CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,6,2.4,Rear-Wheel Drive,60050,"(DSL,TRBO)",-1,2450,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,533,0,17,Volvo,740/760,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.0,0.0,Midsize Cars,1985,-250,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5330,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1989,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4107,(GM-CHEV) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5331,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,33.3333,0.0,Subcompact Cars,1989,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4101,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5332,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1989,-4750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5333,10,0,Chevrolet,Cavalier Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Subcompact Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5334,10,0,Chevrolet,Cavalier Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,37.0,0.0,Subcompact Cars,1989,-1750,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,5335,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,5336,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1989,5250,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54009,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,79,5337,0,0,Chevrolet,Turbo Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1989,4000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,5338,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,10,76,5339,0,0,Chrysler,Conquest,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60040,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,534,0,17,Volvo,740/760,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Midsize Cars,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5340,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1989,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5341,10,0,Chrysler,LeBaron Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5342,10,0,Chrysler,LeBaron Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5343,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5344,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1989,-3750,,,T,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,19001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,5345,0,0,Daihatsu,Charade,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19002,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,79,5346,0,0,Daihatsu,Charade,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,44.0,0.0,Subcompact Cars,1989,2500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19002,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,79,5347,0,0,Daihatsu,Charade,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1989,3500,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19002,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,5348,0,0,Daihatsu,Charade E,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5349,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4405,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,535,16,16,Buick,Electra/Park Avenue,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38012,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5350,7,0,Nissan,Pulsar NX,Y,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5351,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1989,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5352,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,72,5353,0,0,Nissan,Sentra Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,72,5354,0,0,Nissan,Sentra Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Subcompact Cars,1989,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,14,71,5355,9,0,Nissan,240SX,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,71,5356,9,0,Nissan,240SX,Y,false,71,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1989,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38051,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,72,5357,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1989,-2500,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38051,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,72,5358,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,84,5359,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,536,16,16,Buick,Electra/Park Avenue,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Large Cars,1985,-2500,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,84,5360,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,49.0,0.0,Subcompact Cars,1989,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,5361,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.8718,0.0,Subcompact Cars,1989,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,5362,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1989,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,5363,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Subcompact Cars,1989,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,5364,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,5365,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,83,5366,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Subcompact Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,5367,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1989,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5368,10,0,Dodge,Shadow Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Subcompact Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5369,10,0,Dodge,Shadow Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4300,,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,537,16,16,Buick,Electra/Park Avenue,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5370,10,0,Dodge,Shadow Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5371,10,0,Dodge,Shadow Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5372,10,0,Dodge,Shadow Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Subcompact Cars,1989,500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22025,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5373,4,0,Ferrari,Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.0,0.0,Subcompact Cars,1989,-11250,T,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3060,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,12,87,5374,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,SIL,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3061,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,12,87,5375,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1989,4250,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,87,5376,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,40.0,0.0,Subcompact Cars,1989,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,83,5377,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1989,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,5378,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1989,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,83,5379,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4416,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,538,21,21,Buick,LeSabre,Y,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Large Cars,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3402,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,5380,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1989,-3250,,,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS) (SPFI),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,5381,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.1796,0.0,74.6589,0.0,Subcompact Cars,1989,6250,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,5382,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,5383,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1989,5250,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,82,5384,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,35.8974,0.0,Subcompact Cars,1989,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,82,5385,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1989,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,5386,0,11,Geo,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,5387,0,11,Geo,Spectrum,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1989,3750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,5388,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Subcompact Cars,1989,1500,,2LKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,85,5389,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.0,0.0,49.0,0.0,Subcompact Cars,1989,3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4327,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,539,21,21,Buick,LeSabre,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,1985,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,85,5390,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1989,2500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26020,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,85,5391,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26040,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5392,11,0,Honda,Prelude,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1989,-1750,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26040,(FFS) 2 barrel carb,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5393,11,0,Honda,Prelude,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Subcompact Cars,1989,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26041,(FFS) fuel injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5394,11,0,Honda,Prelude,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Subcompact Cars,1989,-1750,,2MODE 3LKUP,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26041,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5395,11,0,Honda,Prelude,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,33.3333,0.0,Subcompact Cars,1989,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,82,5396,0,11,Hyundai,Excel,Y,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Subcompact Cars,1989,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,82,5397,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1989,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,82,5398,0,11,Hyundai,Excel,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,85,5399,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,64019,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,54,13,13,Audi,4000s,N,false,86,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,540,21,21,Buick,LeSabre,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,85,5400,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1989,3750,,SIL,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,85,5401,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.6667,0.0,50.0,0.0,Subcompact Cars,1989,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29011,"(FFS,TRBO)",-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,85,5402,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,43.0,0.0,Subcompact Cars,1989,1500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,85,5403,0,11,Isuzu,I-Mark,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,41.0256,0.0,Subcompact Cars,1989,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,5404,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1989,-1750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,77,5405,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1989,-1000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,5406,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,77,5407,0,0,Isuzu,Impulse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1989,-1750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30560,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5408,11,0,Jaguar,XJS Coupe,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,21.7949,0.0,Subcompact Cars,1989,-9250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30561,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5409,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1989,-9250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Rear-Wheel Drive,4604,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,541,20,20,Cadillac,Fleetwood Brougham (RWD),N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Large Cars,1985,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36009,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5410,0,14,Maserati,430,N,false,0,72,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Subcompact Cars,1989,-9500,T,VLKUP,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36008,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5411,0,14,Maserati,430,N,false,0,72,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Subcompact Cars,1989,-8000,T,,T,,,,,, +14.140845,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20010,(NO-CAT),-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5412,0,12,Mercedes-Benz,190D 2.5,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.1111,0.0,42.0,0.0,Subcompact Cars,1989,1000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5413,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1989,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5414,0,12,Mercedes-Benz,190E 2.6,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1989,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5415,14,0,Mercedes-Benz,300CE,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1989,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,5416,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Subcompact Cars,1989,1000,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,84,5417,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,49.0,0.0,Subcompact Cars,1989,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,5418,0,10,Mitsubishi,Mirage,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,45.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,5419,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1989,-1000,,,T,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,542,20,20,Cadillac,Fleetwood Brougham (RWD),N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,82,5420,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Subcompact Cars,1989,1500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,82,5421,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,42.3077,0.0,Subcompact Cars,1989,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26510,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,82,5422,0,11,Mitsubishi,Precis,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,76,5423,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49050,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,10,76,5424,0,0,Mitsubishi,Starion,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1989,-4750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,43101,"(FFS,TRBO) (MPFI)",-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,5425,0,0,Pontiac,20th Anniversary Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1989,-4250,,CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,84,5426,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,39.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,12,84,5427,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,49.0,0.0,Subcompact Cars,1989,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,5428,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.8718,0.0,Subcompact Cars,1989,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,"(FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,5429,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.1795,0.0,Subcompact Cars,1989,-1000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,543,16,16,Cadillac,Fleetwood/DeVille (FWD),Y,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1985,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5430,10,0,Plymouth,Sundance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Subcompact Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5431,10,0,Plymouth,Sundance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5432,10,0,Plymouth,Sundance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5433,10,0,Plymouth,Sundance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5434,10,0,Plymouth,Sundance Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Subcompact Cars,1989,500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4103,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,5435,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1989,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4122,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5436,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5437,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4105,(GM-CHEV) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5438,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Subcompact Cars,1989,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5439,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1989,-3250,,SIL,,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4300,,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,544,16,16,Cadillac,Fleetwood/DeVille (FWD),N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4107,(GM-CHEV) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,5440,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,33.3333,0.0,Subcompact Cars,1989,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4101,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,5441,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1989,-4750,,CLKUP,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,5442,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,5443,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,5444,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1989,5250,,SIL,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,5445,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1989,5250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4116,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5446,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4114,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5447,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1989,-2250,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4116,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5448,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Subcompact Cars,1989,500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4104,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5449,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Subcompact Cars,1989,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.1,Front-Wheel Drive,4602,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,545,0,16,Cadillac,Limousine,N,false,0,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Large Cars,1985,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5450,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,42.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29010,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,0,0,5451,0,11,Pontiac,Sunburst,N,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,52.0,0.0,Subcompact Cars,1989,3750,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54009,"(FFS,TRBO)",-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,79,5452,0,0,Pontiac,Turbo Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1989,4000,,,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44027,(GUZZLER) (FFS) (MPFI),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,5453,10,0,Rolls-Royce,Continental,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Subcompact Cars,1989,-15500,T,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44027,(GUZZLER) (FFS) (MPFI),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,5454,10,0,Rolls-Royce,Corniche II,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Subcompact Cars,1989,-15500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47026,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5455,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1989,-3250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47022,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5456,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1989,-500,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,47201,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,12,96,5457,0,0,Saleen,SSC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,29.0,0.0,Subcompact Cars,1989,-5250,T,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,78,5458,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0513,0.0,Subcompact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,11,78,5459,0,0,Subaru,Hatchback,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4162,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,546,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Large Cars,1985,-3250,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,9,80,5460,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.0,0.0,44.0,0.0,Subcompact Cars,1989,2750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,9,80,5461,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.7778,0.0,47.0,0.0,Subcompact Cars,1989,3000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,80,5462,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1989,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5463,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,39.0,0.0,Subcompact Cars,1989,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5464,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5465,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1989,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5466,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Subcompact Cars,1989,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5467,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5468,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1989,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5469,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4162,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,547,21,21,Chevrolet,Impala/Caprice,Y,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1985,-2500,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54007,(FFS) (SPFI),-1,1600,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,5470,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,51.0,0.0,Subcompact Cars,1989,4000,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54007,(FFS) (SPFI),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,5471,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1989,5250,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,82,5472,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,43.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54008,(FFS) (SPFI),-1,1550,0,Regular,Regular Gasoline,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,10,82,5473,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,57.0,0.0,Subcompact Cars,1989,4250,,SIL,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54010,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,10,79,5474,0,0,Suzuki,Swift GA,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,57.6923,0.0,Subcompact Cars,1989,4250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54005,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,82,5475,0,0,Suzuki,Swift GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Subcompact Cars,1989,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54005,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,82,5476,0,0,Suzuki,Swift GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57007,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,5477,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1989,-500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,79,5478,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57008,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,79,5479,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.0,0.0,Subcompact Cars,1989,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,548,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1985,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,79,5480,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57007,(3S-GE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,79,5481,12,0,Toyota,Celica,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5482,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Subcompact Cars,1989,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5483,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5484,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Subcompact Cars,1989,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57003,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5485,12,11,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57003,(4A-FE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5486,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Subcompact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(4A-GE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5487,12,11,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Subcompact Cars,1989,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57011,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,5488,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1989,-4750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,5489,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1989,-4750,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4172,(350 V8) (POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,549,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,24.0,0.0,Large Cars,1985,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57011,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,11,74,5490,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Subcompact Cars,1989,-5750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,5491,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1989,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,80,5492,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,13,80,5493,11,0,Toyota,Tercel,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,39.0,0.0,53.0,0.0,Subcompact Cars,1989,3750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,13,80,5494,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,48.0,0.0,Subcompact Cars,1989,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5495,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1989,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5496,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1989,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.1,Front-Wheel Drive,61412,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,6,80,5497,0,0,Yugo,GV/GVX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,40.0,0.0,Subcompact Cars,1989,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,61414,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,6,80,5498,0,0,Yugo,GV/GVX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Subcompact Cars,1989,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26050,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5499,15,14,Acura,Legend,Y,false,86,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1989,-3250,,2MODE 3LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64027,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,55,0,10,Audi,4000s quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1985,-3250,,SIL,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,550,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26050,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5500,15,14,Acura,Legend,Y,false,86,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5501,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5502,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5503,0,13,BMW,525i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5504,0,13,BMW,525i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5505,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Compact Cars,1989,-6250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12057,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5506,0,13,BMW,535i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Compact Cars,1989,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5507,0,13,BMW,535i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Compact Cars,1989,-5250,T,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5508,13,13,Buick,Skyhawk,Y,false,84,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0,0.0,Compact Cars,1989,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5509,13,13,Buick,Skyhawk,N,false,84,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1989,1500,,SIL,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,551,21,21,Chevrolet,Impala/Caprice,N,false,106,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5510,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5511,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5512,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1989,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5513,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5514,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1989,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5515,14,0,Chevrolet,Beretta,Y,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Compact Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5516,14,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,37.0,0.0,Compact Cars,1989,-1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5517,13,14,Chevrolet,Cavalier,Y,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0,0.0,Compact Cars,1989,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5518,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,46.0,0.0,Compact Cars,1989,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5519,13,14,Chevrolet,Cavalier,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Compact Cars,1989,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,552,22,22,Ford,LTD Crown Victoria,Y,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Large Cars,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5520,13,14,Chevrolet,Cavalier,Y,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,37.0,0.0,Compact Cars,1989,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5521,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Compact Cars,1989,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5522,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Compact Cars,1989,-4750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5523,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5524,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Compact Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5525,14,15,Chrysler,LeBaron,N,false,90,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1989,-2250,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,89,5526,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Compact Cars,1989,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,89,5527,12,12,Nissan,Sentra,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,45.0,0.0,Compact Cars,1989,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,15,89,5528,12,12,Nissan,Sentra,Y,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1989,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,89,5529,0,12,Nissan,Stanza,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,34.0,0.0,Compact Cars,1989,-1000,,2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3440,(POLICE) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,553,22,22,Ford,LTD Crown Victoria,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0769,0.0,Large Cars,1985,-9250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,89,5530,0,12,Nissan,Stanza,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.8974,0.0,Compact Cars,1989,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,5531,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,5532,0,0,Dodge,Omni,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1989,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5533,13,13,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5534,13,13,Dodge,Shadow,Y,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Compact Cars,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5535,13,13,Dodge,Shadow,Y,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Compact Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5536,13,13,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5537,13,13,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5538,13,13,Dodge,Shadow,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Compact Cars,1989,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5539,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,38.0,0.0,Compact Cars,1989,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,554,22,22,Mercury,Grand Marquis,N,false,110,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Large Cars,1985,-4250,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5540,0,10,Eagle,Summit,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,45.0,0.0,Compact Cars,1989,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49015,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5541,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Compact Cars,1989,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49015,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5542,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Compact Cars,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3141,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,85,5543,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,40.0,0.0,Compact Cars,1989,1000,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,18,85,5544,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,54.0,0.0,Compact Cars,1989,3500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,85,5545,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Compact Cars,1989,1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,85,5546,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1989,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,5547,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,38.0,0.0,Compact Cars,1989,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,5548,0,15,Ford,Laser,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1989,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3182,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,91,5549,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1989,-500,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,555,0,22,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Large Cars,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3180,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,91,5550,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Compact Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3181,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,91,5551,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5552,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5553,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Compact Cars,1989,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5554,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3202,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5555,13,13,Ford,Tempo AWD,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(FFS) 2 barrel carb,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,86,5556,14,14,Honda,Accord,Y,false,86,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,38.0,0.0,Compact Cars,1989,0,,3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26030,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,86,5557,14,14,Honda,Accord,N,false,86,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Compact Cars,1989,-500,,3LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,86,5558,14,14,Honda,Accord,Y,false,86,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Compact Cars,1989,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,30537,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5559,0,13,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Compact Cars,1989,-4750,,VLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,4416,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,556,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Large Cars,1985,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5560,13,13,Mercury,Topaz,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5561,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Compact Cars,1989,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5562,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3202,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5563,13,13,Mercury,Topaz AWD,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,88,5564,0,0,Mercury,Tracer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1989,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,14,88,5565,0,0,Mercury,Tracer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Compact Cars,1989,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3241,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,18,90,5566,0,0,Merkur,XR4Ti,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1989,-4250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3240,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,18,90,5567,0,0,Merkur,XR4Ti,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,32.0,0.0,Compact Cars,1989,-2500,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,5568,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,38.0,0.0,Compact Cars,1989,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,88,5569,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,38.0,0.0,Compact Cars,1989,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4328,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,557,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Large Cars,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,88,5570,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Compact Cars,1989,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,56031,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,88,5571,0,15,Mazda,323,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,31.0,0.0,Compact Cars,1989,-3000,,,T,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,88,5572,0,15,Mazda,323,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.3077,0.0,Compact Cars,1989,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20021,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5573,0,15,Mercedes-Benz,260E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.7692,0.0,Compact Cars,1989,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5574,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1989,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20031,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5575,0,15,Mercedes-Benz,300SE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Compact Cars,1989,-6750,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5576,15,0,Mercedes-Benz,560SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Compact Cars,1989,-11250,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(SOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5577,0,11,Mitsubishi,Galant,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,35.8974,0.0,Compact Cars,1989,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49045,(DOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5578,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(SOHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5579,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1989,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4327,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,558,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5580,0,12,Mitsubishi,Sigma,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5581,0,12,Mitsubishi,Sigma,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5582,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5583,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.8718,0.0,Compact Cars,1989,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5584,13,13,Oldsmobile,Cutlass Calais,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4117,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5585,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.3077,0.0,Compact Cars,1989,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5586,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1989,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5587,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41060,CALIF. ECS (FFS) (MPFI),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5588,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41050,16-VALVE (FFS) (MPFI),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5589,0,14,Peugeot,405 Sedan,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,35.0,0.0,Compact Cars,1989,-3000,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,559,21,21,Oldsmobile,Delta 88 Royale,Y,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41070,"16-V, CAL. (FFS) (MPFI)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5590,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1989,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5591,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Compact Cars,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41060,CALIF. ECS (FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5592,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41010,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5593,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1989,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41010,"(FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5594,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1989,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5595,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5596,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Compact Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41030,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5597,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1989,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,41030,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5598,0,11,Peugeot,505 Sedan,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Compact Cars,1989,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,85,5599,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,56,13,13,BMW,3 Series,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,34.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,560,21,21,Oldsmobile,Delta 88 Royale,N,false,107,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,85,5600,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Compact Cars,1989,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5601,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5602,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.0,0.0,Compact Cars,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5603,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Compact Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5604,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Compact Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5605,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Compact Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5606,13,13,Plymouth,Sundance,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Compact Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4114,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5607,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Compact Cars,1989,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4104,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5608,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Compact Cars,1989,-1750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5609,13,13,Pontiac,Grand Am,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Compact Cars,1989,500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4405,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,561,16,16,Oldsmobile,Ninety-Eight Regency,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1985,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5610,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,44.8718,0.0,Compact Cars,1989,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5611,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4117,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5612,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.3077,0.0,Compact Cars,1989,500,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4126,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,5613,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Compact Cars,1989,1500,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4115,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,19,89,5614,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,50.0,0.0,Compact Cars,1989,2500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4120,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,89,5615,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,51.0,0.0,Compact Cars,1989,2750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4123,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,89,5616,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,36.0,0.0,Compact Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4112,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,89,5617,0,18,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Compact Cars,1989,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4116,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5618,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Compact Cars,1989,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4114,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5619,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1989,-3000,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,562,16,16,Oldsmobile,Ninety-Eight Regency,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Large Cars,1985,-2500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4116,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5620,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.1538,0.0,Compact Cars,1989,1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4104,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5621,13,13,Pontiac,Sunbird,N,false,84,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.7436,0.0,Compact Cars,1989,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,88,5622,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,30.0,0.0,Compact Cars,1989,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,5623,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1989,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,5624,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1989,-500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47021,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,5625,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1989,-2250,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,5626,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1989,-500,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5627,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,31.0,0.0,Compact Cars,1989,-1000,,,T,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5628,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Compact Cars,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5629,0,15,Subaru,Sedan/3 Door,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1989,1000,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4300,,-1,2600,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,563,16,16,Oldsmobile,Ninety-Eight Regency,N,false,109,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,41.0,0.0,Large Cars,1985,-1000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5630,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1989,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5631,0,15,Subaru,Sedan/3Door 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Compact Cars,1989,-1000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57006,(3S-FE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5632,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Compact Cars,1989,-1000,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5633,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Compact Cars,1989,500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5634,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Compact Cars,1989,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5635,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1989,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57006,(3S-FE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5636,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,34.0,0.0,Compact Cars,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57009,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5637,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1989,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57009,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5638,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5639,0,12,Toyota,Cressida,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1989,-3750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4162,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,564,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Large Cars,1985,-3250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59006,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,18,87,5640,0,0,Volkswagen,Golf,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1989,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,5641,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,87,5642,0,0,Volkswagen,Golf,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,43.0,0.0,Compact Cars,1989,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,5643,0,0,Volkswagen,GTI 16v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1989,-500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59006,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,5644,17,17,Volkswagen,Jetta,Y,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Compact Cars,1989,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5645,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5646,17,17,Volkswagen,Jetta,N,false,87,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1989,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5647,0,17,Volkswagen,Jetta GLI 16v,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1989,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5648,0,14,Volvo,240 DL/240 GL,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5649,0,14,Volvo,240 DL/240 GL,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,31.0,0.0,Compact Cars,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4162,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,565,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5650,0,14,Volvo,240 DL/240 GL,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1989,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5651,0,14,Volvo,240 DL/240 GL,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1989,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5652,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Compact Cars,1989,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60060,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5653,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Compact Cars,1989,-4250,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,48109,"(FFS,TRBO) (MPFI)",-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,5654,0,0,Dodge,CSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Compact Cars,1989,-1750,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,10301,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5655,15,0,Pontiac,Grand Prix Turbo,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Midsize Cars,1989,-5750,,4MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5656,0,17,Audi,100,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.2051,0.0,Midsize Cars,1989,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5657,0,17,Audi,100,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize Cars,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5658,0,17,Audi,100 quattro,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64013,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5659,0,17,Audi,200,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.2051,0.0,Midsize Cars,1989,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,566,0,21,Pontiac,Parisienne,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64013,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5660,0,17,Audi,200,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5661,0,17,Audi,200 quattro,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Midsize Cars,1989,-3250,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5662,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Midsize Cars,1989,-6250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12057,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5663,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1989,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5664,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Midsize Cars,1989,-5250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5665,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Midsize Cars,1989,-6250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12057,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5666,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1989,-5250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12077,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5667,0,13,BMW,750il,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,22.0,0.0,Midsize Cars,1989,-9250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12078,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5668,0,13,BMW,750il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1989,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5669,16,16,Buick,Century,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,567,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,37.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5670,16,16,Buick,Century,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5671,16,16,Buick,Century,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5672,16,16,Buick,Century,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5673,16,16,Buick,Century,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5674,16,0,Buick,Regal,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4199,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5675,16,0,Buick,Regal,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5676,14,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5677,14,0,Cadillac,Eldorado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5678,0,14,Cadillac,Seville,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1989,-3250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5679,16,16,Chevrolet,Celebrity,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,568,0,21,Pontiac,Parisienne,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,38.0,0.0,Large Cars,1985,-2000,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5680,16,16,Chevrolet,Celebrity,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5681,16,16,Chevrolet,Celebrity,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,23,95,5682,0,14,Chevrolet,Corsica,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Midsize Cars,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,23,95,5683,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1989,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,23,95,5684,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,23,95,5685,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,37.0,0.0,Midsize Cars,1989,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5686,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,5687,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1989,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5688,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,96,5689,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44021,(GUZZLER) (FFS),-1,6900,0,Regular,Regular Gasoline,-1,-1,9,0.0,0,0.0,0.0,0.0,0.0,0,0,569,0,15,Rolls-Royce,Silver Spur Limousine,N,false,0,139,0,0.0,0.0,0.0,0.0,Automatic 3-spd,9.0,0.0,12.8205,0.0,Large Cars,1985,-22500,T,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5690,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5691,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,5692,0,0,Chrysler,LeBaron GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Midsize Cars,1989,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5693,0,16,Chrysler,New Yorker,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5694,0,16,Chrysler,Newport/Fifth Avenue,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1989,-5750,T,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38050,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5695,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1989,-3750,,3MODE VLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5696,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1989,-3000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5697,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Midsize Cars,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5698,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1989,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5699,15,15,Dodge,Aries,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,57,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,570,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5700,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0769,0.0,Midsize Cars,1989,-9500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5701,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1989,-5750,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5702,0,16,Dodge,Diplomat,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1989,-13250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5703,0,17,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,36.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5704,0,17,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5705,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,5706,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1989,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5707,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,18,96,5708,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5709,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,571,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,96,5710,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,18,96,5711,0,0,Dodge,Lancer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Midsize Cars,1989,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5712,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5713,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5714,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5715,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Midsize Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5716,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5717,0,14,Dodge,Spirit,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5718,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5719,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,572,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5720,0,17,Dodge,600,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5721,0,15,Eagle,Medallion Sedan,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Midsize Cars,1989,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5722,0,15,Eagle,Medallion Sedan,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Midsize Cars,1989,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3260,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5723,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,34.0,0.0,Midsize Cars,1989,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5724,0,17,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5725,0,17,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1989,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5726,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1989,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3383,(FFS) (S-CHARGE),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5727,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Midsize Cars,1989,-5750,,,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3343,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5728,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3382,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5729,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize Cars,1989,-4750,,,,S,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,573,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26520,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5730,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Midsize Cars,1989,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26520,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5731,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26530,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5732,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1989,-3250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3343,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5733,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Midsize Cars,1989,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3383,(FFS) (S-CHARGE),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5734,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Midsize Cars,1989,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3382,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5735,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize Cars,1989,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5736,14,0,Lincoln,Mark VII,Y,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1989,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5737,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5738,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1989,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3280,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,20,95,5739,0,0,Merkur,Scorpio,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1989,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,574,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3281,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,20,95,5740,0,0,Merkur,Scorpio,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Midsize Cars,1989,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36009,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5741,16,0,Maserati,228,N,false,109,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Midsize Cars,1989,-9500,T,VLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36008,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5742,16,0,Maserati,228,N,false,109,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Midsize Cars,1989,-9500,T,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,195,5743,14,15,Mazda,626/MX-6,Y,false,193,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize Cars,1989,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,195,5744,14,15,Mazda,626/MX-6,N,false,193,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,32.0,0.0,Midsize Cars,1989,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,195,5745,14,15,Mazda,626/MX-6,Y,false,193,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Midsize Cars,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,195,5746,14,15,Mazda,626/MX-6,N,false,193,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5747,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1989,-2500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5748,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Midsize Cars,1989,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20031,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5749,0,15,Mercedes-Benz,300SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Midsize Cars,1989,-6750,T,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,575,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20040,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5750,0,15,Mercedes-Benz,420SEL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Midsize Cars,1989,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5751,0,15,Mercedes-Benz,560SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Midsize Cars,1989,-11250,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5752,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5753,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5754,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5755,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5756,16,0,Oldsmobile,Cutlass Supreme,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5757,16,0,Oldsmobile,Cutlass Supreme,N,false,96,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,38.0,0.0,Midsize Cars,1989,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4199,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5758,16,0,Oldsmobile,Cutlass Supreme,N,false,96,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5759,14,0,Oldsmobile,Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,576,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Small Station Wagons,1985,500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5760,0,14,Plymouth,Acclaim,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5761,0,14,Plymouth,Acclaim,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5762,0,14,Plymouth,Acclaim,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5763,0,14,Plymouth,Acclaim,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5764,0,14,Plymouth,Acclaim,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,43.0,0.0,Midsize Cars,1989,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5765,0,14,Plymouth,Acclaim,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5766,0,16,Plymouth,Caravelle,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,35.8974,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5767,0,16,Plymouth,Caravelle,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1989,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5768,0,16,Plymouth,Caravelle,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,37.0,0.0,Midsize Cars,1989,-500,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2750,(POLICE) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5769,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,23.0769,0.0,Midsize Cars,1989,-9500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,577,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Small Station Wagons,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2710,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5770,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,28.0,0.0,Midsize Cars,1989,-5750,T,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2790,(POLICE) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5771,0,16,Plymouth,Gran Fury,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Midsize Cars,1989,-13250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5772,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,39.0,0.0,Midsize Cars,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,5773,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Midsize Cars,1989,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5774,15,15,Plymouth,Reliant,N,false,96,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5775,15,0,Pontiac,Grand Prix,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5776,15,0,Pontiac,Grand Prix,N,false,95,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,38.0,0.0,Midsize Cars,1989,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4199,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5777,15,0,Pontiac,Grand Prix,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5778,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize Cars,1989,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5779,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1989,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,578,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Small Station Wagons,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5780,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1989,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5781,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.0,0.0,Midsize Cars,1989,-3250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44027,(GUZZLER) (FFS) (MPFI),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,5782,0,15,Rolls-Royce,Eight/Mulsan,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Midsize Cars,1989,-15500,T,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5783,0,15,Rolls-Royce,Turbo R,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.6667,0.0,Midsize Cars,1989,-18250,T,,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44027,(GUZZLER) (FFS) (MPFI),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,5784,0,15,Rolls-Royce,Silver Spirit/Silver Spur,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Midsize Cars,1989,-15500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5785,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1989,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5786,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.0,0.0,Midsize Cars,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5787,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize Cars,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5788,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1989,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5789,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1989,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38040,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,579,0,31,Nissan,Maxima Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Small Station Wagons,1985,-4250,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5790,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1989,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(BENDIX) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5791,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Midsize Cars,1989,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5792,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize Cars,1989,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,5793,0,17,Volvo,760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1989,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60060,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5794,0,17,Volvo,760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Midsize Cars,1989,-4250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5795,0,16,Buick,Electra/Park Avenue,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5796,16,16,Buick,LeSabre,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1989,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5797,0,20,Cadillac,Brougham,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5798,16,16,Cadillac,Fleetwood/DeVille,Y,false,109,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Large Cars,1989,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4121,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5799,0,21,Chevrolet,Caprice,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1989,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,58,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,580,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Small Station Wagons,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4108,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5800,0,21,Chevrolet,Caprice,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1989,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4109,(350 V8) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5801,0,21,Chevrolet,Caprice,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Large Cars,1989,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5802,0,18,Chrysler,New Yorker Fifth Avenue/Imperial,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1989,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,1420,,-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5803,0,17,Eagle,Premier,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.7436,0.0,Large Cars,1989,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,1610,,-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5804,0,17,Eagle,Premier,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1989,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5805,0,22,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1989,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3500,(POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5806,0,22,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Large Cars,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,30810,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5807,0,15,Mercedes-Benz,300SEL,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Large Cars,1989,-6250,T,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5808,0,19,Lincoln,Continental,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5809,0,22,Mercury,Grand Marquis,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1989,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,581,0,23,Nissan,Sentra Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Small Station Wagons,1985,2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5810,0,20,Lincoln,Town Car,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1989,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5811,16,16,Oldsmobile,Eighty-Eight,Y,false,102,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1989,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5812,0,16,Oldsmobile,Ninety-Eight/Touring,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Large Cars,1989,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4421,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5813,0,15,Pontiac,Bonneville,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Large Cars,1989,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47045,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,5814,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Large Cars,1989,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47035,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,5815,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Large Cars,1989,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47040,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,103,5816,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Large Cars,1989,-500,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,103,5817,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Large Cars,1989,-500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5818,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1989,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5819,0,34,Buick,Skyhawk Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,46.0,0.0,Small Station Wagons,1989,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,582,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4111,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5820,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,41.0,0.0,Small Station Wagons,1989,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5821,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,46.0,0.0,Small Station Wagons,1989,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4118,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5822,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,35.0,0.0,Small Station Wagons,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5823,0,34,Chevrolet,Cavalier Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,37.0,0.0,Small Station Wagons,1989,-1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5824,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Small Station Wagons,1989,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5825,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,45.0,0.0,Small Station Wagons,1989,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,38011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5826,0,24,Nissan,Sentra Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,32.0,0.0,Small Station Wagons,1989,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,38011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5827,0,24,Nissan,Sentra Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,37.1795,0.0,Small Station Wagons,1989,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5828,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1989,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5829,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1989,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,583,0,37,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5830,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Small Station Wagons,1989,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5831,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.8718,0.0,Small Station Wagons,1989,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3141,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5832,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.7436,0.0,Small Station Wagons,1989,500,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,5833,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Small Station Wagons,1989,1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5834,0,27,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,41.0,0.0,Small Station Wagons,1989,1500,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5835,0,27,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,45.0,0.0,Small Station Wagons,1989,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5836,0,27,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,35.0,0.0,Small Station Wagons,1989,0,,2MODE 3LKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5837,0,27,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,33.3333,0.0,Small Station Wagons,1989,0,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5838,0,25,Mercury,Tracer Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Small Station Wagons,1989,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5839,0,25,Mercury,Tracer Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Small Station Wagons,1989,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,584,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5840,0,29,Mazda,323 Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,36.0,0.0,Small Station Wagons,1989,0,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,5841,0,29,Mazda,323 Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.3077,0.0,Small Station Wagons,1989,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5842,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Small Station Wagons,1989,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5843,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.8718,0.0,Small Station Wagons,1989,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5844,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5845,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1989,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49041,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5846,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5847,0,28,Plymouth,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Small Station Wagons,1989,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5848,0,28,Plymouth,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,44.8718,0.0,Small Station Wagons,1989,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5849,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.7692,0.0,Small Station Wagons,1989,-1750,,,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3100,(CALIF),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,585,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5850,0,35,Subaru,Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,34.0,0.0,Small Station Wagons,1989,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5851,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1989,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5852,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.3333,0.0,Small Station Wagons,1989,-1750,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66023,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5853,0,35,Subaru,Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Small Station Wagons,1989,-1000,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5854,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1989,500,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57006,(3S-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5855,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Small Station Wagons,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57009,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5856,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Small Station Wagons,1989,-2500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57003,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5857,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1989,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57003,(4A-FE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5858,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.8974,0.0,Small Station Wagons,1989,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5859,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Small Station Wagons,1989,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3102,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,586,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,5860,0,31,Toyota,Corolla Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,45.0,0.0,Small Station Wagons,1989,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5861,33,0,Volkswagen,Fox Wagon,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1989,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5862,0,37,Audi,100 Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5863,0,37,Audi,100 Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5864,0,37,Audi,200 quattro Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5865,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.0,0.0,Midsize-Large Station Wagons,1989,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5866,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5867,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5868,0,42,Buick,Century Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,37.0,0.0,Midsize-Large Station Wagons,1989,-1750,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5869,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1989,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3110,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,587,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,37.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5870,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,0,5871,0,41,CX Automotive,Cxestate,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.359,0.0,Midsize-Large Station Wagons,1989,-6750,T,DC/FW,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5872,0,42,Eagle,Medallion Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1989,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43022,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,5873,0,42,Eagle,Medallion Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Midsize-Large Station Wagons,1989,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5874,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5875,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1989,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5876,0,46,Ford,Taurus Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5877,0,46,Ford,Taurus Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5878,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5879,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1989,-1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3110,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,588,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.3077,0.0,Small Station Wagons,1985,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5880,0,46,Mercury,Sable Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5881,0,46,Mercury,Sable Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5882,0,42,Mercedes-Benz,300TE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1989,-5750,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5883,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.0,0.0,Midsize-Large Station Wagons,1989,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5884,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5885,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,37.0,0.0,Midsize-Large Station Wagons,1989,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41010,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5886,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5887,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41020,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5888,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4119,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,5889,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.0,0.0,Midsize-Large Station Wagons,1989,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3242,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,589,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,40.0,0.0,Small Station Wagons,1985,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4124,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,5890,0,42,Pontiac,6000 Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1989,-1000,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,91,5891,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,91,5892,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,42,91,5893,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1989,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,42,91,5894,0,0,Volvo,240 DL/240 GL Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1989,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,39,95,5895,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(BENDIX) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,5896,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1989,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,5897,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,5898,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1989,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,5899,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Rear-Wheel Drive,12040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,59,13,13,BMW,3 Series,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3241,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,590,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,55.1282,0.0,Small Station Wagons,1985,3500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,5900,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1989,-2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,5901,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1989,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(BENDIX) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,5902,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Midsize-Large Station Wagons,1989,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,(EGR) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,5903,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1989,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(TURBO) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,39,95,5904,0,0,Volvo,760 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5905,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5906,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5907,0,53,Ford,LTD Crown Victoria/Country Squire Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5908,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5909,0,50,Oldsmobile,Custom Cruiser,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1989,-3250,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3240,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,591,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5910,0,50,Pontiac,Safari Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1989,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5911,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Small Pickup Trucks,1989,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5912,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Small Pickup Trucks,1989,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5913,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Small Pickup Trucks,1989,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5914,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1989,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5915,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5916,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.7692,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5917,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.0,0.0,Small Pickup Trucks,1989,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5918,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Small Pickup Trucks,1989,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5919,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Small Pickup Trucks,1989,-3250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,592,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,56.0,0.0,Small Station Wagons,1985,3250,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5920,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,33.3333,0.0,Small Pickup Trucks,1989,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5921,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1989,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5922,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5923,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5924,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Small Pickup Trucks,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5925,0,0,Ford,Courier,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5926,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,30.7692,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3602,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,5927,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1989,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3623,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5928,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1989,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3621,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5929,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1989,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,593,0,23,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,36.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5930,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Small Pickup Trucks,1989,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5931,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Small Pickup Trucks,1989,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5932,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Small Pickup Trucks,1989,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5933,0,0,GMC,S15 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1989,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5934,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5935,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5936,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5937,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,33.3333,0.0,Small Pickup Trucks,1989,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5938,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Small Pickup Trucks,1989,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5939,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26020,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,594,0,23,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,44.0,0.0,Small Station Wagons,1985,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49090,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5940,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5941,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Small Pickup Trucks,1989,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5942,0,0,Mazda,B2200/B2600,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5943,0,0,Mazda,B2200/B2600,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5944,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5945,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,32.0513,0.0,Small Pickup Trucks,1989,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5946,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5947,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,31.0,0.0,Small Pickup Trucks,1989,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5948,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Small Pickup Trucks,1989,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5949,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1989,-2500,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,26011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,595,0,23,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,37.1795,0.0,Small Station Wagons,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5950,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5951,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1989,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3645,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5952,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Small Pickup Trucks,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3642,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5953,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Small Pickup Trucks,1989,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5954,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Small Pickup Trucks,1989,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5955,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5956,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5957,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1989,-4250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5958,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5959,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3101,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,596,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5960,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5961,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.9231,0.0,Standard Pickup Trucks,1989,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5962,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5963,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-7750,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5964,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.359,0.0,Standard Pickup Trucks,1989,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5965,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5966,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1989,-5500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5967,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5968,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5969,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3100,(CALIF),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,597,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,45.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,5970,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5971,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,17.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5972,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,5973,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5974,0,0,Chevrolet,C2500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5975,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1989,-7750,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5976,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,5977,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5978,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2824,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,5979,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1989,-1750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3102,,-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,598,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2824,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,5980,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Standard Pickup Trucks,1989,-500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,5981,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2808,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,5982,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5983,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5984,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5985,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5986,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5987,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5988,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5989,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3242,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,599,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,40.0,0.0,Small Station Wagons,1985,1000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,5990,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5991,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.2308,0.0,Standard Pickup Trucks,1989,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5992,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5993,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.9487,0.0,Standard Pickup Trucks,1989,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,5994,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5995,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,5996,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,5997,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,5998,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,5999,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38044,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,23,50,6,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Two Seaters,1985,-4250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,60,12,0,BMW,6 Series,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3241,,-1,1700,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,600,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,55.1282,0.0,Small Station Wagons,1985,3500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6000,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.9487,0.0,Standard Pickup Trucks,1989,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6001,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6002,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6003,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6004,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6005,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1989,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1851,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6006,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Standard Pickup Trucks,1989,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1852,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6007,0,0,Jeep,Comanche Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1989,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6008,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6009,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3240,,-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,601,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Small Station Wagons,1985,1750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6010,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6011,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6012,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6013,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6014,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1989,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6015,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6016,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6017,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6018,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6019,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3200,(CALIF),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,602,0,28,Mercury,Lynx Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,40.0,0.0,56.0,0.0,Small Station Wagons,1985,3250,,,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6020,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6021,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6022,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1989,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6023,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6024,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6025,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6026,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6027,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1989,-4250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6028,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4834,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6029,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56040,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,603,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,29.0,0.0,Small Station Wagons,1985,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6030,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6031,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.9231,0.0,Standard Pickup Trucks,1989,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6032,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6033,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-7750,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6034,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.359,0.0,Standard Pickup Trucks,1989,-7750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6035,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6036,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1989,-5500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6037,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6038,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4825,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6039,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56040,,-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,604,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,37.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6040,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6041,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,17.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6042,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4831,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6043,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6044,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4840,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6045,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1989,-7750,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4841,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6046,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6047,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4852,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6048,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6049,0,0,Isuzu,Pickup 2WD 1-Ton,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Rear-Wheel Drive,56040,,-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,605,30,30,Mazda,GLC Wagon,N,false,80,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,48110,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6050,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6051,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6052,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1989,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6053,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6054,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6055,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6056,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4934,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6057,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6058,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6059,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,606,0,37,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6060,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6061,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,17.9487,0.0,Standard Pickup Trucks,1989,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6062,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6063,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6064,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6065,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6066,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6067,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6068,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6069,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,607,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6070,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6071,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6072,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6073,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6074,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6075,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6076,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6077,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4925,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6078,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4926,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6079,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,608,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6080,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Standard Pickup Trucks,1989,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6081,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-7750,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6082,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6083,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2908,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6084,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1989,-6250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6085,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6086,0,0,Dodge,Power Ram50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1989,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2942,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6087,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2942,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6088,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1989,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6089,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,609,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6090,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1989,-11000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,6091,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks,1989,-15500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6092,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-15500,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6093,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6094,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-13000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,6095,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,14.1026,0.0,Standard Pickup Trucks,1989,-15500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6096,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-15500,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6097,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1989,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6098,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,31.0,0.0,Standard Pickup Trucks,1989,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6099,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,31.0,0.0,Standard Pickup Trucks,1989,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12030,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,61,12,0,BMW,6 Series,Y,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,610,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6100,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1989,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6101,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1989,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1951,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6102,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1989,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1951,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6103,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3741,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6104,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3745,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6105,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6106,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6107,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3840,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6108,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.9487,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6109,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4143,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,611,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.3333,0.0,Small Station Wagons,1985,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3843,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6110,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3841,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6111,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3940,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6112,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6113,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6114,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3841,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6115,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3940,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6116,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1989,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6117,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6118,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6119,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,612,0,34,Oldsmobile,Firenza Cruiser Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Small Station Wagons,1985,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6120,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4934,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6121,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6122,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6123,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6124,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6125,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,17.9487,0.0,Standard Pickup Trucks,1989,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6126,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6127,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6128,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,23.0769,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4924,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6129,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1989,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,613,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,32.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4920,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6130,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4922,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6131,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4921,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6132,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4933,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6133,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6134,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4931,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6135,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6136,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1989,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4942,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6137,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1989,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4940,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6138,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1989,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6139,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-5500,,CLKUP,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,614,0,37,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4951,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6140,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6500,,Creeper,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6141,0,0,GMC,S15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Standard Pickup Trucks,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4926,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6142,0,0,GMC,S15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4925,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6143,0,0,GMC,S15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6144,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1989,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6145,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49091,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6146,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Standard Pickup Trucks,1989,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6147,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1989,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6148,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1989,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6149,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1989,-6250,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,615,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1985,500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6150,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1989,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6151,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Vans,1989,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6152,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Vans,1989,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6153,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6154,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1989,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6155,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Vans,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6156,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6157,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.359,0.0,Vans,1989,-5250,,,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6158,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,17.0,0.0,Vans,1989,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6159,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,4205,(CAL)(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,616,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6160,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Vans,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6161,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6162,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Vans,1989,-3500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6163,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Vans,1989,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6164,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,17.9487,0.0,Vans,1989,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6165,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2843,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6166,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,22.0,0.0,Vans,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6167,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,23.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6168,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6169,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Vans,1989,-7750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,617,0,34,Pontiac,Sunbird Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6170,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1989,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6171,0,0,Dodge,B150/B250 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,21.7949,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6172,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6173,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1989,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6174,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1989,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6175,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6176,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1989,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3687,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6177,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3685,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6178,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Vans,1989,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6179,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Vans,1989,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,618,0,35,Renault,18i 4DR Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Small Station Wagons,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6180,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6181,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Vans,1989,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6182,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6183,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1989,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6184,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1989,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6185,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3902,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6186,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1989,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4826,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6187,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Vans,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6188,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6189,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.359,0.0,Vans,1989,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,43010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,619,0,35,Renault,18i 4DR Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.7436,0.0,Small Station Wagons,1985,0,,,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4833,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6190,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,17.0,0.0,Vans,1989,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6191,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6192,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Vans,1989,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6193,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.0,0.0,Vans,1989,-6250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6194,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Vans,1989,-3500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6195,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.7692,0.0,Vans,1989,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4827,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6196,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,17.9487,0.0,Vans,1989,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6197,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6198,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Vans,1989,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6199,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Vans,1989,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4221,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,84,62,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,42.3077,0.0,Subcompact Cars,1985,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,620,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Small Station Wagons,1985,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6200,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6201,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1989,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49085,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6202,0,0,Mitsubishi,Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Vans,1989,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57012,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6203,0,0,Toyota,Van 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57012,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6204,0,0,Toyota,Van 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6205,0,0,Toyota,Van 4WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,27.0,0.0,Vans,1989,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6206,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6207,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6208,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6209,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Vans,1989,-6250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66031,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,621,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Small Station Wagons,1985,1500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6210,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6211,0,0,Chevrolet,G10/20 Sport Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6212,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1989,-6500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6213,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Vans,1989,-4500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6214,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,Vans,1989,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2843,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6215,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Vans,1989,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6216,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6217,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6218,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Vans,1989,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6219,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1989,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,622,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Small Station Wagons,1985,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6220,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,21.0,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6221,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6222,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.0,0.0,Vans,1989,-15500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6223,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1989,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6224,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Vans,1989,-9250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,6225,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,15.0,0.0,Vans,1989,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3686,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6226,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1989,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3684,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6227,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6228,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Vans,1989,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6229,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1989,-7750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66040,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,623,0,35,Subaru,Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1985,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6230,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6231,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Vans,1989,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6232,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4821,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6233,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Vans,1989,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4832,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6234,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6235,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Vans,1989,-7750,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6236,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1989,-6500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4850,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6237,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,27.0,0.0,Vans,1989,-4500,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6238,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,Vans,1989,-11000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4822,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6239,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1989,-4250,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,624,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,40.0,0.0,Small Station Wagons,1985,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4823,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6240,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Vans,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49085,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6241,0,0,Mitsubishi,Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Vans,1989,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57012,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6242,0,0,Toyota,Van 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1989,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57012,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6243,0,0,Toyota,Van 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,30.7692,0.0,Vans,1989,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6244,0,0,Toyota,Van 4WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,27.0,0.0,Vans,1989,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,57012,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6245,0,0,Toyota,Van 4WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,28.2051,0.0,Vans,1989,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59005,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6246,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,20.0,0.0,Vans,1989,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59005,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6247,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0769,0.0,Vans,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59005,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6248,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Vans,1989,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6249,0,0,Chevrolet,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1989,-7750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,625,0,32,Toyota,Tercel Wagon 2WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,47.0,0.0,Small Station Wagons,1985,2500,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6250,0,0,Chevrolet,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-5500,,CLKUP,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6251,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1989,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6252,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6253,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1989,-6250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6254,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1989,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6255,0,0,Chrysler,Town and Country,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6256,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1989,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6257,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1989,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6258,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1989,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2823,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6259,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1989,-5750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,626,0,27,Toyota,Tercel Wagon 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Small Station Wagons,1985,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6260,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6261,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1989,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2823,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6262,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6263,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6264,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6265,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6266,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6267,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1989,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1851,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6268,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1989,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1852,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6269,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,4-Wheel or All-Wheel Drive,57010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,627,0,27,Toyota,Tercel Wagon 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Small Station Wagons,1985,1500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3623,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6270,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3621,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6271,0,0,Ford,Bronco II 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4842,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6272,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1989,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4851,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6273,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-5500,,CLKUP,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4811,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6274,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1989,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6275,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29085,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6276,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6277,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6278,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6279,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1989,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,59029,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,628,0,38,Volkswagen,Quantum Syncro Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Station Wagons,1985,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56089,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6280,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,2MODE CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6281,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56089,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6282,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6283,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6284,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2823,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6285,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1989,-5750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6286,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1989,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2823,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6287,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicle 2WD,1989,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6288,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6289,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +12.306357,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,328.38709677419354,31,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59009,"(DSL,TRBO)",-1,1900,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,629,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,49.0,0.0,Small Station Wagons,1985,2500,,SIL,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6290,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4925,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6291,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4926,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6292,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6293,0,0,Chevrolet,Blazer V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4935,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6294,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4930,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6295,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6296,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-5500,,CLKUP,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6297,0,0,Chevrolet,Suburban V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1989,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4935,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6298,0,0,Chevrolet,Suburban V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4930,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6299,0,0,Chevrolet,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4145,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,63,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,630,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,32.0,0.0,Small Station Wagons,1985,-1000,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6300,0,0,Chevrolet,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6301,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6302,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.0,0.0,Special Purpose Vehicles,1989,-7750,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6303,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6304,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1989,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6305,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-13000,,Creeper,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,6306,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,14.1026,0.0,Special Purpose Vehicles,1989,-15500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6307,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.0,0.0,Special Purpose Vehicles,1989,-15500,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6308,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1989,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6309,0,0,Dodge,Colt Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,631,0,38,Volkswagen,Quantum Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Small Station Wagons,1985,1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6310,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6311,0,0,Dodge,Raider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,22.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6312,0,0,Dodge,Raider,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6313,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1989,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6314,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Special Purpose Vehicles,1989,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6315,0,0,Jeep,Cherokee/Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1989,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1951,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6316,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1989,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1951,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6317,0,0,Jeep,Cherokee/Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1989,-4250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1991,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6318,0,0,Jeep,Grand Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1989,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1954,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6319,0,0,Jeep,Wagoneer Limited 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1989,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,632,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6320,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1989,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6321,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1961,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6322,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.0,0.0,Special Purpose Vehicles,1989,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6323,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3646,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6324,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicle 4WD,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3644,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6325,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1989,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3743,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6326,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6327,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,21.0,0.0,Special Purpose Vehicles,1989,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6328,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6329,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,22.0,0.0,Special Purpose Vehicles,1989,-7750,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64025,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,633,0,39,Audi,5000S Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3840,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6330,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Special Purpose Vehicles,1989,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6331,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1989,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3843,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6332,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3841,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6333,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3940,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6334,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1989,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6335,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6336,0,0,Geo,Tracker Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,33.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6337,0,0,Geo,Tracker Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4911,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6338,0,0,GMC,S15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Special Purpose Vehicles,1989,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4926,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6339,0,0,GMC,S15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-4250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4233,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,634,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1985,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4925,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6340,0,0,GMC,S15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6341,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4935,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6342,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4930,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6343,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-9250,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6344,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-5500,,CLKUP,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4941,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,6345,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1989,-11000,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4935,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6346,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4930,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6347,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4950,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6348,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1989,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6349,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4421,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,635,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6350,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1989,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6351,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6352,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,4.9,4-Wheel or All-Wheel Drive,34301,(FFS) (MPFI),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6353,0,0,Laforza Automobile Inc,Laforza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1989,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46001,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6354,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1989,-13250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6355,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6356,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,22.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6357,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1989,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6358,0,0,Mitsubishi,Space Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1989,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56089,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6359,0,0,Mazda,MPV 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1989,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4405,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,636,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6360,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Special Purpose Vehicles,1989,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6361,0,0,Plymouth,Colt Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66090,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6362,0,0,Subaru,Hatchback 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,27.7778,0.0,37.1795,0.0,Special Purpose Vehicles,1989,500,,,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6363,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,30.0,0.0,Special Purpose Vehicles,1989,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6364,0,0,Subaru,Sedan/3 Door 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6365,0,0,Subaru,Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,29.0,0.0,Special Purpose Vehicles,1989,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6366,0,0,Subaru,Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6367,0,0,Suzuki,Samurai Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6368,0,0,Suzuki,Samurai Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6369,0,0,Suzuki,Sidekick Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4402,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,637,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6370,0,0,Suzuki,Sidekick Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,33.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6371,0,0,Suzuki,Sidekick Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6372,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,33.0,0.0,Special Purpose Vehicles,1989,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6373,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1989,1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,57017,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6374,0,0,Toyota,Land Cruiser Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1989,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6375,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1989,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6376,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1989,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6377,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1989,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6378,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,25.0,0.0,Special Purpose Vehicles,1989,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6379,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0513,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,638,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6380,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1989,-4250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6381,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1989,-13000,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6382,0,0,Nissan,Truck Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1989,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6383,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Special Purpose Vehicle 2WD,1989,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2842,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6384,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1989,-9250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6385,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1989,-15500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4330,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6386,0,0,General Motors,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1989,-3250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,6387,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,14.1026,0.0,Special Purpose Vehicle 2WD,1989,-15500,,2MODE 2LKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6388,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,16.6667,0.0,Special Purpose Vehicle 2WD,1989,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9001,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6389,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Two Seaters,1990,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4220,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,639,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0256,0.0,Midsize-Large Station Wagons,1985,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6390,0,0,Buick,Reatta,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Two Seaters,1990,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6391,0,0,Cadillac,Allante,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.2051,0.0,Two Seaters,1990,-6750,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,14301,"(350 V8) (GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6392,0,0,Chevrolet,Twin-Turbo Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,27.0,0.0,Two Seaters,1990,-8000,T,SIL CMODE,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4104,(350 V8) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6393,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0,0.0,Two Seaters,1990,-5750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4128,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6394,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Two Seaters,1990,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4129,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6395,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0513,0.0,Two Seaters,1990,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2361,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6396,0,0,Chrysler,TC By Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Two Seaters,1990,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2360,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6397,0,0,Chrysler,TC By Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Two Seaters,1990,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,16201,"(FFS,TRBO) (MPFI)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6398,0,0,Consulier Industries Inc,Consulier GTP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Two Seaters,1990,-1000,,EMS,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,6399,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Two Seaters,1990,-3750,,2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4145,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,84,64,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4224,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,640,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,40.0,0.0,Midsize-Large Station Wagons,1985,500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,6400,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1990,-4750,,VLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,6401,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1990,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,49,6402,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1990,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22201,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6403,0,0,Evans Automobiles,Series 1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Two Seaters,1990,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,2.9,Rear-Wheel Drive,22010,"(GUZZLER) (FFS,TRBO)",-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6404,0,0,Ferrari,F 40,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.0,0.0,Two Seaters,1990,-11250,T,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,6405,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1990,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6406,0,0,Ferrari,348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Two Seaters,1990,-9500,T,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,6407,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,45.0,0.0,Two Seaters,1990,2250,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,6408,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,45.0,0.0,Two Seaters,1990,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6409,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.0,0.0,Two Seaters,1990,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,641,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +7.646952,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,0,0,6410,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,54.0,0.0,67.0,0.0,Two Seaters,1990,5500,,SIL,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,6411,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.0,0.0,62.8205,0.0,Two Seaters,1990,5000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30567,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6412,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Two Seaters,1990,-11250,T,,,,,,,, +47.068308,0.0,0.0,0.0,6,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1269.5714285714287,7,0.0,0,0.0,0.0,0.0,0.0,12,5.2,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,8600,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,6413,0,0,Lamborghini,Countach,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,7.0,0.0,13.0,0.0,Two Seaters,1990,-31000,T,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,69102,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,6414,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1990,-18250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"GMP4 ANDIC (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6415,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1990,-3750,,,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6416,0,0,Maserati,Karif,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Two Seaters,1990,-9500,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36003,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6417,0,0,Maserati,Karif,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Two Seaters,1990,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6418,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Two Seaters,1990,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36003,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6419,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Two Seaters,1990,-8000,T,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,642,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6420,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.0,0.0,Two Seaters,1990,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6421,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56015,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6422,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Two Seaters,1990,-4250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6423,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,36.0,0.0,Two Seaters,1990,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6424,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Two Seaters,1990,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6425,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,28.0,0.0,Two Seaters,1990,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6426,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,27.0,0.0,Two Seaters,1990,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6427,0,0,Mercedes-Benz,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Two Seaters,1990,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38022,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,14,71,6428,9,0,Nissan,240SX,Y,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Minicompact Cars,1990,-1750,,2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38022,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,71,6429,9,0,Nissan,240SX,Y,false,71,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Minicompact Cars,1990,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,643,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6430,7,0,Maserati,222E,N,false,70,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Minicompact Cars,1990,-8000,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36003,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6431,7,0,Maserati,222E,N,false,70,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Minicompact Cars,1990,-8000,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42045,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6432,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Minicompact Cars,1990,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42045,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6433,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,28.0,0.0,Minicompact Cars,1990,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42046,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6434,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic (S4),17.7778,0.0,28.2051,0.0,Minicompact Cars,1990,-6750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,6435,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Minicompact Cars,1990,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,74,6436,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,24.359,0.0,Minicompact Cars,1990,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,6437,0,0,Porsche,944 S2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1990,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57018,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6438,9,0,Toyota,Celica Convertible,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.7436,0.0,Minicompact Cars,1990,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57018,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6439,9,0,Toyota,Celica Convertible,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Minicompact Cars,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,644,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1985,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6440,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.8974,0.0,Minicompact Cars,1990,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6441,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Minicompact Cars,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,79,6442,0,11,Acura,Integra,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,34.0,0.0,Subcompact Cars,1990,-500,,2MODE 3LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,6443,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64001,(20-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,75,6444,0,0,Audi,Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6445,0,10,Audi,80,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,34.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,64003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6446,0,10,Audi,80,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6447,0,8,Audi,80 quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64004,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6448,0,10,Audi,90,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.2051,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64004,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6449,0,10,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1990,-1750,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,645,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64001,(20-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6450,0,8,Audi,90 quattro 20v,Y,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12050,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6451,12,0,BMW,M3,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,37.0,0.0,Subcompact Cars,1990,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6452,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6453,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6454,12,12,BMW,325i/325is,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6455,12,12,BMW,325i/325is,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6456,12,12,BMW,325ix,Y,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6457,12,12,BMW,325ix,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4132,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6458,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.3333,0.0,Subcompact Cars,1990,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4121,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,6459,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,646,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1985,-3750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4103,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,6460,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Subcompact Cars,1990,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6461,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4113,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6462,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1990,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,6463,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0513,0.0,Subcompact Cars,1990,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4128,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,6464,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1990,-5750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,6465,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,50.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS) (SPFI),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,6466,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1990,5250,,SIL,,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54008,"(FFS,TRBO) (SPFI)",-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,78,6467,0,0,Chevrolet,Turbo Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1990,4000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6468,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1990,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6469,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,647,0,35,Chrysler,Town and Country Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6470,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1990,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6471,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Subcompact Cars,1990,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6472,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1990,-1750,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,19001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,6473,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1990,4000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19003,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,79,6474,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.0,0.0,43.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19003,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,79,6475,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,50.0,0.0,Subcompact Cars,1990,3500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38003,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6476,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1990,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38003,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6477,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38010,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6478,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,37.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,38010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6479,7,0,Nissan,Pulsar NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,648,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6480,12,12,Nissan,Sentra,N,false,87,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.7436,0.0,Subcompact Cars,1990,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6481,12,12,Nissan,Sentra,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6482,12,12,Nissan,Sentra,N,false,87,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,72,6483,0,0,Nissan,Sentra Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,72,6484,0,0,Nissan,Sentra Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,,-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,6485,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1990,-3750,,2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,,-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,6486,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1990,-4750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,6487,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Subcompact Cars,1990,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,6488,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.1538,0.0,Subcompact Cars,1990,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,84,6489,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,649,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6490,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6491,0,0,Dodge,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,6492,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1990,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,17,81,6493,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,6494,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Subcompact Cars,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,6495,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,37.0,0.0,Subcompact Cars,1990,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2521,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,81,6496,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,6497,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Subcompact Cars,1990,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,6498,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1990,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,84,6499,0,0,Dodge,Omni,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1990,500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,65,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,28.2051,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,650,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.3077,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,84,6500,0,0,Dodge,Omni,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,81,6501,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,81,6502,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,81,6503,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,81,6504,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1990,-3000,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22025,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6505,4,0,Ferrari,Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,22.0,0.0,Subcompact Cars,1990,-11250,T,,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,87,6506,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,42.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,12,87,6507,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,53.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,83,6508,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,6509,8,0,Ford,Mustang,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,651,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,83,6510,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3402,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,6511,8,0,Ford,Mustang,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1990,-4250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,6512,0,0,Geo,Metro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,41.1111,0.0,51.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS) (SPFI),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,6513,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1990,5250,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,6514,0,0,Geo,Metro LSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,41.0,0.0,50.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS) (SPFI),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,6515,0,0,Geo,Metro LSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.8241,0.0,63.7,0.0,Subcompact Cars,1990,5000,,SIL,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS) (SPFI),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,6516,0,0,Geo,Metro XFI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.2769,0.0,74.7397,0.0,Subcompact Cars,1990,6250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,82,6517,0,11,Geo,Prizm,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57603,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,82,6518,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1990,0,,2MODE 2LKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,82,6519,0,11,Geo,Prizm,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,652,0,35,Dodge,Aries Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57603,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,82,6520,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6521,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1990,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6522,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,41.0256,0.0,Subcompact Cars,1990,500,,2MODE CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6523,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,46.0,0.0,Subcompact Cars,1990,2500,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6524,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,85,6525,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1990,1500,,2LKUP,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,85,6526,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1990,2750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,85,6527,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,44.0,0.0,Subcompact Cars,1990,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,6528,0,12,Honda,Civic,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,37.0,0.0,Subcompact Cars,1990,500,,3LKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,6529,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,653,0,42,Ford,LTD Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26031,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6530,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1990,-1750,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26031,(FFS) 2 barrel carb,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6531,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6532,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1990,-1000,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6533,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,26033,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6534,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1990,-1750,,2MODE 3LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,26033,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6535,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,86,6536,9,11,Hyundai,Excel,N,false,80,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1990,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,86,6537,9,11,Hyundai,Excel,N,false,80,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Subcompact Cars,1990,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,86,6538,9,11,Hyundai,Excel,N,false,80,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,86,6539,9,11,Mitsubishi,Precis,N,false,80,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0256,0.0,Subcompact Cars,1990,1500,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3330,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,654,0,42,Mercury,Marquis Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,86,6540,9,11,Mitsubishi,Precis,N,false,80,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Subcompact Cars,1990,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26540,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,86,6541,9,11,Mitsubishi,Precis,N,false,80,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6542,11,0,Isuzu,Impulse,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,41.0256,0.0,Subcompact Cars,1990,500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6543,11,0,Isuzu,Impulse,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1990,-1750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6544,11,0,Isuzu,Impulse,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6545,12,0,Infiniti,M30,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1990,-3750,,VLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30562,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6546,11,0,Jaguar,XJS Coupe,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,23.0,0.0,Subcompact Cars,1990,-9500,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6547,0,14,Maserati,430,N,false,0,72,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Subcompact Cars,1990,-9500,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36003,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6548,0,14,Maserati,430,N,false,0,72,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Subcompact Cars,1990,-8000,T,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6549,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,,,,,,,, +20.102931,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20040,"(CALIF) (DSL,TRBO)",-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,655,0,41,Mercedes-Benz,300TD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-3500,,,T,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6550,0,12,Mercedes-Benz,190E 2.6,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1990,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20033,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6551,14,0,Mercedes-Benz,300CE,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Subcompact Cars,1990,-5750,T,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,81,6552,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1990,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,81,6553,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,81,6554,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,81,6555,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1990,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,81,6556,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,81,6557,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-1750,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6558,0,10,Mitsubishi,Mirage,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,6559,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.1538,0.0,Subcompact Cars,1990,2500,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,5,3.0,Rear-Wheel Drive,20030,"(DSL,TRBO)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,656,0,41,Mercedes-Benz,300TD,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2000,,,T,,Diesel,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,84,6560,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6561,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6562,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,84,6563,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.1795,0.0,Subcompact Cars,1990,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,6564,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.1538,0.0,Subcompact Cars,1990,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,12,84,6565,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6566,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,6567,0,0,Plymouth,Colt,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2421,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,84,6568,0,0,Plymouth,Horizon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,39.0,0.0,Subcompact Cars,1990,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,15,84,6569,0,0,Plymouth,Horizon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4233,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,657,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1985,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,10,81,6570,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1990,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,81,6571,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,10,81,6572,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,6573,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,6574,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4132,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6575,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.3333,0.0,Subcompact Cars,1990,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4121,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,6576,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1990,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4103,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,6577,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1990,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4109,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6578,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4113,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,6579,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1990,-4750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4421,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,658,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4110,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,85,6580,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0513,0.0,Subcompact Cars,1990,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4128,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,6581,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1990,-5750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,6582,0,0,Pontiac,Firefly,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,50.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS) (SPFI),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,6583,0,0,Pontiac,Firefly,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1990,5250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6584,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1990,-2250,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4130,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6585,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4118,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6586,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Subcompact Cars,1990,500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6587,10,0,Pontiac,Sunbird Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Subcompact Cars,1990,-1750,,,T,,,,,, +9.690534,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54008,"(FFS,TRBO) (SPFI)",-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,10,78,6588,0,0,Pontiac,Turbo Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,54.0,0.0,Subcompact Cars,1990,4000,,,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6589,10,0,Rolls-Royce,Continental,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Subcompact Cars,1990,-18250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,4422,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,659,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6590,10,0,Rolls-Royce,Corniche III,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Subcompact Cars,1990,-18250,T,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47026,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6591,10,0,Saab,900 Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1990,-4250,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47022,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6592,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1990,-1000,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,47201,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,96,6593,0,0,Saleen,SSC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.2051,0.0,Subcompact Cars,1990,-5250,T,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,6594,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1990,2750,,SIL,,,,,,, +10.987,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,6595,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.7778,0.0,45.0,0.0,Subcompact Cars,1990,2750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,6596,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1990,2750,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,6597,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),35.5556,0.0,41.0256,0.0,Subcompact Cars,1990,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,79,6598,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1990,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6599,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,84,66,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,31.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4402,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,660,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6600,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,66040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6601,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6602,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1990,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6603,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Subcompact Cars,1990,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6604,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6605,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1990,-2500,,,,,,,,, +9.976196,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54007,(FFS) (SPFI),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,6606,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,42.0,0.0,50.0,0.0,Subcompact Cars,1990,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54007,(FFS) (SPFI),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,6607,0,0,Suzuki,Swift,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1990,5250,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS) (SPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,82,6608,0,0,Suzuki,Swift,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.3333,0.0,42.3077,0.0,Subcompact Cars,1990,2250,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS) (SPFI),-1,1550,0,Regular,Regular Gasoline,-1,-1,40,0.0,0,0.0,0.0,0.0,0.0,10,82,6609,0,0,Suzuki,Swift,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,57.0,0.0,Subcompact Cars,1990,4250,,SIL,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,661,0,42,Oldsmobile,Cutlass Cruiser Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54009,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,79,6610,0,0,Suzuki,Swift GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,36.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54005,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,6611,0,0,Suzuki,Swift GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,74,6612,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,13,74,6613,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57011,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,74,6614,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1990,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,6615,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1990,-500,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,6616,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,6617,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6618,12,11,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6619,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41020,,-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,662,0,54,Peugeot,505 Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,26.0,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6620,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6621,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1990,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6622,12,11,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1990,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57008,(4A-GE) (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6623,12,11,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,6624,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57012,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,6625,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57012,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,6626,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1990,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57013,"(FFS,TRBO)",-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,11,74,6627,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Subcompact Cars,1990,-5750,,,T,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS) 1 barrel carb,-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,80,6628,11,0,Toyota,Tercel,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,41.0256,0.0,Subcompact Cars,1990,1750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,80,6629,11,0,Toyota,Tercel,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1990,2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,41020,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,663,0,54,Peugeot,505 Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57005,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,80,6630,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1990,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS) fuel injection,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,80,6631,11,0,Toyota,Tercel,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.7436,0.0,Subcompact Cars,1990,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59011,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,80,6632,0,0,Volkswagen,Corrado,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1990,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6633,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1990,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6634,10,10,Volkswagen,Fox,N,false,78,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1990,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,61414,,-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,6,80,6635,0,0,Yugo,GV Plus/GV/Cabrio,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,39.7436,0.0,Subcompact Cars,1990,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26061,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6636,15,14,Acura,Legend,Y,false,86,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1990,-3250,,2MODE 3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,26061,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6637,15,14,Acura,Legend,Y,false,86,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Compact Cars,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,14,102,6638,0,12,Sterling,827,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1990,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,102,6639,0,12,Sterling,827,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +17.351199,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,462.72727272727275,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,41030,"(DSL,TRBO)",-1,2700,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,664,0,54,Peugeot,505 Wagon,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-1500,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6640,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6641,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0513,0.0,Compact Cars,1990,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6642,0,13,BMW,535i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Compact Cars,1990,-5250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6643,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Compact Cars,1990,-5250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6644,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.7436,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6645,13,13,Buick,Skylark,Y,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6646,13,13,Buick,Skylark,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1990,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6647,14,0,Chevrolet,Beretta,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Compact Cars,1990,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6648,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1990,1000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6649,14,0,Chevrolet,Beretta,Y,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1990,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,665,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6650,14,0,Chevrolet,Beretta,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6651,14,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1990,-1750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6652,13,14,Chevrolet,Cavalier,N,false,84,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.7778,0.0,42.0,0.0,Compact Cars,1990,1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6653,13,14,Chevrolet,Cavalier,N,false,84,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,46.0,0.0,Compact Cars,1990,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6654,13,14,Chevrolet,Cavalier,N,false,84,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6655,13,14,Chevrolet,Cavalier,Y,false,84,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1990,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6656,0,14,Chrysler,LeBaron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Compact Cars,1990,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6657,0,14,Chrysler,LeBaron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1990,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6658,0,14,Chrysler,LeBaron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1990,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6659,0,14,Chrysler,LeBaron,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Compact Cars,1990,-2500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,666,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,42.0,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2611,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6660,0,14,Chrysler,LeBaron,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.8974,0.0,Compact Cars,1990,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6661,0,14,Nissan,Stanza,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1990,-1000,,3MODE VLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6662,0,14,Nissan,Stanza,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1990,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,6663,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1990,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,6664,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Compact Cars,1990,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,6665,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1990,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,13,89,6666,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Compact Cars,1990,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,6667,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,6668,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1990,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2521,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,6669,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Compact Cars,1990,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,667,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.3077,0.0,Midsize-Large Station Wagons,1985,1000,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6670,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Compact Cars,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6671,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1990,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6672,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Compact Cars,1990,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,49020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6673,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Compact Cars,1990,0,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,85,6674,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,40.0,0.0,Compact Cars,1990,1500,,,,,,,,, +10.283832,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3141,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,18,85,6675,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.0,0.0,54.0,0.0,Compact Cars,1990,3500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,85,6676,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1990,500,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,18,85,6677,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Compact Cars,1990,1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3180,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,91,6678,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3191,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,91,6679,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1990,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,668,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1985,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3181,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,91,6680,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3190,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,91,6681,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1990,-2250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,91,6682,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,91,6683,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6684,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6685,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1990,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6686,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3200,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6687,13,13,Ford,Tempo AWD,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26051,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6688,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1990,-500,,2MODE 3LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6689,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Compact Cars,1990,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,669,0,35,Plymouth,Reliant Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6690,0,11,Isuzu,Stylus,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,41.0,0.0,Compact Cars,1990,1500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,6691,0,11,Isuzu,Stylus,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,48.0,0.0,Compact Cars,1990,2750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29021,(DOHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6692,0,11,Isuzu,Stylus,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1990,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30550,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6693,0,13,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1990,-5750,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6694,0,13,Lexus,ES 250,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1990,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6695,0,13,Lexus,ES 250,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6696,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6697,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1990,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6698,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3200,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6699,13,13,Mercury,Topaz AWD,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4180,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,12,84,67,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Subcompact Cars,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4233,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,670,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1985,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,6700,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1990,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,6701,0,13,Mazda,323/323 Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1990,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56031,BPE (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,92,6702,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1990,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,56031,BPE (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,16,92,6703,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.3333,0.0,Compact Cars,1990,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56032,BPD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,92,6704,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56031,BPE (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,6705,0,13,Mazda,323/323 Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1990,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56032,BPD (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,92,6706,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Compact Cars,1990,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,56031,BPE (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,92,6707,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Compact Cars,1990,0,,,,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20010,"(DSL,TRBO) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6708,0,15,Mercedes-Benz,300D 2.5 Turbo,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.0,0.0,Compact Cars,1990,500,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6709,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1990,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,671,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,30.7692,0.0,Midsize-Large Station Wagons,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6710,0,15,Mercedes-Benz,300E 2.6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Compact Cars,1990,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20030,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6711,0,15,Mercedes-Benz,300E 4Matic,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Compact Cars,1990,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20039,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6712,0,15,Mercedes-Benz,300SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Compact Cars,1990,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6713,15,0,Mercedes-Benz,560SEC,N,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Compact Cars,1990,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6714,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Compact Cars,1990,-1750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6715,0,11,Mitsubishi,Galant,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Compact Cars,1990,-1000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49045,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6716,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6717,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6718,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.1795,0.0,Compact Cars,1990,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6719,0,12,Mitsubishi,Sigma,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Compact Cars,1990,-3250,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4130,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,672,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6720,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.7436,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6721,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1990,0,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6722,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.7436,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4114,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6723,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Compact Cars,1990,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6724,13,13,Oldsmobile,Cutlass Calais,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6725,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Compact Cars,1990,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(16-VALVE) (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6726,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Compact Cars,1990,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6727,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.0,0.0,Compact Cars,1990,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,6728,0,0,Plymouth,Sundance,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1990,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2420,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,6729,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1990,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4141,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,673,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,13,89,6730,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Compact Cars,1990,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,6731,0,0,Plymouth,Sundance,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,6732,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Compact Cars,1990,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2521,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,6733,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Compact Cars,1990,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6734,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,39.7436,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6735,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,40.0,0.0,Compact Cars,1990,0,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6736,13,13,Pontiac,Grand Am,Y,false,91,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4114,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6737,13,13,Pontiac,Grand Am,N,false,91,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,42.0,0.0,Compact Cars,1990,0,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4127,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,89,6738,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.3077,0.0,Compact Cars,1990,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4133,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,19,89,6739,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,48.7179,0.0,Compact Cars,1990,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,674,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1985,-1750,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4123,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,89,6740,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,51.0,0.0,Compact Cars,1990,2750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,89,6741,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Compact Cars,1990,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,6742,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1990,1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4125,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6743,13,13,Pontiac,Sunbird,N,false,84,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,41.0,0.0,Compact Cars,1990,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6744,13,13,Pontiac,Sunbird,N,false,84,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Compact Cars,1990,-2250,,CLKUP,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4118,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6745,13,13,Pontiac,Sunbird,N,false,84,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Compact Cars,1990,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6746,13,13,Pontiac,Sunbird,N,false,84,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Compact Cars,1990,-1750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,88,6747,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Compact Cars,1990,-2500,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,6748,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1990,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47021,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,6749,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1990,-2250,,SIL,T,,,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Front-Wheel Drive,4301,,-1,2300,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,675,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,45.0,0.0,Midsize-Large Station Wagons,1985,500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,6750,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1990,-500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,6751,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1990,-500,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47023,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,6752,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Compact Cars,1990,-2250,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6753,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.8974,0.0,Compact Cars,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6754,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Compact Cars,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6755,0,14,Subaru,Legacy 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Compact Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6756,0,14,Subaru,Legacy 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Compact Cars,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,19,83,6757,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Compact Cars,1990,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,6758,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Compact Cars,1990,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,83,6759,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1990,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,57060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,676,0,39,Toyota,Cressida Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1985,-3750,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,6760,0,15,Subaru,Loyale 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1990,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6761,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.7436,0.0,Compact Cars,1990,500,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57009,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6762,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,31.0,0.0,Compact Cars,1990,-1750,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6763,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57009,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6764,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Compact Cars,1990,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6765,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,43.0,0.0,Compact Cars,1990,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6766,0,12,Toyota,Camry,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1990,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6767,0,12,Toyota,Camry,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,33.0,0.0,Compact Cars,1990,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57012,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6768,0,12,Toyota,Cressida,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1990,-3750,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,6769,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.8974,0.0,Compact Cars,1990,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,677,0,41,Volvo,240 DL/GL/turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Midsize-Large Station Wagons,1985,-4250,,,T,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,87,6770,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59016,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,6771,0,0,Volkswagen,GTI 16v,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1990,-500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59014,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,6772,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.1111,0.0,55.1282,0.0,Compact Cars,1990,3250,,,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6773,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,35.8974,0.0,Compact Cars,1990,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59012,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6774,17,17,Volkswagen,Jetta,N,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59016,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6775,0,17,Volkswagen,Jetta GLI 16v,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS) BOSCH,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6776,0,14,Volvo,240,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1990,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6777,0,14,Volvo,240,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Compact Cars,1990,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6778,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Compact Cars,1990,-3250,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60060,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6779,15,0,Volvo,780,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Compact Cars,1990,-4250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,678,0,41,Volvo,240 DL/GL/turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1985,-4250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,10304,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6780,0,16,Pontiac,Grand Prix Ste Turbo,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1990,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,10303,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6781,15,0,Pontiac,Grand Prix Turbo,N,false,95,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1990,-4750,,CLKUP,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.6,4-Wheel or All-Wheel Drive,64002,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6782,0,17,Audi,V8,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Midsize Cars,1990,-7750,T,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.6,4-Wheel or All-Wheel Drive,64006,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6783,0,17,Audi,V8,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.0,0.0,Midsize Cars,1990,-6250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64004,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6784,0,17,Audi,100,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64004,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6785,0,17,Audi,100,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1990,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64004,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6786,0,17,Audi,100 quattro,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64005,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6787,0,17,Audi,200,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1990,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64005,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6788,0,17,Audi,200 quattro,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0513,0.0,Midsize Cars,1990,-3250,,,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6789,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1990,-5250,T,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60011,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,679,0,41,Volvo,240 DL/GL/turbo Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1985,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6790,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Midsize Cars,1990,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6791,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1990,-5250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12077,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6792,0,13,BMW,750il,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1990,-9250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6793,16,16,Buick,Century,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Midsize Cars,1990,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6794,16,16,Buick,Century,N,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6795,16,16,Buick,Century,Y,false,97,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6796,16,16,Buick,Regal,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6797,16,16,Buick,Regal,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6798,14,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6799,14,0,Cadillac,Eldorado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1990,-5750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4121,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,68,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,38.0,0.0,Subcompact Cars,1985,500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,680,0,41,Volvo,240 DL/GL/turbo Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1985,-500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6800,0,14,Cadillac,Seville,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1990,-5750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,22,95,6801,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Midsize Cars,1990,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,22,95,6802,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1990,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,95,6803,0,14,Chevrolet,Corsica,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,95,6804,0,14,Chevrolet,Corsica,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Midsize Cars,1990,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4102,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6805,15,15,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4101,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6806,15,15,Chevrolet,Lumina,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,34.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6807,15,15,Chevrolet,Lumina,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6808,0,14,Chrysler,LeBaron Landau,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6809,0,16,Chrysler,New Yorker,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4325,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,681,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6810,0,16,Chrysler,New Yorker,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6811,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1990,-3750,,3MODE VLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6812,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1990,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6813,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6814,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6815,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2531,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6816,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Midsize Cars,1990,-4750,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6817,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6818,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1990,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2521,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6819,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Midsize Cars,1990,500,,,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,682,0,50,Buick,LeSabre/Electra Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1985,-2000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6820,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,3260,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6821,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,33.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6822,0,17,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6823,0,17,Ford,Taurus SHO,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Midsize Cars,1990,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6824,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6825,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3381,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6826,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1990,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3380,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6827,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize Cars,1990,-4750,,,,S,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26520,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6828,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1990,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26520,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6829,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Midsize Cars,1990,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,683,0,50,Chevrolet,Caprice Wagon,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26530,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6830,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1990,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6831,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1990,-5750,T,2MODE VLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57003,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6832,0,14,Lexus,LS 400,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1990,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3381,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6833,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1990,-4750,,,,S,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6834,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3380,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6835,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize Cars,1990,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6836,14,0,Lincoln,Mark VII,Y,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1990,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6837,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1990,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6838,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6839,16,0,Maserati,228,N,false,109,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Midsize Cars,1990,-9500,T,,T,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,684,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1985,-2000,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36003,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6840,16,0,Maserati,228,N,false,109,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Midsize Cars,1990,-9500,T,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,6841,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize Cars,1990,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,6842,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1990,-3750,,2MODE CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,21,95,6843,14,15,Mazda,626/MX-6,Y,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.7436,0.0,Midsize Cars,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,6844,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1990,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,JEE (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6845,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1990,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56061,JED (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6846,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize Cars,1990,-3250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20039,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6847,0,15,Mercedes-Benz,300SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Midsize Cars,1990,-6750,T,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6848,0,15,Mercedes-Benz,350SDL Turbo,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Midsize Cars,1990,-2000,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6849,0,15,Mercedes-Benz,420SEL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Midsize Cars,1990,-8000,T,,,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,685,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,6850,0,15,Mercedes-Benz,560SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Midsize Cars,1990,-11250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6851,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Midsize Cars,1990,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6852,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6853,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6854,14,15,Oldsmobile,Cutlass Supreme,N,false,98,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.1795,0.0,Midsize Cars,1990,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6855,14,15,Oldsmobile,Cutlass Supreme,N,false,98,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,43.0,0.0,Midsize Cars,1990,0,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6856,14,15,Oldsmobile,Cutlass Supreme,N,false,98,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6857,14,0,Oldsmobile,Trofeo/Toronado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6858,0,14,Plymouth,Acclaim,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Midsize Cars,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6859,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,37.0,0.0,Midsize Cars,1990,-2250,,,T,,,,,, +19.381068,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,686,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,30.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2521,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6860,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0,0.0,Midsize Cars,1990,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2618,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6861,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,33.3333,0.0,Midsize Cars,1990,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6862,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.1795,0.0,Midsize Cars,1990,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6863,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4131,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6864,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,36.0,0.0,Midsize Cars,1990,-2500,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6865,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Midsize Cars,1990,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6866,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,4116,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6867,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,30.0,0.0,Midsize Cars,1990,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6868,0,16,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1990,-1750,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6869,0,12,Rolls-Royce,Eight/Mulsan,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Midsize Cars,1990,-18250,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4325,(GM-OLDS) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,687,0,50,Oldsmobile,Custom Cruiser Wagon,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Midsize-Large Station Wagons,1985,-4250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,6870,0,12,Rolls-Royce,Silver Spirit II/Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Midsize Cars,1990,-18250,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59017,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6871,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1990,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59017,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6872,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Midsize Cars,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6873,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize Cars,1990,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6874,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize Cars,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6875,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize Cars,1990,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6876,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize Cars,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6877,0,17,Volvo,740 16-Valve,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6878,0,17,Volvo,740 16-Valve,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,33.0,0.0,Midsize Cars,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6879,0,17,Volvo,760,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize Cars,1990,-3250,,,T,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,688,0,50,Oldsmobile,Custom Cruiser Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1985,-2000,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,60060,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6880,0,17,Volvo,760,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Midsize Cars,1990,-4250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6881,0,16,Buick,Electra/Park Avenue,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6882,16,16,Buick,LeSabre,Y,false,102,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1990,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6883,0,19,Cadillac,Brougham,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1990,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6884,0,19,Cadillac,Brougham,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Large Cars,1990,-6250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6885,16,16,Cadillac,Fleetwood/DeVille,Y,false,108,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1990,-5750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4117,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6886,0,20,Chevrolet,Caprice,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1990,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4111,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6887,0,20,Chevrolet,Caprice,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1990,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4108,(350 V8) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6888,0,20,Chevrolet,Caprice,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Large Cars,1990,-6250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6889,0,17,Chrysler,New Yorker Fifth Avenue/Imperial,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1990,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4170,(GM-CHEV) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,689,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6890,0,17,Dodge,Monaco,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6891,0,17,Eagle,Premier,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6892,0,22,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1990,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3510,(POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,6893,0,22,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Large Cars,1990,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6894,0,19,Lincoln,Continental,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6895,0,22,Mercury,Grand Marquis,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6896,0,22,Lincoln,Town Car,Y,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6897,16,16,Oldsmobile,Eighty-Eight,Y,false,102,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6898,0,16,Oldsmobile,Ninety-Eight/Touring,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6899,0,15,Pontiac,Bonneville,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Large Cars,1990,-2500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4122,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,69,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,29.0,0.0,45.0,0.0,Subcompact Cars,1985,1500,,SIL,,,,,,, +18.192006000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4345,(350 V8),-1,2800,0,Diesel,Diesel,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,690,0,50,Pontiac,Parisienne Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1985,-2000,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47035,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,6900,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Large Cars,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47045,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,6901,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Large Cars,1990,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47040,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,6902,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Large Cars,1990,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,24,103,6903,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Large Cars,1990,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47055,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,103,6904,0,18,Saab,9000,Y,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1990,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47050,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,6905,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Large Cars,1990,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6906,0,34,Chevrolet,Cavalier Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Small Station Wagons,1990,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6907,0,34,Chevrolet,Cavalier Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,46.0,0.0,Small Station Wagons,1990,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4119,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6908,0,34,Chevrolet,Cavalier Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Small Station Wagons,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6909,0,34,Chevrolet,Cavalier Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Small Station Wagons,1990,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,4800,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,691,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,38.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6910,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.0,0.0,Small Station Wagons,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6911,0,24,Nissan,Sentra Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Small Station Wagons,1990,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6912,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1990,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6913,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.1795,0.0,Small Station Wagons,1990,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6914,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Small Station Wagons,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6915,0,28,Dodge,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Small Station Wagons,1990,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3140,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6916,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,39.7436,0.0,Small Station Wagons,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3142,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,6917,0,28,Ford,Escort Wagon,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,46.0,0.0,Small Station Wagons,1990,1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6918,0,27,Honda,Civic Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Small Station Wagons,1990,1500,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6919,0,27,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,44.0,0.0,Small Station Wagons,1990,2500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4810,,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,692,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,44.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6920,0,27,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,33.0,0.0,Small Station Wagons,1990,-500,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6921,0,27,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Small Station Wagons,1990,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6922,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Small Station Wagons,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6923,0,28,Mitsubishi,Mirage Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Small Station Wagons,1990,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6924,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6925,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1990,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6926,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.1795,0.0,Small Station Wagons,1990,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6927,0,28,Plymouth,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,37.0,0.0,Small Station Wagons,1990,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,6928,0,28,Plymouth,Colt Wagon,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Small Station Wagons,1990,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6929,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.8974,0.0,Small Station Wagons,1990,-1000,,CLKUP,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4810,,-1,2100,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,693,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6930,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Small Station Wagons,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6931,0,36,Subaru,Legacy Wagon 4WD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0513,0.0,Small Station Wagons,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6932,0,36,Subaru,Legacy Wagon 4WD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Small Station Wagons,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6933,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,31.0,0.0,Small Station Wagons,1990,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6934,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6935,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1990,500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6936,0,35,Subaru,Loyale Wagon 4WD Turbo,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Station Wagons,1990,-1750,,CLKUP,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,6937,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.7778,0.0,39.7436,0.0,Small Station Wagons,1990,500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57004,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6938,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1990,-2500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6939,0,26,Toyota,Corolla All-Trac Wagon,Y,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Small Station Wagons,1990,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,694,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6940,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Small Station Wagons,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6941,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Small Station Wagons,1990,500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,6942,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Small Station Wagons,1990,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59013,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6943,33,0,Volkswagen,Fox Wagon,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,38.0,0.0,Small Station Wagons,1990,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64005,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6944,0,37,Audi,200 quattro Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4102,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6945,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1990,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6946,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,33.0,0.0,Midsize-Large Station Wagons,1990,-2500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6947,0,42,Buick,Century Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1990,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4115,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,6948,0,42,Chevrolet,Celebrity Wagon,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Midsize-Large Station Wagons,1990,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6949,0,42,Chevrolet,Celebrity Wagon,Y,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1990,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,695,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.3333,0.0,Small Pickup Trucks,1985,-1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6950,0,46,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6951,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6952,0,46,Ford,Taurus Wagon V6 A/C,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6953,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,6954,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6955,0,46,Mercury,Sable Wagon V6 A/C,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,6956,0,42,Mercedes-Benz,300TE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Midsize-Large Station Wagons,1990,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20031,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,6957,0,42,Mercedes-Benz,300TE 4Matic,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Midsize-Large Station Wagons,1990,-6750,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4102,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6958,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1990,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4400,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6959,0,42,Oldsmobile,Cutlass Cruiser,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,696,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Small Pickup Trucks,1985,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41020,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6960,0,38,Peugeot,405 Station Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41020,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6961,0,38,Peugeot,405 Station Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1990,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41010,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6962,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1990,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6963,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41030,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,6964,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6965,0,42,Pontiac,6000 Wagon,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1990,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4100,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6966,0,42,Pontiac,6000 Wagon,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1990,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59017,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6967,0,34,Volkswagen,Passat Wagon,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1990,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59019,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,6968,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,42,91,6969,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4831,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,697,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS) BOSCH,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,42,91,6970,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1990,-1000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,6971,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,6972,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,39,95,6973,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1990,-1750,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,6974,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Midsize-Large Station Wagons,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,6975,0,0,Volvo,740 16-Valve Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60050,(16-VALVE) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,6976,0,0,Volvo,740 16-Valve Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60040,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,6977,0,0,Volvo,760 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6978,0,51,Buick,Estate Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6979,0,50,Chevrolet,Caprice Wagon,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4838,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,698,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6980,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6981,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6982,0,50,Oldsmobile,Custom Cruiser,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1990,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6983,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6984,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1990,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6985,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks,1990,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6986,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6987,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1990,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6988,0,0,Nissan,Hardbody 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.3333,0.0,Small Pickup Trucks,1990,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6989,0,0,Nissan,Hardbody 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1990,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4836,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,699,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6990,0,0,Nissan,Hardbody 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1990,-3250,,2MODE VLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6991,0,0,Nissan,Hardbody 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Small Pickup Trucks,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6992,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,6993,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1990,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,6994,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Pickup Trucks,1990,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3622,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6995,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3680,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,6996,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1990,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6997,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1990,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,6998,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1990,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,6999,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Small Pickup Trucks,1990,-2500,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38041,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,23,50,7,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Two Seaters,1985,-4250,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4120,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,70,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38080,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,700,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Small Pickup Trucks,1985,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7000,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7001,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1990,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7002,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1990,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7003,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Small Pickup Trucks,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7004,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Small Pickup Trucks,1990,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7005,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7006,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Small Pickup Trucks,1990,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7007,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,32.0,0.0,Small Pickup Trucks,1990,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3640,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7008,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Small Pickup Trucks,1990,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3642,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7009,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,701,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,28.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3690,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7010,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Small Pickup Trucks,1990,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7011,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4836,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7012,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7013,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7014,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7015,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7016,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7017,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7018,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7019,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,702,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7020,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1990,-4500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7021,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-4500,,Creeper,,,Diesel,,,, +36.608684000000004,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,987.4444444444445,9,0.0,0,0.0,0.0,0.0,0.0,8,7.4,Rear-Wheel Drive,4870,(FFS),-1,6100,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,7022,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,14.0,0.0,Standard Pickup Trucks,1990,-18500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7023,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4836,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7024,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7025,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7026,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7027,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7028,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7029,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +14.140845,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,38082,,-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,703,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7030,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.9487,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7031,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7032,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7033,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5500,,Creeper,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2823,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7034,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.8974,0.0,Standard Pickup Trucks,1990,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2853,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7035,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2859,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7036,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.2051,0.0,Standard Pickup Trucks,1990,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7037,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2853,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7038,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7039,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-6250,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,704,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,28.2051,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7040,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7041,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7042,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7043,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7044,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7045,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1990,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7046,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7047,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,18.0,0.0,Standard Pickup Trucks,1990,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7048,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7049,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,705,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,31.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7050,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7051,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7052,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7053,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1990,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7054,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,18.0,0.0,Standard Pickup Trucks,1990,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7055,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-3250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7056,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1990,-1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7057,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7058,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7059,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(CAL)(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,706,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1861,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7060,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1862,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7061,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Standard Pickup Trucks,1990,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3710,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7062,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3711,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7063,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3714,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7064,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7065,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7066,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3807,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7067,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3906,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7068,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7069,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,707,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,33.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7070,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3902,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7071,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1990,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3708,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7072,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3707,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7073,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3715,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7074,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7075,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7076,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7077,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3905,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7078,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3802,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7079,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,708,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7080,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7081,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.2308,0.0,Standard Pickup Trucks,1990,-11000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7082,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4836,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7083,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7084,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7085,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7086,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7087,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7088,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7089,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,709,0,0,Dodge,Ram 50 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7090,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7091,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1990,-4500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7092,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-4500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7093,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4836,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7094,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7095,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7096,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7097,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4842,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7098,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7099,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,71,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1985,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,3500,,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,710,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7100,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.9487,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7101,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7102,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7103,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7104,0,0,Isuzu,Pickup 2WD 1-Ton,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7105,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1990,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7106,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7107,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS) fuel injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7108,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1990,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7109,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Standard Pickup Trucks,1990,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3505,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,711,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7110,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7111,0,0,Mazda,B2200/B2600i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7112,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks,1990,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7113,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1990,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7114,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7115,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,35.8974,0.0,Standard Pickup Trucks,1990,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7116,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Standard Pickup Trucks,1990,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7117,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7118,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7119,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,2MODE 2LKUP,,,,,,, +14.140845,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,377.037037037037,27,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3620,"(DSL,TRBO)",-1,2200,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,712,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.3077,0.0,Small Pickup Trucks,1985,1000,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7120,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7121,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7122,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7123,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7124,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7125,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7126,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7127,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7128,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7129,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3507,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,713,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,38.0,0.0,Small Pickup Trucks,1985,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7130,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7131,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-6500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7132,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-6500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7133,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7134,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7135,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7136,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7137,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7138,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7139,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,3642,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,714,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7140,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7141,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7142,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7143,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-6500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7144,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7145,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7146,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7147,0,0,Nissan,Hardbody 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.2051,0.0,Standard Pickup Trucks,1990,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7148,0,0,Nissan,Hardbody 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1990,-5250,,2MODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7149,0,0,Nissan,Hardbody 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Rear-Wheel Drive,4800,,-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,715,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.6667,0.0,38.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2953,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7150,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2959,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7151,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1990,-6250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7152,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7153,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7154,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7155,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2952,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7156,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2952,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7157,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1990,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7158,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7159,0,0,Dodge,W100/W150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-11000,,Creeper,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4810,,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,716,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,44.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7160,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1990,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7161,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.9487,0.0,Standard Pickup Trucks,1990,-15500,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7162,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Standard Pickup Trucks,1990,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7163,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7164,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1990,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7165,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-15500,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1928,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7166,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1990,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7167,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,31.0,0.0,Standard Pickup Trucks,1990,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7168,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7169,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Standard Pickup Trucks,1990,-1750,,SIL,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,4810,,-1,2100,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,717,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7170,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1990,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7171,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1962,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7172,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1990,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3746,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7173,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7174,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7175,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7176,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3823,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7177,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Standard Pickup Trucks,1990,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3830,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7178,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3824,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7179,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,718,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3829,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7180,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1990,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3827,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7181,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3922,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7182,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Standard Pickup Trucks,1990,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7183,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3832,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7184,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3820,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7185,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3828,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7186,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3825,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7187,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3921,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7188,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.2308,0.0,Standard Pickup Trucks,1990,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7189,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,719,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.4444,0.0,33.3333,0.0,Small Pickup Trucks,1985,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7190,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7191,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7192,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7193,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1990,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7194,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7195,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7196,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7197,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7198,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7199,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-6500,,CLKUP,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,4142,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,72,10,0,Chevrolet,Cavalier Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1985,-3250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,720,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,37.0,0.0,Small Pickup Trucks,1985,-500,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7200,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-6500,,Creeper,,,Diesel,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7201,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.7949,0.0,Standard Pickup Trucks,1990,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7202,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1990,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7203,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-6250,,SIL Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7204,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7205,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7206,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1990,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4942,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7207,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7208,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7209,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1990,-11000,,SIL Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4831,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,721,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7210,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1990,-9250,,SIL,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7211,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-6500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7212,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0769,0.0,Standard Pickup Trucks,1990,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7213,0,0,GMC,S15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1990,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7214,0,0,GMC,S15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7215,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1990,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7216,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7217,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7218,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7219,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4838,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,722,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7220,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7221,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1990,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7222,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1990,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7223,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1990,-6250,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7224,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1990,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7225,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1990,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7226,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Vans,1990,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7227,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Vans,1990,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7228,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1990,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7229,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Vans,1990,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4836,,-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,723,0,0,GMC,S15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7230,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.2308,0.0,Vans,1990,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7231,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7232,0,0,Chevrolet,G10/20 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7233,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1990,-4500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7234,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,17.9487,0.0,Vans,1990,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7235,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1990,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7236,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7237,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Vans,1990,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7238,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Vans,1990,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7239,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,20.0,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29080,,-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,724,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.2222,0.0,28.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7240,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7241,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Vans,1990,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2857,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7242,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7243,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.2308,0.0,Vans,1990,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7244,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7245,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.9487,0.0,Vans,1990,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3663,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7246,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3660,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7247,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Vans,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3682,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7248,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1990,-4250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3692,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7249,0,0,Ford,Aerostar Van AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Vans,1990,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29082,,-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,725,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,40.0,0.0,Small Pickup Trucks,1985,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3709,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7250,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.2308,0.0,Vans,1990,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7251,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3907,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7252,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Vans,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3904,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7253,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.2308,0.0,Vans,1990,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7254,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1990,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7255,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7256,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1990,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3903,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7257,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1990,-13000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7258,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Vans,1990,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7259,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,19.2308,0.0,Vans,1990,-7750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29080,,-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,726,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,39.7436,0.0,Small Pickup Trucks,1985,500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7260,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7261,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Vans,1990,-6250,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7262,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1990,-4500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7263,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,17.9487,0.0,Vans,1990,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7264,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1990,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7265,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Vans,1990,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7266,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Vans,1990,-1750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7267,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1990,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49085,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7268,0,0,Mitsubishi,Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,28.2051,0.0,Vans,1990,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7269,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1990,-5250,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,29080,,-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,727,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7270,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1990,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4837,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7271,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1990,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7272,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7273,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7274,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Vans,1990,-5500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7275,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38084,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7276,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Vans,1990,-5250,,2MODE VLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38084,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7277,0,0,Nissan,Van (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.9231,0.0,Vans,1990,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7278,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,22.0,0.0,Vans,1990,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7279,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29081,,-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,728,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-250,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7280,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Vans,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7281,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Vans,1990,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7282,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7283,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7284,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1990,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7285,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Vans,1990,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7286,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7287,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,16.6667,0.0,Vans,1990,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3662,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7288,0,0,Ford,Aerostar Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1990,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3661,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7289,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Vans,1990,-4250,,,,,,,,, +11.924172,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,318.125,32,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29081,,-1,1850,0,Diesel,Diesel,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,729,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,38.8889,0.0,49.0,0.0,Small Pickup Trucks,1985,2750,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3681,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7290,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1990,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3691,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7291,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Vans,1990,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7292,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7293,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7294,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.2308,0.0,Vans,1990,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4837,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7295,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1990,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7296,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7297,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1990,-9250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7298,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Vans,1990,-5500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7299,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Vans,1990,-7750,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4100,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,79,73,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Subcompact Cars,1985,1500,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,29081,,-1,2000,0,Diesel,Diesel,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,730,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,46.0,0.0,Small Pickup Trucks,1985,2000,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7300,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Vans,1990,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49085,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7301,0,0,Mitsubishi,Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.9231,0.0,Vans,1990,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59018,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7302,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,20.0,0.0,Vans,1990,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59018,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7303,0,0,Volkswagen,Vanagon/Camper 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0769,0.0,Vans,1990,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59018,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7304,0,0,Volkswagen,Vanagon/Camper 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Vans,1990,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7305,0,0,Chevrolet,Lumina/APV Minivan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7306,0,0,Chevrolet,R1500 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1990,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7307,0,0,Chevrolet,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-5500,,CLKUP,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7308,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7309,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(CAL)(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,731,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38085,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7310,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38085,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7311,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1990,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7312,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicle 2WD,1990,-5250,,2MODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7313,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1990,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7314,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2882,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7315,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1990,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7316,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicle 2WD,1990,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2824,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7317,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7318,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7319,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1990,-500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,732,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,26.0,0.0,33.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2824,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7320,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1990,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7321,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7322,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7323,0,0,Dodge,Caravan/Grand Caravan/Ram Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7324,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7325,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,1822,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7326,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1861,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7327,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1990,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,1862,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7328,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3621,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7329,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1990,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49081,(CAL)(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,733,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,3623,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7330,0,0,Ford,Bronco II 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicle 2WD,1990,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7331,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,23.0,0.0,Special Purpose Vehicle 2WD,1990,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7332,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-5500,,CLKUP,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7333,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7334,0,0,GMC,S15 Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29085,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7335,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7336,0,0,Isuzu,Amigo 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1990,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7337,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56086,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7338,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7339,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1990,-4250,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,49080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,734,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7340,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicle 2WD,1990,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7341,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2824,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7342,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2821,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7343,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2822,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7344,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1990,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2824,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7345,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Special Purpose Vehicle 2WD,1990,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7346,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2832,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7347,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2841,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7348,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54085,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7349,0,0,Suzuki,Sidekick 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,36.0,0.0,Special Purpose Vehicle 2WD,1990,500,,,,,,,,, +13.631265,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,49082,"(DSL,TRBO)",-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,735,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,43.0,0.0,Small Pickup Trucks,1985,1500,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7350,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7351,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7352,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicle 2WD,1990,-5250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7353,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1990,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7354,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1990,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7355,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7356,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1990,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7357,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1990,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7358,0,0,Chevrolet,Suburban V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7359,0,0,Chevrolet,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1990,-11000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,736,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,27.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7360,0,0,Chevrolet,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1990,-6500,,CLKUP,,,Diesel,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,19081,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7361,0,0,Daihatsu,Rocky 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,30.0,0.0,Special Purpose Vehicles,1990,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7362,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicles,1990,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7363,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1990,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7364,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-6250,,2MODE VLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7365,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7366,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Special Purpose Vehicles,1990,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2982,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7367,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1990,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7368,0,0,Dodge,AW100/AW150 Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1990,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2992,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7369,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,18.0,0.0,Special Purpose Vehicles,1990,-15500,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49084,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,737,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,27.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7370,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicles,1990,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7371,0,0,Dodge,Colt Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49093,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7372,0,0,Dodge,Raider 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7373,0,0,Dodge,Raider 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7374,0,0,Dodge,Raider 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7375,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1990,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1928,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7376,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1990,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7377,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,30.7692,0.0,Special Purpose Vehicles,1990,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7378,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1990,-2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7379,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1990,-5250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49083,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,738,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1962,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7380,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1990,-4250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1991,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7381,0,0,Jeep,Grand Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1990,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,1961,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7382,0,0,Jeep,Wagoneer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1990,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7383,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1990,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1922,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7384,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1971,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7385,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.0,0.0,Special Purpose Vehicles,1990,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1971,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7386,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3641,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7387,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.9231,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3643,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7388,0,0,Ford,Bronco II 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1990,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3745,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7389,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1990,-7750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,49084,(CAL)(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,739,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3743,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7390,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1990,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3822,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7391,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Special Purpose Vehicles,1990,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3831,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7392,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1990,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3821,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7393,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1990,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3826,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7394,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1990,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3920,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7395,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.2308,0.0,Special Purpose Vehicles,1990,-11000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7396,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,32.0,0.0,Special Purpose Vehicles,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7397,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,500,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7398,0,0,Geo,Tracker 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,32.0,0.0,Special Purpose Vehicles,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7399,0,0,Geo,Tracker 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4103,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,74,0,0,Chevrolet,Chevette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57081,,-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,740,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.7692,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7400,0,0,GMC,S15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1990,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7401,0,0,GMC,S15 Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1990,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7402,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7403,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1990,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7404,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1990,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7405,0,0,GMC,Suburban V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Special Purpose Vehicles,1990,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7406,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1990,-11000,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7407,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1990,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7408,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7409,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1990,-6250,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57081,,-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,741,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,40.0,0.0,Small Pickup Trucks,1985,1500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7410,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7411,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7412,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,4.9,4-Wheel or All-Wheel Drive,34301,(FFS) (MPFI),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7413,0,0,Laforza Automobile Inc,Laforza,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1990,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46001,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7414,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1990,-11250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49093,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7415,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7416,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7417,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7418,0,0,Mazda,MPV 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1990,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7419,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1990,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57081,,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,742,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7420,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicles,1990,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49080,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7421,0,0,Plymouth,Colt Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7422,0,0,Subaru,Loyale Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,29.0,0.0,Special Purpose Vehicles,1990,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7423,0,0,Subaru,Loyale Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1990,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7424,0,0,Subaru,Loyale 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,29.0,0.0,Special Purpose Vehicles,1990,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7425,0,0,Subaru,Loyale 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1990,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54082,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7426,0,0,Suzuki,Samurai Hardtop,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1990,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54082,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7427,0,0,Suzuki,Samurai Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1990,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7428,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Special Purpose Vehicles,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7429,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,743,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Small Pickup Trucks,1985,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7430,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,32.0,0.0,Special Purpose Vehicles,1990,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7431,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,36.0,0.0,Special Purpose Vehicles,1990,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,57017,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7432,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1990,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7433,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.359,0.0,Special Purpose Vehicles,1990,-5250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7434,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1990,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7435,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1990,-6250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57016,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7436,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.359,0.0,Special Purpose Vehicles,1990,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4611,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7437,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1990,-6750,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7438,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1990,-4250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2853,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,7439,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,15.0,0.0,Special Purpose Vehicle 2WD,1990,-13000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57093,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,744,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,31.0,0.0,Small Pickup Trucks,1985,-1750,,2MODE 2LKUP,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2852,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7440,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.7949,0.0,Special Purpose Vehicle 2WD,1990,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2892,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7441,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1990,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4300,(GM-OLDS) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7442,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1990,-3250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,7443,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,14.0,0.0,Special Purpose Vehicle 2WD,1990,-15500,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7444,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,16.0,0.0,Special Purpose Vehicle 2WD,1990,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7445,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Two Seaters,1991,-4750,,3LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7446,0,0,Acura,NSX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1991,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9004,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7447,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0,0.0,Two Seaters,1991,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7448,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Two Seaters,1991,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7449,0,0,Buick,Reatta,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Two Seaters,1991,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57082,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,745,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-500,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4610,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7450,0,0,Cadillac,Allante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,28.2051,0.0,Two Seaters,1991,-6750,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,14301,"(350 V8) (GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7451,0,0,Chevrolet,Twin-Turbo Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,16.0,0.0,27.0,0.0,Two Seaters,1991,-8000,T,SIL CMODE,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4121,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7452,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0,0.0,Two Seaters,1991,-5750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7453,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Two Seaters,1991,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4103,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7454,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,33.0,0.0,Two Seaters,1991,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2001,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7455,0,0,Chrysler,TC by Maserati,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1991,-4750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,16201,"(FFS,TRBO) (MPFI)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7456,0,0,Consulier Industries Inc,Consulier GTP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Two Seaters,1991,-1000,,EMS,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7457,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Two Seaters,1991,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38035,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7458,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1991,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7459,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1991,-4750,,,,,,,,, +12.739500000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,339.3333333333333,30,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57083,,-1,2000,0,Diesel,Diesel,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,746,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,45.0,0.0,Small Pickup Trucks,1985,2000,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38035,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7460,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1991,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,22201,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7461,0,0,Evans Automobiles,Series 1,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Two Seaters,1991,-2500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,2.9,Rear-Wheel Drive,22010,"(GUZZLER) (FFS,TRBO)",-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7462,0,0,Ferrari,F40,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.0,0.0,Two Seaters,1991,-11250,T,,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7463,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1991,-13000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22021,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7464,0,0,Ferrari,348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1991,-9500,T,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7465,0,0,Geo,Metro LSI Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,36.0,0.0,47.0,0.0,Two Seaters,1991,2750,,,,,,,,, +8.89947,0.0,0.0,0.0,34,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1500,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,7466,0,0,Geo,Metro LSI Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,45.0,0.0,59.0,0.0,Two Seaters,1991,4500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,25103,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7467,0,0,Ferrari,Testerossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.2308,0.0,Two Seaters,1991,-15500,T,EMS,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,25105,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7468,0,0,Porsche,Carrera 4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.0,0.0,Two Seaters,1991,-9500,T,EMS,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,25104,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7469,0,0,Mercedes-Benz,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Two Seaters,1991,-9250,T,EMS,,,,,,, +13.631265,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,363.57142857142856,28,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57083,,-1,2100,0,Diesel,Diesel,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,747,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,43.0,0.0,Small Pickup Trucks,1985,1500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,25401,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7470,0,0,Goldacre,Goldacre Limited,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Two Seaters,1991,-4750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7471,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,32.0,0.0,44.0,0.0,Two Seaters,1991,1750,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7472,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,46.0,0.0,Two Seaters,1991,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7473,0,0,Honda,Civic CRX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.0,0.0,Two Seaters,1991,1750,,,,,,,,, +7.646952,0.0,0.0,0.0,40,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,47,0.0,0,0.0,0.0,0.0,0.0,0,0,7474,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,54.0,0.0,67.0,0.0,Two Seaters,1991,5500,,SIL,,,,,,, +8.438016000000001,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,227.87179487179486,39,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,0,0,7475,0,0,Honda,Civic CRX HF,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.0,0.0,62.8205,0.0,Two Seaters,1991,5000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26601,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7476,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Two Seaters,1991,-6250,T,EMS,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30568,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7477,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Two Seaters,1991,-11250,T,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,31403,(GUZZLER) (FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7478,0,0,J.K. Motors,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,19.0,0.0,Two Seaters,1991,-13000,T,EMS,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,31404,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7479,0,0,J.K. Motors,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,20.0,0.0,Two Seaters,1991,-15500,T,EMS,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49082,"(DSL,TRBO)",-1,2300,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,748,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,39.0,0.0,Small Pickup Trucks,1985,500,,,T,,Diesel,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,Rear-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7480,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1991,-18250,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,34705,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7481,4,0,Porsche,Carrera,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Two Seaters,1991,-5250,T,EMS,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35002,"ELAN TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7482,0,0,Lotus,Elan,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Two Seaters,1991,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"GMP4 ANDIC (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7483,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1991,-3750,,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36001,"(GUZZLER) (FFS,TRBO)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7484,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Two Seaters,1991,-8000,T,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36002,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7485,0,0,Maserati,Spyder,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Two Seaters,1991,-9500,T,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS) (ROTARY),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7486,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.0,0.0,Two Seaters,1991,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS) (ROTARY),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7487,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56015,"(FFS,TRBO) (ROTARY)",-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7488,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.7692,0.0,Two Seaters,1991,-4250,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56020,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7489,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,36.0,0.0,Two Seaters,1991,0,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49083,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,749,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,24.359,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7490,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Two Seaters,1991,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7491,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1991,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7492,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.2051,0.0,Two Seaters,1991,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7493,0,0,Mercedes-Benz,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Two Seaters,1991,-9500,T,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57001,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7494,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Two Seaters,1991,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7495,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Two Seaters,1991,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7496,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Two Seaters,1991,-500,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,60330,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7497,0,0,Wallace Environmental,Wetl Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,11.0,0.0,20.0,0.0,Two Seaters,1991,-15500,T,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,56,7498,0,0,Nissan,NX Coupe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Minicompact Cars,1991,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,56,7499,0,0,Nissan,NX Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,49.0,0.0,Minicompact Cars,1991,2250,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,4102,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,75,0,0,Chevrolet,Chevette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Subcompact Cars,1985,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49084,(CAL)(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,750,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,24.0,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,56,7500,0,0,Nissan,NX Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Minicompact Cars,1991,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,56,7501,0,0,Nissan,NX Coupe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.7436,0.0,Minicompact Cars,1991,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38021,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,71,7502,9,0,Nissan,240SX,N,false,71,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Minicompact Cars,1991,-2250,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38021,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,71,7503,9,0,Nissan,240SX,Y,false,71,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Minicompact Cars,1991,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7504,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,34.0,0.0,Minicompact Cars,1991,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3040,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7505,6,0,Mercury,Capri,Y,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1991,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7506,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Minicompact Cars,1991,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42046,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7507,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,31.0,0.0,Minicompact Cars,1991,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42046,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7508,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1991,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42045,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7509,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic (S4),17.7778,0.0,28.2051,0.0,Minicompact Cars,1991,-6750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49084,(CAL)(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,751,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42050,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7510,4,0,Porsche,911 Turbo,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,27.0,0.0,Minicompact Cars,1991,-9500,T,,T,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,7511,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Minicompact Cars,1991,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,42030,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,8,74,7512,0,0,Porsche,928 S4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,24.359,0.0,Minicompact Cars,1991,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,7513,0,0,Porsche,944 S2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1991,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57005,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7514,0,9,Toyota,Celica Convertible,N,false,0,68,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Minicompact Cars,1991,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7515,0,9,Toyota,Celica Convertible,Y,false,0,68,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Minicompact Cars,1991,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7516,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7517,6,0,Volkswagen,Cabriolet,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Minicompact Cars,1991,1000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7518,14,0,Wallace Environmental,Wetl 300 SL,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Minicompact Cars,1991,-8000,T,2MODE,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,7519,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,35.8974,0.0,Subcompact Cars,1991,0,,2MODE 3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,752,0,0,Dodge,Power Ram 50 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,7520,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,36.0,0.0,Subcompact Cars,1991,0,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,7521,6,0,Aston Martin,Virage Saloon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,19.2308,0.0,Subcompact Cars,1991,-13250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7522,6,0,Aston Martin,Virage Saloon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.0,0.0,Subcompact Cars,1991,-11250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64012,(20-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,14,75,7523,0,0,Audi,Coupe quattro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7524,0,8,Audi,80 quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7525,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1991,-2500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7526,0,10,Audi,80/90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1991,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64012,(20-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7527,0,8,Audi,90 quattro 20v,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,12050,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7528,12,0,BMW,M3,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,37.0,0.0,Subcompact Cars,1991,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12035,(FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7529,12,12,BMW,318is,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,35.0,0.0,Subcompact Cars,1991,-2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3510,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,753,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Small Pickup Trucks,1985,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12037,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7530,12,12,BMW,318is,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1991,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12035,(FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7531,9,0,BMW,318is Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1991,-2250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7532,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7533,9,0,BMW,325i Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7534,12,12,BMW,325i/325is,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12041,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7535,12,12,BMW,325i/325is,N,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7536,12,12,BMW,325ix,N,false,81,81,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,4-Wheel or All-Wheel Drive,12045,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7537,12,12,BMW,325ix,Y,false,81,81,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7538,11,0,BMW,850i,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Subcompact Cars,1991,-9250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7539,11,0,BMW,850i,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,24.0,0.0,Subcompact Cars,1991,-9250,T,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3630,,-1,2350,0,Diesel,Diesel,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,754,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,37.1795,0.0,Small Pickup Trucks,1985,250,,,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4105,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,7540,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4115,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7541,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1991,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4106,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,7542,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Subcompact Cars,1991,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7543,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4104,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7544,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1991,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7545,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1991,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,7546,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1991,-5750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4130,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7547,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1991,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4128,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,7548,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,45.0,0.0,Subcompact Cars,1991,1000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7549,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3651,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,755,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4122,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7550,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1991,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7551,10,0,Chevrolet,Cavalier Convertible,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4135,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7552,10,0,Chevrolet,Cavalier Convertible,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1991,-1750,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,79,7553,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,79,7554,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.0,0.0,Subcompact Cars,1991,5000,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7555,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7556,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7557,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7558,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7559,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,34.0,0.0,Subcompact Cars,1991,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,3650,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,756,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,19001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,7560,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1991,4000,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19003,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,7561,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1991,1750,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19003,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,79,7562,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1991,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38004,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7563,12,12,Nissan,Sentra,N,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1991,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7564,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Subcompact Cars,1991,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7565,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,47.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38004,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,7566,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,49.0,0.0,Subcompact Cars,1991,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38013,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7567,12,12,Nissan,Sentra,N,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1991,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38014,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7568,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,1991,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7569,12,12,Nissan,Sentra,N,false,85,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,1991,500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,29090,,-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,757,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.3333,0.0,29.0,0.0,Small Pickup Trucks,1985,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,7570,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Subcompact Cars,1991,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,7571,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1991,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,7572,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,7573,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1991,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,7574,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,7575,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Subcompact Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,81,7576,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,7577,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,81,7578,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,7579,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +15.924375000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,424.1666666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,29091,,-1,2450,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,758,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,30.0,0.0,34.0,0.0,Small Pickup Trucks,1985,-250,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,7580,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7581,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7582,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Subcompact Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7583,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1991,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7584,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7585,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,(DOHC) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7586,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1991,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,(SOHC) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7587,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1991,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,(SOHC) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7588,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,(DOHC) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7589,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,759,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Small Pickup Trucks,1985,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7590,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1991,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,10,81,7591,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1991,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,81,7592,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1991,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,10,81,7593,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1991,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(DOHC) (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,81,7594,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7595,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1991,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7596,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7597,4,0,Ferrari,Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1991,-11250,T,,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,86,7598,0,0,Ford,Festiva,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,42.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,12,86,7599,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,54.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +10.599264000000002,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,282.77777777777777,36,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,4110,,-1,1650,0,Diesel,Diesel,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,10,79,76,0,0,Chevrolet,Chevette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,59.0,0.0,Subcompact Cars,1985,3750,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,1810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,760,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,26.0,0.0,Small Pickup Trucks,1985,-3250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,7600,18,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1991,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,7601,18,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3403,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,83,7602,18,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1991,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3402,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,7603,18,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,30.7692,0.0,Subcompact Cars,1991,-4250,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,7604,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,7605,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.0,0.0,Subcompact Cars,1991,5000,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,7606,0,0,Geo,Metro LSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,7607,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.0,0.0,Subcompact Cars,1991,5000,,SIL,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,7608,0,0,Geo,Metro XFI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.1577,0.0,74.6975,0.0,Subcompact Cars,1991,6250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,82,7609,0,11,Geo,Prizm,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,761,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Small Pickup Trucks,1985,-6250,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57602,(4A-GE) (FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,82,7610,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1991,-1000,,2MODE 2LKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,17,82,7611,0,11,Geo,Prizm,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1991,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57602,(4A-GE) (FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,82,7612,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,7613,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,7614,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1991,500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,83,7615,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1991,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,83,7616,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,85,7617,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1991,1500,,2LKUP,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,85,7618,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 4-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1991,2750,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,85,7619,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,45.0,0.0,Subcompact Cars,1991,2500,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,762,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,24.359,0.0,Small Pickup Trucks,1985,-5250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,85,7620,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1991,0,,2LKUP,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26011,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,85,7621,0,12,Honda,Civic,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26031,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7622,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Subcompact Cars,1991,-1750,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26031,(FFS) 2 barrel carb,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7623,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(FFS) fuel injection,-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7624,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1991,-1000,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26032,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7625,11,0,Honda,Prelude,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,26041,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7626,11,0,Honda,Prelude,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Subcompact Cars,1991,-1750,,2MODE 3LKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,26041,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7627,11,0,Honda,Prelude,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1991,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26590,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,7628,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,41.0,0.0,Subcompact Cars,1991,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26590,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,7629,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,763,0,0,Jeep,Scrambler,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1985,-4250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,7630,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1991,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,7631,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Subcompact Cars,1991,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,7632,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26550,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7633,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1991,1000,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26550,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7634,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29021,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,7635,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,41.0,0.0,Subcompact Cars,1991,500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,7636,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1991,-1750,,,T,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29021,(DOHC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,83,7637,11,0,Isuzu,Impulse,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.3077,0.0,Subcompact Cars,1991,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38036,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7638,12,0,Infiniti,M30,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1991,-3750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30563,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7639,11,0,Jaguar,XJS Coupe,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,23.0,0.0,Subcompact Cars,1991,-9500,T,,,,,,,, +14.675904000000001,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,49082,"(DSL,TRBO)",-1,2300,0,Diesel,Diesel,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,764,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,39.0,0.0,Small Pickup Trucks,1985,500,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,34703,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7640,12,0,BMW,318i,Y,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,34703,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7641,12,0,BMW,318is,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,34702,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7642,12,0,Mercedes-Benz,190E,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1991,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,34702,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7643,0,14,Mercedes-Benz,230TE,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1991,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,36001,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7644,0,14,Maserati,430,N,false,0,72,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Subcompact Cars,1991,-9500,T,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7645,0,12,Mercedes-Benz,190E 2.3,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1991,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7646,0,12,Mercedes-Benz,190E 2.3,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1991,-2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7647,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7648,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1991,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20033,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7649,14,0,Mercedes-Benz,300CE,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1991,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49083,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,765,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Small Pickup Trucks,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,(SOHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,81,7650,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1991,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,(SOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,81,7651,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,10,81,7652,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1991,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,81,7653,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1991,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,10,81,7654,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1991,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"(DOHC) (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,10,81,7655,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1991,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7656,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7657,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1991,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,7658,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,7659,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,49084,(CAL)(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,766,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Small Pickup Trucks,1985,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,7660,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1991,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,7661,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.8718,0.0,Subcompact Cars,1991,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,7662,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,7663,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,(DOHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,7664,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1991,0,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,(DOHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,7665,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1991,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,(DOHC) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7666,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1991,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"(DOHC) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7667,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1991,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,(DOHC) (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,82,7668,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,7669,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,767,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,7670,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1991,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,7671,0,10,Plymouth,Colt,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,(SOHC) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,81,7672,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1991,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,(SOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,81,7673,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,10,81,7674,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1991,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,10,81,7675,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1991,-1000,,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7676,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"(DOHC) (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,10,81,7677,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1991,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4105,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,85,7678,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4115,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7679,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1991,-3250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,768,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4106,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,7680,0,0,Pontiac,Firebird/Trans Am,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1991,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7681,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7682,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1991,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4104,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,85,7683,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1991,-4750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS) (MPFI),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,85,7684,0,0,Pontiac,Firebird/Trans Am,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,31.0,0.0,Subcompact Cars,1991,-5750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,79,7685,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,79,7686,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.0,0.0,Subcompact Cars,1991,5000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4108,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7687,13,13,Pontiac,Sunbird,Y,false,83,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,41.0,0.0,Subcompact Cars,1991,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7688,13,13,Pontiac,Sunbird,N,false,83,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,46.0,0.0,Subcompact Cars,1991,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7689,13,13,Pontiac,Sunbird,N,false,83,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,769,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4122,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7690,13,13,Pontiac,Sunbird,N,false,83,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1991,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7691,10,0,Pontiac,Sunbird Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,39.7436,0.0,Subcompact Cars,1991,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4107,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7692,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.0,0.0,Subcompact Cars,1991,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7693,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4122,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7694,10,0,Pontiac,Sunbird Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1991,-1750,,SIL,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7695,10,0,Rolls-Royce,Continental,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Subcompact Cars,1991,-18250,T,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,7696,10,0,Rolls-Royce,Corniche III,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Subcompact Cars,1991,-18250,T,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47026,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7697,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1991,-4250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47022,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7698,10,0,Saab,900 Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1991,-1000,,SIL,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7699,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0256,0.0,Subcompact Cars,1991,500,,2MODE CLKUP,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29030,,-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,85,77,0,11,Chevrolet,Spectrum,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,36.6667,0.0,44.8718,0.0,Subcompact Cars,1985,2750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,770,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7700,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,7701,0,0,Subaru,Justy,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1991,2750,,SIL,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,7702,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.0,0.0,45.0,0.0,Subcompact Cars,1991,2750,,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,7703,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1991,2750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,10,79,7704,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.4444,0.0,39.7436,0.0,Subcompact Cars,1991,1750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,7705,0,0,Subaru,Justy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,41.0,0.0,Subcompact Cars,1991,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7706,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.0,0.0,Subcompact Cars,1991,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66022,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7707,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,66040,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7708,10,0,Subaru,XT,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1991,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7709,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1991,-500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,771,0,0,Chevrolet,C10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66022,(FFS) (MPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7710,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Subcompact Cars,1991,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7711,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1991,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.7,4-Wheel or All-Wheel Drive,66040,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7712,10,0,Subaru,XT 4WD,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1991,-2500,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,7713,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1991,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54004,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,7714,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.0,0.0,64.0,0.0,Subcompact Cars,1991,5000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,10,82,7715,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1991,1750,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,10,82,7716,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1991,4250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54007,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,7717,0,0,Suzuki,Swift GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Subcompact Cars,1991,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,74,7718,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,15,74,7719,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,772,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57016,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,15,74,7720,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,74,7721,10,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1991,-500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57005,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,15,74,7722,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1991,0,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57005,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,15,74,7723,10,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1991,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7724,12,13,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,37.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7725,12,13,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57008,(4A-GE) (FFS),-1,2400,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7726,12,13,Toyota,Corolla,N,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1991,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7727,12,13,Toyota,Corolla,Y,false,76,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1991,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,7728,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1991,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57012,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,7729,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1991,-4750,,2MODE 2LKUP,T,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,773,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,7730,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1991,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57012,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,7731,0,0,Toyota,Supra,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1991,-4750,,,T,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7732,11,11,Toyota,Tercel,Y,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1991,500,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,7733,11,11,Toyota,Tercel,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,36.6667,0.0,48.0,0.0,Subcompact Cars,1991,3000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57006,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,7734,11,11,Toyota,Tercel,Y,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1991,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59009,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,80,7735,0,0,Volkswagen,Corrado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1991,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59009,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,80,7736,0,0,Volkswagen,Corrado,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Subcompact Cars,1991,-1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7737,10,10,Volkswagen,Fox,N,false,77,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7738,10,10,Volkswagen,Fox,N,false,77,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1991,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60303,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7739,0,12,Wallace Environmental,Wetl 190E,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,774,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,Overdrive,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60303,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7740,0,12,Wallace Environmental,Wetl 190E 2.3,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Subcompact Cars,1991,-3750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7741,14,0,Wallace Environmental,Wetl 300 CE,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Subcompact Cars,1991,-8000,T,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26071,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7742,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Compact Cars,1991,-4750,,3LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26071,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7743,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Compact Cars,1991,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7744,0,15,Alfa Romeo,164,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1991,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7745,0,15,Alfa Romeo,164,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Compact Cars,1991,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9002,164S (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7746,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1991,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,34,125,7747,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.7,Front-Wheel Drive,10801,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,34,125,7748,0,12,Sterling,827,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Compact Cars,1991,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12060,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7749,0,13,BMW,M5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,26.0,0.0,Compact Cars,1991,-11250,T,,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,775,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12055,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7750,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Compact Cars,1991,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12055,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7751,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1991,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7752,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Compact Cars,1991,-5250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7753,0,13,BMW,535i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Compact Cars,1991,-5250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4300,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7754,13,13,Buick,Skylark,N,false,90,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7755,13,13,Buick,Skylark,N,false,90,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7756,13,13,Buick,Skylark,Y,false,90,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Compact Cars,1991,-2500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7757,13,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.7436,0.0,Compact Cars,1991,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7758,13,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.3077,0.0,Compact Cars,1991,500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4302,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7759,13,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,-500,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4882,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,776,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7760,13,0,Chevrolet,Beretta,N,false,93,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Compact Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4122,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7761,13,0,Chevrolet,Beretta,Y,false,93,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1991,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7762,14,14,Chrysler,LeBaron,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7763,14,14,Chrysler,LeBaron,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Compact Cars,1991,-3750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7764,14,14,Chrysler,LeBaron,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1991,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7765,14,14,Chrysler,LeBaron,N,false,89,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Compact Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7766,14,14,Chrysler,LeBaron,N,false,89,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Compact Cars,1991,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7767,0,14,Nissan,Stanza,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1991,-1000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7768,0,14,Nissan,Stanza,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1991,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,7769,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4884,,-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,777,0,0,Chevrolet,C10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-3500,,Creeper,,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,89,7770,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1991,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,7771,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,13,89,7772,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1991,-4750,,CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,89,7773,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1991,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,7774,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1991,-3000,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7775,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Compact Cars,1991,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7776,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Compact Cars,1991,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7777,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Compact Cars,1991,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,7778,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Compact Cars,1991,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,91,7779,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1991,0,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,778,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,91,7780,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1991,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,91,7781,0,0,Ford,Escort,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1991,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3102,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,91,7782,0,0,Ford,Escort,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1991,2250,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,17,91,7783,0,0,Ford,Escort FS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,52.0,0.0,Compact Cars,1991,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3191,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,90,7784,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3193,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,90,7785,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3192,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,90,7786,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.7436,0.0,Compact Cars,1991,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3190,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,90,7787,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1991,-2250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3331,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,90,7788,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,90,7789,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1991,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,779,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7790,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7791,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Compact Cars,1991,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7792,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3200,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7793,13,13,Ford,Tempo AWD,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Compact Cars,1991,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26051,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7794,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1991,-500,,2MODE 3LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7795,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.1795,0.0,Compact Cars,1991,0,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,7796,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Compact Cars,1991,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,7797,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Compact Cars,1991,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26560,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,7798,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1991,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7799,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Compact Cars,1991,1500,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,29030,,-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,17,85,78,0,11,Chevrolet,Spectrum,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,55.0,0.0,Subcompact Cars,1985,4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,780,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,7800,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,47.0,0.0,Compact Cars,1991,2500,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29022,(DOHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7801,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Compact Cars,1991,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7802,0,14,Infiniti,G20,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7803,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1991,500,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7804,24,0,BMW,325i,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1991,-8000,T,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7805,23,0,BMW,325ic,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1991,-8000,T,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7806,0,23,BMW,325is,N,false,0,82,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1991,-8000,T,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7807,24,0,Import Trade Services,ITS 320,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1991,-8000,T,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30551,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7808,0,13,Jaguar,XJ6,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1991,-5750,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,31409,(GUZZLER),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7809,0,4,Mercedes-Benz,190E,N,false,0,4,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.0,0.0,Compact Cars,1991,-4250,T,EMS,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,781,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-11000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7810,0,13,Lexus,ES 250,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1991,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7811,0,13,Lexus,ES 250,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7812,13,13,Mercury,Topaz,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,33.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7813,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,41.0,0.0,Compact Cars,1991,0,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7814,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,37.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3200,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7815,13,13,Mercury,Topaz AWD,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.7692,0.0,Compact Cars,1991,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,91,7816,0,0,Mercury,Tracer,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,91,7817,0,0,Mercury,Tracer,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1991,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,91,7818,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1991,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3102,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,91,7819,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1991,2250,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,782,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,34702,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7820,0,15,Mercedes-Benz,200E,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,33.3333,0.0,Compact Cars,1991,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,34702,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7821,0,15,Mercedes-Benz,230E,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,33.3333,0.0,Compact Cars,1991,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,56031,BPE (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7822,0,11,Mazda,323 Protege 4x4,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,33.0,0.0,Compact Cars,1991,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,56031,BPE (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7823,0,11,Mazda,323 Protege 4x4,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Compact Cars,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,7824,0,13,Mazda,323/323 Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1991,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,7825,0,13,Mazda,323/323 Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1991,2250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56031,BPE (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,92,7826,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1991,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56032,BPD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,92,7827,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Compact Cars,1991,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56031,BPE (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,7828,0,13,Mazda,323/323 Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1991,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56032,BPD (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,92,7829,0,13,Mazda,323/323 Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Compact Cars,1991,500,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4884,,-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,783,0,0,Chevrolet,C20 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5500,,Creeper,,,Diesel,,,, +14.675904000000001,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,391.53846153846155,26,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20015,"(DSL,TRBO) (NO-CAT)",-1,2300,0,Diesel,Diesel,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7830,0,15,Mercedes-Benz,300D 2.5 Turbo,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,42.0,0.0,Compact Cars,1991,500,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7831,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1991,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7832,0,15,Mercedes-Benz,300E 2.6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1991,-3750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20030,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7833,0,15,Mercedes-Benz,300E 4Matic,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Compact Cars,1991,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20039,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7834,0,15,Mercedes-Benz,300SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Compact Cars,1991,-6750,T,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7835,0,15,Mercedes-Benz,350SD Turbo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Compact Cars,1991,-2000,,,T,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7836,15,0,Mercedes-Benz,560SEC,Y,false,88,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Compact Cars,1991,-9500,T,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7837,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Compact Cars,1991,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(DOHC) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7838,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Compact Cars,1991,-1750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49045,(DOHC) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7839,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Compact Cars,1991,-2500,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,784,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49046,"(DOHC) (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7840,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7841,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Compact Cars,1991,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,(DOHC) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7842,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1991,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49045,(DOHC) (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7843,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,29.0,0.0,Compact Cars,1991,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4300,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7844,13,13,Oldsmobile,Cutlass Calais,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4302,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7845,13,13,Oldsmobile,Cutlass Calais,Y,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,-500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4305,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7846,13,13,Oldsmobile,Cutlass Calais,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Compact Cars,1991,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7847,13,13,Oldsmobile,Cutlass Calais,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4129,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7848,13,13,Oldsmobile,Cutlass Calais,N,false,91,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,44.0,0.0,Compact Cars,1991,0,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7849,13,13,Oldsmobile,Cutlass Calais,N,false,91,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Compact Cars,1991,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,785,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7850,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0513,0.0,Compact Cars,1991,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41030,(16-VALVE) (FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7851,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Compact Cars,1991,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7852,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Compact Cars,1991,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,7853,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2321,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,13,89,7854,0,0,Plymouth,Sundance,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1991,0,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,7855,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,13,89,7856,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1991,-4750,,CLKUP,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,7857,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1991,-3000,,,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,89,7858,0,0,Plymouth,Sundance,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1991,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4300,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7859,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4892,(GM-CHEV) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,786,0,0,Chevrolet,El Camino Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4302,(FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7860,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1991,-500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7861,13,13,Pontiac,Grand Am,Y,false,92,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Compact Cars,1991,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4129,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,7862,13,13,Pontiac,Grand Am,N,false,92,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,42.0,0.0,Compact Cars,1991,0,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4109,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,19,89,7863,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,42.0,0.0,Compact Cars,1991,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4109,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,19,89,7864,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,48.7179,0.0,Compact Cars,1991,2250,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4109,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,89,7865,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,51.0,0.0,Compact Cars,1991,2750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,19,89,7866,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,38.0,0.0,Compact Cars,1991,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4112,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,7867,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Compact Cars,1991,1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,22,88,7868,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,31.0,0.0,Compact Cars,1991,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47021,"(SPG) (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,7869,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Compact Cars,1991,-2250,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4892,(GM-CHEV) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,787,0,0,Chevrolet,El Camino Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,"(FFS,TRBO)",-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,7870,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1991,-500,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,7871,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,28.0,0.0,Compact Cars,1991,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,7872,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Compact Cars,1991,-1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,7873,0,12,Saturn,SL,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,44.8718,0.0,Compact Cars,1991,1500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7874,0,12,Saturn,SL,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0256,0.0,Compact Cars,1991,500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,7875,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,48.0,0.0,Compact Cars,1991,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7876,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Compact Cars,1991,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7877,0,14,Subaru,Legacy,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.8974,0.0,Compact Cars,1991,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7878,0,14,Subaru,Legacy,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.1795,0.0,Compact Cars,1991,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66031,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7879,0,14,Subaru,Legacy Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-3750,,CLKUP,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,788,0,0,Dodge,D100/D150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7880,0,14,Subaru,Legacy 4WD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7881,0,14,Subaru,Legacy 4WD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Compact Cars,1991,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7882,0,14,Subaru,Legacy 4WD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1991,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7883,0,14,Subaru,Legacy 4WD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,7884,0,15,Subaru,Loyale,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Compact Cars,1991,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,83,7885,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1991,1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7886,0,15,Toyota,Camry,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Compact Cars,1991,500,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57009,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7887,0,15,Toyota,Camry,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,31.0,0.0,Compact Cars,1991,-1750,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7888,0,15,Toyota,Camry,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1991,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7889,0,15,Toyota,Camry,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.8889,0.0,43.0,0.0,Compact Cars,1991,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,789,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7890,0,15,Toyota,Camry,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1991,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7891,0,15,Toyota,Camry,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57011,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7892,0,12,Toyota,Cressida,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1991,-3750,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,7893,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,87,7894,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1991,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,7895,0,0,Volkswagen,GTI 16v,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1991,-500,,,,,,,,, +11.236239000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,299.4117647058824,34,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59005,(NO-CAT),-1,1750,0,Diesel,Diesel,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,0,0,7896,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.1111,0.0,55.1282,0.0,Compact Cars,1991,3250,,,,,Diesel,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59008,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,7897,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,51.0,0.0,Compact Cars,1991,3000,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7898,17,17,Volkswagen,Jetta,N,false,88,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,7899,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1991,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,83,79,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,790,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7900,6,17,Volkswagen,Jetta GLI 16v,Y,false,77,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Compact Cars,1991,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7901,15,0,Volvo,Coupe,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Compact Cars,1991,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7902,0,14,Volvo,240,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1991,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7903,0,14,Volvo,240,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1991,-1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7904,0,15,Wallace Environmental,Wetl 300 E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Compact Cars,1991,-8000,T,2MODE,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,60330,(GUZZLER) (FFS),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,7905,17,0,Wallace Environmental,Wetl 412,N,false,86,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Compact Cars,1991,-18250,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.6,4-Wheel or All-Wheel Drive,64013,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7906,0,17,Audi,V8,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,26.0,0.0,Midsize Cars,1991,-6250,T,3MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,3.6,4-Wheel or All-Wheel Drive,64013,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7907,0,17,Audi,V8,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,26.0,0.0,Midsize Cars,1991,-6250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7908,0,17,Audi,100,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1991,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7909,0,17,Audi,100 quattro,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1991,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,791,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-6250,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,Front-Wheel Drive,64014,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7910,0,17,Audi,200,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,28.0,0.0,Midsize Cars,1991,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64010,"(20-VALVE) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7911,0,17,Audi,200 quattro 20v,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Midsize Cars,1991,-3250,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7912,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Midsize Cars,1991,-5250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7913,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Midsize Cars,1991,-5250,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7914,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Midsize Cars,1991,-5250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7915,0,13,BMW,750il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1991,-9250,T,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7916,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7917,16,16,Buick,Century,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7918,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,38.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7919,16,16,Buick,Regal,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,792,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7920,16,16,Buick,Regal,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7921,14,0,Buick,Riviera,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4600,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7922,14,0,Cadillac,Eldorado,N,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,33.0,0.0,Midsize Cars,1991,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4600,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7923,0,14,Cadillac,Seville,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,33.0,0.0,Midsize Cars,1991,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,22,95,7924,0,14,Chevrolet,Corsica,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.7436,0.0,Midsize Cars,1991,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,22,95,7925,0,14,Chevrolet,Corsica,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.3077,0.0,Midsize Cars,1991,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,95,7926,0,14,Chevrolet,Corsica,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4122,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,95,7927,0,14,Chevrolet,Corsica,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Midsize Cars,1991,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4111,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7928,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize Cars,1991,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7929,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,34.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,793,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7930,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4137,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7931,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4199,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7932,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1991,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7933,0,16,Chrysler,New Yorker,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,16,97,7934,0,0,CX Automotive,XM v6,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Midsize Cars,1991,-6750,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38037,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7935,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1991,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38037,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7936,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1991,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7937,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7938,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7939,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,794,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Standard Pickup Trucks,1985,-9250,,Lockup,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2340,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7940,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Midsize Cars,1991,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,7941,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2430,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7942,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1991,-3750,,CLKUP,T,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7943,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1991,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2431,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7944,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Midsize Cars,1991,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7945,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7946,0,17,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1991,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7947,0,17,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1991,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7948,0,17,Ford,Taurus,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Midsize Cars,1991,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7949,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1991,-1750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,795,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-7750,,Overdrive,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3351,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7950,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1991,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3352,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7951,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,31.0,0.0,Midsize Cars,1991,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7952,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1991,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,25102,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7953,0,13,Mercedes-Benz,300SEL,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,21.7949,0.0,Midsize Cars,1991,-6250,T,EMS 2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,25101,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7954,0,13,BMW,735i Luxury,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Midsize Cars,1991,-9250,T,EMS 2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26570,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7955,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,26570,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7956,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Midsize Cars,1991,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26580,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7957,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1991,-3250,,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7958,0,15,Infiniti,Q45,Y,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1991,-5750,T,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38041,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7959,0,15,Infiniti,Q45 Full-Active Suspension,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Midsize Cars,1991,-8000,T,2MODE CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2859,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,796,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0769,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7960,0,27,BMW,525i,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Midsize Cars,1991,-8000,T,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7961,0,27,Import Trade Services,ITS 520,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Midsize Cars,1991,-8000,T,SIL,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,31401,(GUZZLER) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7962,0,13,BMW,735il,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Midsize Cars,1991,-7750,T,EMS,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,31406,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7963,0,4,Mercedes-Benz,260E,N,false,0,5,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,24.0,0.0,Midsize Cars,1991,-5250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,31402,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7964,0,4,Mercedes-Benz,300E,N,false,0,5,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Midsize Cars,1991,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Rear-Wheel Drive,31405,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7965,2,0,Porsche,928 S4,N,false,2,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Midsize Cars,1991,-6250,T,EMS,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,31407,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,7966,0,5,Mercedes-Benz,230E,N,false,0,5,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.0,0.0,Midsize Cars,1991,-4250,T,EMS,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,30802,(GUZZLER) FFS MPFI (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,7967,0,15,Mercedes-Benz,420 SE,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Midsize Cars,1991,-11250,T,EMS 2MODE CLKU,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57013,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7968,0,14,Lexus,LS 400,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Midsize Cars,1991,-4750,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3350,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7969,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Midsize Cars,1991,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2853,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,797,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7970,15,0,Mercury,Cougar,Y,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Midsize Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,7971,14,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize Cars,1991,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7972,0,19,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1991,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3340,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7973,0,19,Mercury,Sable,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Midsize Cars,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,7974,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1991,-3750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,7975,14,15,Mazda,626/MX-6,Y,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize Cars,1991,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56041,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,7976,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1991,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56040,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,95,7977,14,15,Mazda,626/MX-6,Y,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Midsize Cars,1991,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56060,JEE (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,7978,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Midsize Cars,1991,-3250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56061,JED (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,7979,0,15,Mazda,929,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize Cars,1991,-3250,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,798,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-11000,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20039,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,7980,0,15,Mercedes-Benz,300SEL,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Midsize Cars,1991,-6750,T,,,,,,,, +18.192006000000003,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,484.76190476190476,21,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,2800,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,7981,0,15,Mercedes-Benz,350SDL Turbo,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,32.0,0.0,Midsize Cars,1991,-2000,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,7982,0,15,Mercedes-Benz,420SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Midsize Cars,1991,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,7983,0,15,Mercedes-Benz,560SEL,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Midsize Cars,1991,-9500,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7984,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7985,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7986,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.1795,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4304,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7987,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,37.0,0.0,Midsize Cars,1991,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,7988,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4137,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7989,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1991,-3250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,799,0,0,Dodge,D100/D150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4199,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7990,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1991,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7991,14,0,Oldsmobile,Trofeo/Toronado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1991,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2421,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7992,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.8974,0.0,Midsize Cars,1991,-500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,7993,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,43.0,0.0,Midsize Cars,1991,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2511,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7994,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4304,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,7995,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.3333,0.0,37.0,0.0,Midsize Cars,1991,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7996,15,16,Pontiac,Grand Prix,Y,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4137,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7997,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4199,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,7998,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1991,-3250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4126,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,7999,0,15,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1991,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38041,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,23,50,8,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Two Seaters,1985,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,83,80,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2891,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,800,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-15500,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8000,0,15,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8001,0,15,Pontiac,6000,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize Cars,1991,-1750,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8002,0,12,Rolls-Royce,Eight/Mulsanne S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Midsize Cars,1991,-18250,T,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8003,0,12,Rolls-Royce,Turbo R,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.0,0.0,16.6667,0.0,Midsize Cars,1991,-18250,T,,T,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8004,0,12,Rolls-Royce,Silver Spirit II/Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,16.6667,0.0,Midsize Cars,1991,-18250,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8005,0,14,Volkswagen,Passat,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1991,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8006,0,14,Volkswagen,Passat,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Midsize Cars,1991,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8007,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1991,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8008,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize Cars,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8009,0,17,Volvo,740,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Midsize Cars,1991,-1750,,SIL,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,801,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1985,-6250,,Lockup,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8010,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Midsize Cars,1991,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8011,0,17,Volvo,940 GLE 16-Valve,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8012,0,17,Volvo,940 SE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1991,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8013,0,17,Volvo,940 Turbo,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize Cars,1991,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8014,16,16,Buick,LeSabre,Y,false,101,106,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8015,0,20,Buick,Park Avenue,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1991,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8016,0,19,Cadillac,Brougham,N,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4110,(350 V8) (GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8017,0,19,Cadillac,Brougham,Y,false,0,110,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,28.0,0.0,Large Cars,1991,-5250,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4600,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8018,18,18,Cadillac,Fleetwood/DeVille,Y,false,107,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,33.0,0.0,Large Cars,1991,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4102,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8019,0,20,Chevrolet,Caprice,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1991,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,802,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,19.0,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4127,(350 V8) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8020,0,20,Chevrolet,Caprice,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,26.0,0.0,Large Cars,1991,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8021,0,17,Chrysler,New Yorker Fifth Avenue/Imperial,Y,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2710,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8022,0,17,Chrysler,New Yorker Fifth Avenue/Imperial,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1991,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2540,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8023,0,17,Dodge,Monaco,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1991,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2540,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8024,0,17,Eagle,Premier,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8025,0,21,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1991,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3500,(POLICE) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8026,0,21,Ford,LTD Crown Victoria,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,24.0,0.0,Large Cars,1991,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,31408,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8027,0,6,Mercedes-Benz,300SEL,N,false,0,6,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Large Cars,1991,-6250,T,EMS,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,30803,(GUZZLER) FFS MPFI (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8028,0,15,Mercedes-Benz,300SEL,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Large Cars,1991,-8000,T,EMS 2MODE CLKU,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3341,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8029,0,19,Lincoln,Continental,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1991,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,803,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8030,0,21,Mercury,Grand Marquis,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8031,0,22,Lincoln,Town Car,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Large Cars,1991,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,34701,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8032,0,15,BMW,750i,N,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Large Cars,1991,-13250,T,EMS,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,34701,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8033,0,15,BMW,750il,Y,false,0,114,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Large Cars,1991,-13250,T,EMS,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8034,16,16,Oldsmobile,Eighty-Eight,N,false,101,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8035,0,20,Oldsmobile,Ninety-Eight/Touring,N,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1991,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8036,0,15,Pontiac,Bonneville,Y,false,0,107,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,36.0,0.0,Large Cars,1991,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47045,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,8037,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Large Cars,1991,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47035,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,103,8038,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47040,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,103,8039,0,18,Saab,9000,Y,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Large Cars,1991,-2500,,SIL,T,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,804,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,8040,0,18,Saab,9000,N,false,0,103,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Large Cars,1991,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8041,0,34,Chevrolet,Cavalier Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.6667,0.0,39.7436,0.0,Small Station Wagons,1991,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4124,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8042,0,34,Chevrolet,Cavalier Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.3077,0.0,Small Station Wagons,1991,500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4125,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8043,0,34,Chevrolet,Cavalier Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,35.0,0.0,Small Station Wagons,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8044,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1991,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8045,0,39,Dodge,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Small Station Wagons,1991,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8046,0,31,Ford,Escort Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Small Station Wagons,1991,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3102,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8047,0,31,Ford,Escort Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Small Station Wagons,1991,2250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26052,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8048,0,34,Honda,Accord Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.0,0.0,Small Station Wagons,1991,-1750,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26052,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8049,0,34,Honda,Accord Wagon,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Small Station Wagons,1991,-500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2853,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,805,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8050,0,27,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Small Station Wagons,1991,1500,,2LKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8051,0,27,Honda,Civic Wagon,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,45.0,0.0,Small Station Wagons,1991,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26011,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8052,0,27,Honda,Civic Wagon 4WD,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,35.0,0.0,Small Station Wagons,1991,0,,2MODE 3LKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,26011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8053,0,27,Honda,Civic Wagon 4WD,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Small Station Wagons,1991,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8054,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Small Station Wagons,1991,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3102,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8055,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Small Station Wagons,1991,2250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8056,0,39,Mitsubishi,Space Wagon,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8057,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,30.0,0.0,Small Station Wagons,1991,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49030,(SOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8058,0,39,Plymouth,Colt Vista,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Small Station Wagons,1991,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8059,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Small Station Wagons,1991,-1000,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,806,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8060,0,36,Subaru,Legacy Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.1795,0.0,Small Station Wagons,1991,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8061,0,36,Subaru,Legacy Wagon 4WD,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Small Station Wagons,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8062,0,36,Subaru,Legacy Wagon 4WD,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.0,0.0,Small Station Wagons,1991,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8063,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1991,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8064,0,35,Subaru,Loyale Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1991,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,57009,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8065,0,34,Toyota,Camry Wagon,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,39.0,0.0,Small Station Wagons,1991,500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,57010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8066,0,34,Toyota,Camry Wagon,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Small Station Wagons,1991,-2500,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8067,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1991,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57007,(4A-FE) (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8068,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Small Station Wagons,1991,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8069,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,37.0,0.0,Small Station Wagons,1991,500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,807,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57007,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8070,0,31,Toyota,Corolla Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Small Station Wagons,1991,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64010,"(20-VALVE) (FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8071,0,37,Audi,200 quattro 20v Wagon,Y,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4111,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8072,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1991,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8073,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8074,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1991,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8075,0,46,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1991,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8076,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8077,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1991,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3342,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8078,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,34702,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8079,0,42,Mercedes-Benz,230CE,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1991,-3000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2891,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,808,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-15500,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8080,0,42,Mercedes-Benz,300TE,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1991,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20031,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8081,0,42,Mercedes-Benz,300TE 4Matic,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Midsize-Large Station Wagons,1991,-6750,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4111,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8082,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1991,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4425,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8083,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4415,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8084,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.1795,0.0,Midsize-Large Station Wagons,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8085,0,38,Peugeot,405 Sports Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41040,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8086,0,38,Peugeot,405 Sports Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Midsize-Large Station Wagons,1991,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,41020,"(FFS,TRBO) (MPFI)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8087,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1991,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8088,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,27.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,41010,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8089,0,54,Peugeot,505 Station Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,809,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4111,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8090,0,42,Pontiac,6000 Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1991,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8091,0,42,Pontiac,6000 Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1991,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8092,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1991,-1000,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8093,0,34,Volkswagen,Passat Wagon,Y,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1991,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,42,91,8094,0,0,Volvo,240 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,42,91,8095,0,0,Volvo,240 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1991,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,8096,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,8097,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,8098,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Midsize-Large Station Wagons,1991,-1750,,SIL,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,8099,0,0,Volvo,740 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1991,-500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,83,81,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.3077,0.0,Subcompact Cars,1985,500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,810,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60010,(16-VALVE) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,39,95,8100,0,0,Volvo,940 GLE 16-Valve Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,8101,0,0,Volvo,940 SE Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,8102,0,0,Volvo,940 Turbo Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,T,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,42,94,8103,0,0,Wallace Environmental,Wetl 300 TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Midsize-Large Station Wagons,1991,-8000,T,2MODE,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8104,0,55,Buick,Roadmaster Wagon,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8105,0,55,Chevrolet,Caprice Wagon,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8106,0,53,Ford,LTD Crown Victoria Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8107,0,53,Mercury,Grand Marquis Wagon,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Midsize-Large Station Wagons,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8108,0,55,Oldsmobile,Custom Cruiser,Y,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1991,-4250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8109,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Small Pickup Trucks,1991,-1000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,811,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8110,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1991,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8111,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1991,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8112,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8113,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1991,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8114,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1991,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38082,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8115,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1991,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8116,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1991,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8117,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8118,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8119,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,812,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1985,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8120,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,30.0,0.0,Small Pickup Trucks,1991,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8121,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Small Pickup Trucks,1991,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3642,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8122,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3645,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8123,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,32.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3664,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8124,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Small Pickup Trucks,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3665,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8125,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1991,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8126,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Small Pickup Trucks,1991,-1000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8127,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1991,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8128,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1991,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8129,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1991,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,813,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8130,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Small Pickup Trucks,1991,-3250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8131,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1991,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8132,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8133,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8134,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8135,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1991,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8136,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Small Pickup Trucks,1991,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3631,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8137,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3630,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8138,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks,1991,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3684,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8139,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Small Pickup Trucks,1991,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,814,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3685,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8140,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1991,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,43101,"(FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8141,0,0,"PAS, Inc",Pas-Syclone,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,21.7949,0.0,Small Pickup Trucks,1991,-9500,,,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8142,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8143,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8144,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8145,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8146,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8147,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8148,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8149,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3825,(FFS) Fuel Injection,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,815,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8150,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4853,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8151,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8152,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1991,-4500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8153,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.1111,0.0,27.0,0.0,Standard Pickup Trucks,1991,-4500,,Creeper,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4862,(NO-CAT),-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8154,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1991,-2750,,Creeper,,,Diesel,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,7.4,Rear-Wheel Drive,4870,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8155,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,16.0,0.0,Standard Pickup Trucks,1991,-15500,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8156,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8157,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8158,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8159,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3822,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,816,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8160,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8161,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8162,0,0,Chevrolet,C2500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8163,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8164,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4853,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8165,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8166,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1991,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8167,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5500,,Creeper,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4862,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8168,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1991,-3500,,Creeper,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2805,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8169,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Standard Pickup Trucks,1991,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3821,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,817,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8170,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8171,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8172,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8173,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8174,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8175,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8176,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8177,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8178,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8179,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,818,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8180,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8181,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8182,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8183,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8184,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8185,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.0,0.0,Standard Pickup Trucks,1991,-11000,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8186,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8187,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8188,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8189,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,819,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2808,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8190,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2808,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8191,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8192,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8193,0,0,Jeep,Comanche Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3708,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8194,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8195,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3707,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8196,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8197,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3802,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8198,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8199,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2301,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,83,82,0,0,Chrysler,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,37.0,0.0,Subcompact Cars,1985,-3000,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,820,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8200,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3902,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8201,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8202,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8203,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8204,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8205,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8206,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8207,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3903,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8208,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8209,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,821,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8210,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8211,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8212,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8213,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8214,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8215,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8216,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8217,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4853,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8218,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8219,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1991,-4500,,CLKUP,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3822,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,822,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8220,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.1111,0.0,26.9231,0.0,Standard Pickup Trucks,1991,-4500,,Creeper,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4862,(NO-CAT),-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8221,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1991,-2750,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8222,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4833,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8223,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4832,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8224,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4835,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8225,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8226,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4840,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8227,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8228,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4850,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8229,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3820,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,823,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4852,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8230,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4853,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8231,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8232,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1991,-5500,,CLKUP,,,Diesel,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4860,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8233,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5500,,Creeper,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4862,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8234,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1991,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8235,0,0,Isuzu,Pickup 2WD 1-Ton,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.9231,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8236,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1991,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8237,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS) 2 barrel carb,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8238,0,0,Mazda,B2200/B2600i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1991,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS) fuel injection,-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8239,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1991,-1750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,824,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,13.0,0.0,16.6667,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS) fuel injection,-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8240,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Standard Pickup Trucks,1991,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8241,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1991,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8242,0,0,Mazda,B2200/B2600i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1991,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8243,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Standard Pickup Trucks,1991,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8244,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Standard Pickup Trucks,1991,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8245,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8246,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8247,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1991,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8248,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8249,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,825,0,0,Ford,F250 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8250,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-6250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8251,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8252,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8253,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8254,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8255,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8256,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8257,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8258,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8259,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-6500,,CLKUP,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,826,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8260,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-6500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8261,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8262,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-6250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8263,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8264,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8265,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8266,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8267,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8268,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8269,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4161,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,827,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8270,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8271,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8272,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8273,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8274,0,0,Chevrolet,S10 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38083,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8275,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.2051,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8276,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1991,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8277,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8278,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8279,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4892,(GM-CHEV) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,828,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8280,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8281,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8282,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8283,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8284,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8285,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,19.2308,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8286,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8287,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,17.9487,0.0,Standard Pickup Trucks,1991,-11000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8288,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1991,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8289,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4892,(GM-CHEV) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,829,0,0,GMC,Caballero Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8290,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Standard Pickup Trucks,1991,-15500,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8291,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,17.9487,0.0,Standard Pickup Trucks,1991,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8292,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1991,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8293,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8294,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.6667,0.0,Standard Pickup Trucks,1991,-15500,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2905,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8295,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2905,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8296,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8297,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8298,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-4250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3743,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8299,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2300,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,83,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,30.0,0.0,Subcompact Cars,1985,-3750,,,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,830,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8300,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1991,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8301,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3828,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8302,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3822,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8303,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3820,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8304,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,19.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3825,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8305,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3921,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8306,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Standard Pickup Trucks,1991,-11000,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8307,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8308,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3821,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8309,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1991,-13000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,831,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3826,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8310,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3920,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8311,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Standard Pickup Trucks,1991,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8312,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1991,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8313,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-6250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8314,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8315,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8316,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8317,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8318,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8319,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,832,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8320,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8321,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8322,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-6500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8323,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-6500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8324,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4933,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8325,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1991,-6250,,Creeper,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4932,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8326,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4935,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8327,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4940,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8328,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4941,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8329,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-7750,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,833,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8330,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8331,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4952,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8332,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1991,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4953,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8333,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Standard Pickup Trucks,1991,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8334,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1991,-5500,,CLKUP,,,Diesel,,,, +23.873823,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4961,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8335,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,23.0,0.0,Standard Pickup Trucks,1991,-6500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8336,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8337,0,0,GMC,Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.0,0.0,Standard Pickup Trucks,1991,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8338,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1991,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29095,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8339,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,834,0,0,GMC,C15 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,Lockup,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8340,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8341,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8342,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1991,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8343,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8344,0,0,Mazda,B2600i 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1991,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8345,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Standard Pickup Trucks,1991,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8346,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Standard Pickup Trucks,1991,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8347,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8348,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Standard Pickup Trucks,1991,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8349,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,835,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8350,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8351,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8352,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8353,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Vans,1991,-6250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8354,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1991,-5500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8355,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8356,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Vans,1991,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8357,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8358,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,23.0,0.0,Vans,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8359,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Vans,1991,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,836,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8360,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8361,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8362,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1991,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8363,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8364,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,19.2308,0.0,Vans,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8365,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8366,0,0,Dodge,B350 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1991,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3643,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8367,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Vans,1991,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3644,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8368,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Vans,1991,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3663,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8369,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1991,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,837,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,Overdrive,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3686,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8370,0,0,Ford,Aerostar Van AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Vans,1991,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3710,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8371,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1991,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8372,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1991,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3808,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8373,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1991,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3904,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8374,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,20.0,0.0,Vans,1991,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3709,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8375,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1991,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8376,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3809,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8377,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1991,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3905,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8378,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Vans,1991,-13000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8379,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,838,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8380,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8381,0,0,GMC,G15/25 Vandura 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Vans,1991,-6250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8382,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1991,-5500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8383,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8384,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8385,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8386,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8387,0,0,Chevrolet,Astro 2WD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8388,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1991,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8389,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4882,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,839,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.2222,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8390,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8391,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Vans,1991,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8392,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8393,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,22.0,0.0,Vans,1991,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8394,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8395,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Vans,1991,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8396,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Vans,1991,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8397,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,20.0,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8398,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8399,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,16.6667,0.0,Vans,1991,-13000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,84,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,33.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4884,,-1,3100,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,840,0,0,GMC,C15 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Standard Pickup Trucks,1985,-3500,,Creeper,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8400,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,19.0,0.0,Vans,1991,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8401,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8402,0,0,Dodge,B350 Wagon 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,16.0,0.0,Vans,1991,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3640,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8403,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3641,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8404,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Vans,1991,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3662,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8405,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3687,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8406,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Vans,1991,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8407,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Vans,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3807,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8408,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Vans,1991,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8409,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1991,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,841,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8410,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1991,-6250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4841,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8411,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8412,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Vans,1991,-7750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8413,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Vans,1991,-5500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8414,0,0,GMC,G35 Rally 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1991,-9250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8415,0,0,GMC,Safari AWD (passenger),Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4834,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8416,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1991,-5250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8417,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Vans,1991,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57003,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8418,0,0,Toyota,Previa,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Vans,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8419,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1991,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,842,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8420,0,0,Toyota,Previa All-Trac,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,27.0,0.0,Vans,1991,-4250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,4,2.1,4-Wheel or All-Wheel Drive,59003,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8421,0,0,Volkswagen,Vanagon Syncro 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,20.0,0.0,Vans,1991,-7750,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59003,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8422,0,0,Volkswagen,Vanagon/Camper 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,22.0,0.0,Vans,1991,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Rear-Wheel Drive,59003,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8423,0,0,Volkswagen,Vanagon/Camper 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,24.359,0.0,Vans,1991,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8424,0,0,Chevrolet,Lumina/APV Minivan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8425,0,0,Chevrolet,R1500 Suburban 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicle 2WD,1991,-9250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8426,0,0,Chevrolet,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Special Purpose Vehicle 2WD,1991,-5500,,CLKUP,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8427,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8428,0,0,Chevrolet,S10 Blazer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38023,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8429,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1991,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,843,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38023,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8430,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Special Purpose Vehicle 2WD,1991,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8431,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicle 2WD,1991,-4250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8432,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicle 2WD,1991,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8433,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8434,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicle 2WD,1991,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8435,0,0,Dodge,AD100/AD150 Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicle 2WD,1991,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8436,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0513,0.0,Special Purpose Vehicle 2WD,1991,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8437,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1991,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8438,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicle 2WD,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8439,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,844,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.2308,0.0,Standard Pickup Trucks,1985,-11000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2808,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8440,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8441,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1991,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8442,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicle 2WD,1991,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3660,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8443,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicle 2WD,1991,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3661,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8444,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicle 2WD,1991,-3250,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54083,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8445,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicle 2WD,1991,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4830,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8446,0,0,GMC,Jimmy Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4831,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8447,0,0,GMC,Jimmy Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Special Purpose Vehicles,1991,-3250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4851,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8448,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1991,-9250,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4861,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8449,0,0,GMC,R1500 Suburban 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.2051,0.0,Special Purpose Vehicles,1991,-5500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,845,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-3500,,,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29085,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8450,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29086,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8451,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.9231,0.0,Special Purpose Vehicles,1991,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8452,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,29084,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8453,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1991,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,29087,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8454,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8455,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8456,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Special Purpose Vehicles,1991,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8457,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8458,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8459,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0513,0.0,Special Purpose Vehicles,1991,-1750,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4884,,-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,846,0,0,GMC,C25 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5500,,Creeper,,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8460,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2831,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8461,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Special Purpose Vehicles,1991,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8462,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Rear-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8463,0,0,Suzuki,Samurai 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1991,1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8464,0,0,Suzuki,Sidekick 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8465,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8466,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8467,0,0,Toyota,4Runner 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1991,-4250,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8468,0,0,Chevrolet,S10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8469,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1991,-5250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57094,(CAL)(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,847,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,32.0,0.0,Standard Pickup Trucks,1985,-1000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8470,0,0,Chevrolet,Blazer V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8471,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1991,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8472,0,0,Chevrolet,Blazer V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-5500,,CLKUP,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8473,0,0,Chevrolet,Suburban V1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1991,-11000,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8474,0,0,Chevrolet,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1991,-6500,,CLKUP,,,Diesel,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,19081,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8475,0,0,Daihatsu,Rocky 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38024,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8476,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicles,1991,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38024,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8477,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8478,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8479,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,848,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,34.0,0.0,Standard Pickup Trucks,1985,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8480,0,0,Dodge,AW100/AW150 Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,17.0,0.0,Special Purpose Vehicles,1991,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2972,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8481,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1991,-13000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8482,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1991,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8483,0,0,Dodge,AW100/AW150 Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Special Purpose Vehicles,1991,-15500,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8484,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8485,0,0,Dodge,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicles,1991,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2905,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8486,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8487,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,25.0,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8488,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2980,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8489,0,0,Jeep,Grand Wagoneer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1991,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,849,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,Lockup,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8490,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1991,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8491,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,22.0,0.0,Special Purpose Vehicles,1991,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8492,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3745,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8493,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1991,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8494,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3824,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8495,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1991,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3827,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8496,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1991,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3922,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8497,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Special Purpose Vehicles,1991,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3680,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8498,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3681,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8499,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Front-Wheel Drive,2400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,85,10,0,Chrysler,LeBaron Convertible,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,29.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,850,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,Overdrive,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8500,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1991,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8501,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8502,0,0,Geo,Tracker 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1991,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54083,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8503,0,0,Geo,Tracker 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4930,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8504,0,0,GMC,Jimmy Sonoma 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4931,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8505,0,0,GMC,Jimmy Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1991,-5250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8506,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1991,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4951,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8507,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,18.0,0.0,Special Purpose Vehicles,1991,-11000,,Creeper,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8508,0,0,GMC,Jimmy V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Special Purpose Vehicles,1991,-5500,,CLKUP,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4950,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8509,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1991,-11000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,851,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-6250,,Creeper,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4960,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8510,0,0,GMC,Suburban V1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Special Purpose Vehicles,1991,-6500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8511,0,0,Isuzu,Amigo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,24.359,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8512,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8513,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0769,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8514,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0769,0.0,Special Purpose Vehicles,1991,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,29094,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8515,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46001,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8516,0,0,Land Rover,Range Rover,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1991,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8517,0,0,Mitsubishi,Montero,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8518,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8519,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1991,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4961,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,852,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8520,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56089,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8521,0,0,Mazda,Navajo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56089,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8522,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56089,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8523,0,0,Mazda,Navajo,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56089,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8524,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1991,-5250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49081,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8525,0,0,Plymouth,Colt Vista 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0513,0.0,Special Purpose Vehicles,1991,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8526,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8527,0,0,Subaru,Loyale Wagon 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,28.2051,0.0,Special Purpose Vehicles,1991,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8528,0,0,Subaru,Loyale Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8529,0,0,Subaru,Loyale 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.0,0.0,Special Purpose Vehicles,1991,-1750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4962,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,853,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(FFS) (SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8530,0,0,Subaru,Loyale 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8531,0,0,Suzuki,Samurai Hardtop 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1991,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8532,0,0,Suzuki,Samurai Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1991,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8533,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,29.0,0.0,Special Purpose Vehicles,1991,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8534,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1991,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8535,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,32.0,0.0,Special Purpose Vehicles,1991,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8536,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8537,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1991,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8538,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.6154,0.0,Special Purpose Vehicles,1991,0,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4934,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8539,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4963,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,854,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,57004,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8540,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1991,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8541,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,24.359,0.0,Special Purpose Vehicles,1991,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8542,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Special Purpose Vehicles,1991,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8543,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1991,-7750,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57015,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8544,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1991,-6250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,60301,(FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8545,0,0,Wallace Environmental,Wetl 300 GE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,17.9487,0.0,Special Purpose Vehicles,1991,-13250,,DC/FW,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4600,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8546,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,30.0,0.0,Special Purpose Vehicles,1991,-6750,T,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8547,0,0,Chevrolet,Postal Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,19.0,0.0,22.0,0.0,Special Purpose Vehicles,1991,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8548,0,0,Chevrolet,S10 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,24.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,8549,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,15.0,0.0,Special Purpose Vehicles,1991,-13000,,CLKUP,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,855,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8550,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,20.0,0.0,Special Purpose Vehicles,1991,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2872,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8551,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Special Purpose Vehicles,1991,-7750,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,8552,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,16.6667,0.0,Special Purpose Vehicles,1991,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4123,(GM-CHEV) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8553,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1991,-4250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,8554,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,14.0,0.0,Special Purpose Vehicles,1991,-15500,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57015,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,8555,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.2222,0.0,15.0,0.0,Special Purpose Vehicles,1991,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8556,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1992,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26060,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8557,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Two Seaters,1992,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8558,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0,0.0,Two Seaters,1992,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8559,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Two Seaters,1992,-1750,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,856,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Front-Wheel Drive,4600,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8560,0,0,Cadillac,Allante,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,28.2051,0.0,Two Seaters,1992,-6750,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4118,(350 V8) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8561,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,18.0,0.0,32.0,0.0,Two Seaters,1992,-5750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4116,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8562,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Two Seaters,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4117,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8563,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Two Seaters,1992,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,16201,"(FFS,TRBO) (MPFI)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8564,0,0,Consulier Industries Inc,Consulier GTP,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Two Seaters,1992,-1000,,EMS,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8565,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Two Seaters,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8566,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1992,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8567,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Two Seaters,1992,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38034,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8568,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1992,-4750,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,2.9,Rear-Wheel Drive,22010,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8569,0,0,Ferrari,F40,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.0,0.0,Two Seaters,1992,-11250,T,,T,,,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,,-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,857,0,0,Chevrolet,K10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5500,,Creeper,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,8570,0,0,Ferrari,Testarossa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,20.0,0.0,Two Seaters,1992,-15500,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8571,0,0,Ferrari,348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1992,-9500,T,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,8572,0,0,Geo,Metro LSI Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,36.0,0.0,48.7179,0.0,Two Seaters,1992,2750,,,,,,,,, +8.89947,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1500,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,8573,0,0,Geo,Metro LSI Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.0,0.0,59.0,0.0,Two Seaters,1992,4500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,3.9,Rear-Wheel Drive,28510,(GUZZLER) (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8574,0,0,Isis Imports Ltd,Morgan Plus 8,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,38.4615,0.0,Two Seaters,1992,-3000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30568,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8575,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,22.0,0.0,Two Seaters,1992,-11250,T,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8576,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1992,-18250,T,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35002,"ELAN TURBO (FFS,TRBO)",-1,2500,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8577,0,0,Lotus,Elan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,40.0,0.0,Two Seaters,1992,-500,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"GMP4 ANDIC (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8578,0,0,Lotus,Espirit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1992,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56035,B6D (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8579,0,0,Mazda,MX-5 Miata,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,36.0,0.0,Two Seaters,1992,0,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,858,0,0,Chevrolet,K20 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56035,B6D (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8580,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Two Seaters,1992,500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS) (ROTARY),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8581,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Two Seaters,1992,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56010,(FFS) (ROTARY),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8582,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,32.0,0.0,Two Seaters,1992,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8583,0,0,Mercedes-Benz,300SL,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1992,-5750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20036,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8584,0,0,Mercedes-Benz,300SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,29.0,0.0,Two Seaters,1992,-5750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8585,0,0,Mercedes-Benz,500SL,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0769,0.0,Two Seaters,1992,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8586,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Two Seaters,1992,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8587,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Two Seaters,1992,-6750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8588,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,30.0,0.0,Two Seaters,1992,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8589,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Two Seaters,1992,-4750,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4971,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,859,0,0,Chevrolet,K20 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,19.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8590,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,32.0513,0.0,Two Seaters,1992,-5750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57005,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8591,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Two Seaters,1992,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57006,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8592,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Two Seaters,1992,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57006,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8593,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Two Seaters,1992,-500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,25301,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,7550,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,8594,0,0,Vector,W8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.0,0.0,14.0,0.0,Two Seaters,1992,-25750,T,EMS,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,56,8595,0,0,Nissan,NX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Minicompact Cars,1992,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,16,56,8596,0,0,Nissan,NX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,49.0,0.0,Minicompact Cars,1992,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,56,8597,0,0,Nissan,NX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,37.1795,0.0,Minicompact Cars,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,56,8598,0,0,Nissan,NX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Minicompact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,71,8599,7,0,Nissan,240SX,N,false,69,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Minicompact Cars,1992,-3000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,13,84,86,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,860,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,14,71,8600,7,0,Nissan,240SX,Y,false,69,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Minicompact Cars,1992,-2250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8601,8,0,Mercedes-Benz,500SL,N,false,50,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Minicompact Cars,1992,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8602,7,0,Mercedes-Benz,560SL,N,false,48,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Minicompact Cars,1992,-15500,T,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8603,6,0,Mercury,Capri,Y,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,34.0,0.0,Minicompact Cars,1992,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8604,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Minicompact Cars,1992,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3052,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8605,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1992,0,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8606,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Minicompact Cars,1992,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8607,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1992,-6750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8608,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,30.0,0.0,Minicompact Cars,1992,-5750,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Rear-Wheel Drive,42050,"(GUZZLER) (FFS,TRBO)",-1,4300,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8609,4,0,Porsche,911 Turbo,Y,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,27.0,0.0,Minicompact Cars,1992,-9500,T,,T,,,,,, +25.479000000000003,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,861,0,0,Chevrolet,K20 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0769,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,8610,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1992,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,63,8611,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,32.0513,0.0,Minicompact Cars,1992,-5750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8612,9,0,Toyota,Celica Convertible,N,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Minicompact Cars,1992,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57017,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8613,9,0,Toyota,Celica Convertible,Y,false,68,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Minicompact Cars,1992,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8614,9,0,Toyota,Celica Convertible,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Minicompact Cars,1992,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8615,8,0,Toyota,Paseo,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1992,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,8616,8,0,Toyota,Paseo,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Minicompact Cars,1992,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8617,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1992,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8618,6,0,Volkswagen,Cabriolet,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Minicompact Cars,1992,1000,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8619,14,0,Wallace Environmental,Wetl 300 SL,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Minicompact Cars,1992,-8000,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,862,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,8620,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1992,0,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26025,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,79,8621,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.7436,0.0,Subcompact Cars,1992,500,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER) (GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,8622,6,0,Aston Martin,Virage Saloon,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,19.2308,0.0,Subcompact Cars,1992,-13250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.3,Rear-Wheel Drive,7001,(GUZZLER) (GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8623,6,0,Aston Martin,Virage Saloon,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,22.0,0.0,Subcompact Cars,1992,-11250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64012,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8624,0,10,Audi,80,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1992,-2500,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.3,Front-Wheel Drive,64012,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8625,0,10,Audi,80,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.3,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8626,0,8,Audi,80 quattro,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12035,(FFS) (MPFI),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8627,9,0,BMW,318i Convertible,Y,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1992,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8628,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1992,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8629,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,863,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1985,-1750,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8630,11,0,BMW,850i,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Subcompact Cars,1992,-9250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8631,11,0,BMW,850i,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,24.0,0.0,Subcompact Cars,1992,-9250,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4108,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,84,8632,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8633,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1992,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4103,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,8634,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4105,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8635,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4104,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8636,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1992,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4106,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8637,5,0,Chevrolet,Camaro,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1992,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4116,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,8638,5,0,Chevrolet,Camaro,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4119,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8639,12,13,Chevrolet,Cavalier,Y,false,80,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1992,500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4920,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,864,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Standard Pickup Trucks,1985,-1000,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4126,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8640,12,13,Chevrolet,Cavalier,Y,false,80,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,46.0,0.0,Subcompact Cars,1992,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8641,12,13,Chevrolet,Cavalier,Y,false,80,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4124,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8642,12,13,Chevrolet,Cavalier,N,false,80,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1992,-1750,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,8643,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,8644,0,0,Chevrolet,Sprint,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.7739,0.0,63.7304,0.0,Subcompact Cars,1992,5000,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8645,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8646,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.8974,0.0,Subcompact Cars,1992,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8647,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1992,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8648,10,0,Chrysler,LeBaron Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1992,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8649,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1992,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4936,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,865,0,0,Chevrolet,T10 (S10) Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +9.690534,0.0,0.0,0.0,32,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,261.38235294117646,34,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,19001,(FFS),-1,1600,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,15,79,8650,0,10,Daihatsu,Charade,Y,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,42.0,0.0,54.0,0.0,Subcompact Cars,1992,4000,,,,,,,,, +12.19557,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19002,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,79,8651,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Automatic 3-spd,33.0,0.0,41.0,0.0,Subcompact Cars,1992,1750,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,19002,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,15,79,8652,0,10,Daihatsu,Charade,N,false,0,80,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,49.0,0.0,Subcompact Cars,1992,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8653,12,12,Nissan,Sentra,N,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1992,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8654,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Subcompact Cars,1992,1750,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8655,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,47.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,8656,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,50.0,0.0,Subcompact Cars,1992,2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8657,12,12,Nissan,Sentra,N,false,85,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1992,500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8658,12,12,Nissan,Sentra,Y,false,85,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,1992,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,8659,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-4750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4934,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,866,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38033,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,8660,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1992,-4750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8661,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,8662,0,10,Dodge,Colt,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1992,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,8663,0,10,Dodge,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.8718,0.0,Subcompact Cars,1992,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2339,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,8664,0,0,Dodge,Daytona,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1992,-3000,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,17,81,8665,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,8666,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1992,-500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,8667,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Subcompact Cars,1992,-2250,,,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,81,8668,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,8669,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1992,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4932,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,867,0,0,Chevrolet,T10 (S10) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,8670,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1992,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8671,10,0,Dodge,Shadow Convertible,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Subcompact Cars,1992,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8672,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1992,-3750,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8673,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Subcompact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8674,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1992,-3000,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8675,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Subcompact Cars,1992,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8676,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1992,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8677,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1992,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8678,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8679,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1992,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,868,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8680,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8681,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-3250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8682,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8683,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,8684,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1992,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,8685,0,10,Eagle,Summit,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.8718,0.0,Subcompact Cars,1992,2250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,8686,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1992,-3750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,8,81,8687,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1992,-4750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,8688,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1992,-1000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8689,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1992,-2250,,,T,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.7,4-Wheel or All-Wheel Drive,2980,,-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,869,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,21.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8690,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,8691,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1992,-3000,,,T,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22025,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8692,4,0,Ferrari,Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1992,-11250,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8693,4,0,Ferrari,Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.0,0.0,22.0,0.0,Subcompact Cars,1992,-11250,T,,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,86,8694,0,0,Ford,Festiva,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,42.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,12,86,8695,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,52.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,8696,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1992,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,8697,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,83,8698,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1992,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,8699,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,30.7692,0.0,Subcompact Cars,1992,-4250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,13,84,87,10,0,Nissan,Pulsar/Pulsar-NX,N,false,79,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Subcompact Cars,1985,2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,870,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,8700,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,8701,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.7068,0.0,63.7096,0.0,Subcompact Cars,1992,5000,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,8702,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,8703,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.7739,0.0,63.7304,0.0,Subcompact Cars,1992,5000,,SIL,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,8704,0,0,Geo,Metro XFI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.1568,0.0,74.6992,0.0,Subcompact Cars,1992,6250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,82,8705,0,11,Geo,Prizm,Y,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,37.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57602,(4A-GE) (FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,82,8706,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1992,-1000,,2MODE 2LKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57602,(4A-GE) (FFS),-1,2500,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,17,82,8707,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.7436,0.0,Subcompact Cars,1992,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(4A-FE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,82,8708,0,11,Geo,Prizm,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,8709,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,871,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,83,8710,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1992,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29020,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,8711,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1992,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29020,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,8712,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,77,8713,0,12,Honda,Civic,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,47.0,0.0,Subcompact Cars,1992,2500,,CLKUP,,,,,,, +8.657756000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,233.8684210526316,38,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26003,(8-VALVE) (FFS),-1,1450,0,Regular,Regular Gasoline,-1,-1,43,0.0,0,0.0,0.0,0.0,0.0,13,77,8714,0,12,Honda,Civic,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,47.0,0.0,61.0,0.0,Subcompact Cars,1992,4750,,SIL,,,,,,, +8.89947,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26003,(8-VALVE) (FFS),-1,1500,0,Regular,Regular Gasoline,-1,-1,42,0.0,0,0.0,0.0,0.0,0.0,13,77,8715,0,12,Honda,Civic,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,60.0,0.0,Subcompact Cars,1992,4500,,,,,,,,, +10.283832,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26001,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,77,8716,0,12,Honda,Civic,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,51.2821,0.0,Subcompact Cars,1992,3500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,77,8717,0,12,Honda,Civic,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1992,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26010,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,13,77,8718,0,12,Honda,Civic,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +7.646952,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,13,77,8719,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,53.0,0.0,70.0,0.0,Subcompact Cars,1992,5500,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2953,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,872,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +8.24025,0.0,0.0,0.0,36,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,46,0.0,0,0.0,0.0,0.0,0.0,13,77,8720,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,48.8889,0.0,66.0,0.0,Subcompact Cars,1992,5000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8721,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1992,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8722,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26040,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8723,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,33.3333,0.0,Subcompact Cars,1992,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26040,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8724,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Subcompact Cars,1992,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26506,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,8725,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,41.0,0.0,Subcompact Cars,1992,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26506,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,8726,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.0,0.0,46.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,8727,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1992,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,8728,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Subcompact Cars,1992,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,8729,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,,-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,873,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.2222,0.0,19.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8730,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,2MODE CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,8731,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,44.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,29030,"(FFS,TRBO)",-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,8732,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1992,-1750,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,8733,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1992,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29021,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,8734,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38032,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8735,12,0,Infiniti,M30,Y,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1992,-3750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,12,5.3,Rear-Wheel Drive,30563,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8736,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.4444,0.0,23.0769,0.0,Subcompact Cars,1992,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8737,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Subcompact Cars,1992,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57016,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8738,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1992,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57002,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8739,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Subcompact Cars,1992,-4750,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,874,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,B6E4 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,80,8740,0,0,Mazda,MX-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56031,B6E4 (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,80,8741,0,0,Mazda,MX-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,45.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,K8D (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,80,8742,0,0,Mazda,MX-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1992,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,K8D (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,80,8743,0,0,Mazda,MX-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8744,0,12,Mercedes-Benz,190E 2.3,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1992,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8745,0,12,Mercedes-Benz,190E 2.3,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1992,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8746,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1992,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8747,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1992,-3000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20033,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8748,14,0,Mercedes-Benz,300CE,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1992,-5750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,8749,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1992,0,,2MODE,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2991,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,875,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-15500,,Creeper,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,8750,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,8751,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1992,-3750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,8,81,8752,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1992,-4750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,8753,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1992,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,8754,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1992,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8755,0,0,Mitsubishi,Eclipse,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8756,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1992,-2250,,,T,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8757,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8758,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,8759,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1992,2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2954,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,876,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,8760,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.8718,0.0,Subcompact Cars,1992,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,8761,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,36.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,19620,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,84,8762,0,10,Mitsubishi,Mirage,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1992,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8763,0,0,Mitsubishi,3000 GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8764,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1992,-4750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,8765,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1992,-3750,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,84,8766,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.1111,0.0,40.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,12,84,8767,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 4-spd,34.4444,0.0,46.0,0.0,Subcompact Cars,1992,2500,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,19610,SOHC (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,84,8768,0,10,Plymouth,Colt,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,44.8718,0.0,Subcompact Cars,1992,2250,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,8769,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1992,0,,2MODE,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,877,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,8770,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,8771,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1992,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,8772,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1992,-1000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8773,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1992,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,8774,0,0,Plymouth,Laser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1992,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,8775,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4108,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,12,84,8776,5,0,Pontiac,Firebird/Trans Am,Y,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.0,0.0,Subcompact Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,4102,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8777,5,0,Pontiac,Firebird/Trans Am,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,34.0,0.0,Subcompact Cars,1992,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4103,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,8778,5,0,Pontiac,Firebird/Trans Am,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4105,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8779,5,0,Pontiac,Firebird/Trans Am,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1992,-3250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2950,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,878,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4104,(GM-CHEV) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8780,5,0,Pontiac,Firebird/Trans Am,Y,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,33.0,0.0,Subcompact Cars,1992,-4750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4106,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,84,8781,5,0,Pontiac,Firebird/Trans Am,N,false,82,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,33.0,0.0,Subcompact Cars,1992,-3250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4116,(350 V8) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,84,8782,5,0,Pontiac,Firebird/Trans Am,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1992,-4750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,82,8783,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,8784,0,0,Pontiac,Firefly,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.7739,0.0,63.7304,0.0,Subcompact Cars,1992,5000,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4127,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8785,12,13,Pontiac,Sunbird,Y,false,80,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Subcompact Cars,1992,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4131,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8786,12,13,Pontiac,Sunbird,N,false,80,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1992,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8787,12,13,Pontiac,Sunbird,N,false,80,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4124,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8788,12,13,Pontiac,Sunbird,Y,false,80,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1992,-1750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8789,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Subcompact Cars,1992,-15500,T,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,879,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8790,9,0,Rolls-Royce,Corniche IV,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Subcompact Cars,1992,-15500,T,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47026,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8791,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1992,-4250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8792,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1992,-1750,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47016,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8793,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47011,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8794,10,0,Saab,900 Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1992,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8795,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1992,500,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8796,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.3077,0.0,Subcompact Cars,1992,1000,,SIL,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,8797,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1992,2750,,SIL,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,8798,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.0,0.0,45.0,0.0,Subcompact Cars,1992,2750,,CMODE,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66011,(FFS) (MPFI),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,10,79,8799,0,0,Subaru,Justy,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1992,2750,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,16,82,88,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,38.0,0.0,Subcompact Cars,1985,1000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2991,,-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,880,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,10.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-15500,,Creeper,,,,,,, +12.19557,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,8800,0,0,Subaru,Justy AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.4444,0.0,40.0,0.0,Subcompact Cars,1992,1750,,CMODE,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66011,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,10,79,8801,0,0,Subaru,Justy AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1992,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66040,(FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8802,8,0,Subaru,SVX,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1992,-4750,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,10,79,8803,0,10,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,50.0,0.0,Subcompact Cars,1992,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,79,8804,0,10,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.7739,0.0,63.7304,0.0,Subcompact Cars,1992,5000,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,79,8805,0,10,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1992,1750,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,10,79,8806,0,10,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1992,4250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54007,(FFS) (SPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,8807,0,0,Suzuki,Swift GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Subcompact Cars,1992,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,8808,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,8809,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3712,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,881,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57005,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,74,8810,11,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1992,-3750,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,8811,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1992,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57017,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,8812,11,0,Toyota,Celica,Y,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,8813,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Subcompact Cars,1992,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8814,0,13,Toyota,Corolla,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8815,0,13,Toyota,Corolla,Y,false,0,84,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8816,0,13,Toyota,Corolla,Y,false,0,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.0,0.0,Subcompact Cars,1992,1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,74,8817,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1992,-4750,,2MODE 2LKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,8818,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1992,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57009,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,8819,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Subcompact Cars,1992,-4750,,,T,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3711,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,882,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,74,8820,0,0,Toyota,Supra,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1992,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8821,11,11,Toyota,Tercel,N,false,85,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1992,500,,,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8822,11,11,Toyota,Tercel,Y,false,85,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,47.0,0.0,Subcompact Cars,1992,2750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8823,11,11,Toyota,Tercel,N,false,85,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,46.0,0.0,Subcompact Cars,1992,2250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,18,80,8824,0,0,Volkswagen,Corrado,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1992,-1750,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,80,8825,0,0,Volkswagen,Corrado,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Subcompact Cars,1992,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59007,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,15,80,8826,0,0,Volkswagen,Corrado SLC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1992,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,80,8827,0,0,Volkswagen,Corrado SLC,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1992,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8828,10,10,Volkswagen,Fox,N,false,77,77,0,0.0,0.0,0.0,0.0,Manual 4-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8829,10,10,Volkswagen,Fox,N,false,77,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,42.0,0.0,Subcompact Cars,1992,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3710,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,883,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8830,14,0,Wallace Environmental,Wetl 300 CE,N,false,83,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Subcompact Cars,1992,-8000,T,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8831,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1992,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8832,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.0,0.0,Compact Cars,1992,-3750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8833,0,14,Acura,Vigor,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-3000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26050,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8834,0,14,Acura,Vigor,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Compact Cars,1992,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8835,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1992,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8836,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Compact Cars,1992,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9002,164S (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8837,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1992,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12060,(GUZZLER) (FFS) (MPFI),-1,4300,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8838,0,13,BMW,M5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,29.0,0.0,Compact Cars,1992,-9500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) 5 SERIES (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8839,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Compact Cars,1992,-4250,T,2MODE,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,884,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) 5 SERIES (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8840,0,13,BMW,535i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,30.0,0.0,Compact Cars,1992,-5250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8841,13,13,Buick,Skylark,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8842,13,13,Buick,Skylark,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,37.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4129,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8843,13,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Compact Cars,1992,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4130,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,8844,13,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1992,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(4-VALVE) (FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8845,13,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8846,13,0,Chevrolet,Beretta,Y,false,92,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4124,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8847,13,0,Chevrolet,Beretta,N,false,92,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4129,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8848,0,14,Chevrolet,Corsica,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Compact Cars,1992,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4130,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,8849,0,14,Chevrolet,Corsica,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1992,1000,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3832,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,885,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,21.7949,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8850,0,14,Chevrolet,Corsica,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4124,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8851,0,14,Chevrolet,Corsica,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8852,14,0,Chrysler,LeBaron,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8853,14,0,Chrysler,LeBaron,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-3000,,CLKUP,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8854,14,0,Chrysler,LeBaron,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1992,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2619,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8855,14,0,Chrysler,LeBaron,Y,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8856,14,0,Chrysler,LeBaron,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8857,14,0,Chrysler,LeBaron,N,false,89,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8858,0,14,Nissan,Stanza,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1992,-1000,,3MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8859,0,14,Nissan,Stanza,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Compact Cars,1992,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3831,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,886,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,17.9487,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8860,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,8861,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1992,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,8862,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,89,8863,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-3000,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,8864,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Compact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,8865,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1992,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8866,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Compact Cars,1992,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8867,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,91,8868,0,12,Ford,Escort,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1992,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,91,8869,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1992,1000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3910,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,887,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,17,91,8870,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.8718,0.0,Compact Cars,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,17,91,8871,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.3333,0.0,48.0,0.0,Compact Cars,1992,2500,,SIL,,,,,,, +10.987,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,17,91,8872,0,0,Ford,Escort FS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,35.0,0.0,51.0,0.0,Compact Cars,1992,2750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3191,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,83,8873,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3192,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,19,83,8874,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Compact Cars,1992,-3750,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3193,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,19,83,8875,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.7436,0.0,Compact Cars,1992,500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,3190,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,19,83,8876,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1992,-2250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3303,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,19,83,8877,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1992,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3300,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,19,83,8878,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Compact Cars,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8879,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Compact Cars,1992,-1750,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3911,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,888,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8880,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1992,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8881,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Compact Cars,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8882,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3231,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8883,13,13,Ford,Tempo FS,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,34.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8884,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8885,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8886,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1992,500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26031,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8887,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,39.0,0.0,Compact Cars,1992,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8888,0,12,Hyundai,J-Car/Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1992,-500,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26501,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8889,0,12,Hyundai,J-Car/Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Compact Cars,1992,-500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3930,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,889,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,8890,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Compact Cars,1992,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,8891,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Compact Cars,1992,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26504,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,8892,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Compact Cars,1992,2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8893,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,31.0,0.0,42.0,0.0,Compact Cars,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8894,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.4444,0.0,47.0,0.0,Compact Cars,1992,2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29022,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8895,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Compact Cars,1992,500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8896,0,14,Mercedes-Benz,500SEC,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Compact Cars,1992,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,8897,0,14,Mercedes-Benz,560SEC,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Compact Cars,1992,-15500,T,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8898,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8899,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1992,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,82,89,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,48.0,0.0,Subcompact Cars,1985,2500,,,,,,,,, +25.336022,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3712,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,890,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,18.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,27201,(GUZZLER) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8900,24,0,Import Trade Services,BMW 325i,Y,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,23.0,0.0,Compact Cars,1992,-6250,T,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30551,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8901,0,13,Jaguar,XJ6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Compact Cars,1992,-5750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8902,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Compact Cars,1992,-3250,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8903,0,14,Lexus,ES 300,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Compact Cars,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3203,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8904,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Compact Cars,1992,-1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3202,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8905,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,42.0,0.0,Compact Cars,1992,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3302,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8906,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Compact Cars,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8907,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8908,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1992,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8909,0,12,Mercury,Tracer,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1992,1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3710,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,891,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.8889,0.0,23.0,0.0,Standard Pickup Trucks,1985,-5250,,Creeper,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8910,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.8718,0.0,Compact Cars,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8911,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1992,2500,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,BPE/SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8912,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1992,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,BPD/DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8913,0,13,Mazda,Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,BPE/SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,8914,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1992,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,BPD/DOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8915,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Compact Cars,1992,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,B6E2 (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,8916,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1992,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,B6E2 (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,8917,0,0,Mazda,323,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1992,2250,,,,,,,,, +15.287400000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,407.2,25,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Rear-Wheel Drive,20015,"(DSL,TRBO) (NO-CAT)",-1,2350,0,Diesel,Diesel,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8918,0,15,Mercedes-Benz,300D 2.5 Turbo,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,40.0,0.0,Compact Cars,1992,250,,,T,,Diesel,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8919,0,15,Mercedes-Benz,300E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1992,-4750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3833,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,892,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-7750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8920,0,15,Mercedes-Benz,300E 2.6,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-3000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20030,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,8921,0,15,Mercedes-Benz,300E 4Matic,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Compact Cars,1992,-6750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8922,0,15,Mercedes-Benz,400E,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Compact Cars,1992,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20065,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8923,0,14,Mercedes-Benz,500E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,22.0,0.0,Compact Cars,1992,-9500,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49061,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8924,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Compact Cars,1992,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,SOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8925,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1992,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49035,SOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8926,0,11,Mitsubishi,Galant,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,35.0,0.0,Compact Cars,1992,-1000,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,8927,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Compact Cars,1992,-1000,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49045,DOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8928,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,32.0,0.0,Compact Cars,1992,-2500,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49046,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8929,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1992,-3750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3830,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,893,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,17.9487,0.0,Standard Pickup Trucks,1985,-9250,,Creeper,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49035,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8930,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,39.0,0.0,Compact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,DOHC (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8931,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1992,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,49045,DOHC (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8932,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4300,(4-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8933,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.1795,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8934,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(4-VALVE) (FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8935,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(2-VALVE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8936,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1992,1500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4340,(4-VALVE) (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8937,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,38.0,0.0,Compact Cars,1992,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8938,14,14,Oldsmobile,Achieva,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,37.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41010,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8939,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Compact Cars,1992,-1750,,,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3911,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,894,0,0,Ford,F250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,12.0,0.0,15.0,0.0,Standard Pickup Trucks,1985,-15500,,Creeper,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41030,16-VALVE (FFS) (MPFI),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8940,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,36.0,0.0,Compact Cars,1992,-2250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41010,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8941,0,14,Peugeot,405 Sedan,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8942,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,36.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,8943,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0,0.0,Compact Cars,1992,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,89,8944,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,89,8945,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-3000,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,8946,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Compact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,13,89,8947,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1992,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8948,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,37.0,0.0,Compact Cars,1992,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2763,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,8949,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3930,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,895,0,0,Ford,F250 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4300,(4-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8950,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.1795,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8951,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,40.0,0.0,Compact Cars,1992,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(2-VALVE) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8952,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Compact Cars,1992,1500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(4-VALVE) (FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8953,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,40.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8954,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,37.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4125,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,8955,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Compact Cars,1992,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4125,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,19,89,8956,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,48.0,0.0,Compact Cars,1992,2250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4128,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,19,89,8957,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,52.0,0.0,Compact Cars,1992,2750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47025,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,88,8958,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1992,-2500,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,8959,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,SIL,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,896,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1985,-5250,,Lockup,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47015,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,88,8960,0,14,Saab,900,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,29.0,0.0,Compact Cars,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,8961,0,14,Saab,900,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,34.0,0.0,Compact Cars,1992,-1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,8962,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,44.8718,0.0,Compact Cars,1992,1500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS) (MPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8963,0,12,Saturn,SL,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,41.0,0.0,Compact Cars,1992,500,,2MODE CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4451,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,8964,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,49.0,0.0,Compact Cars,1992,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4450,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,8965,0,12,Saturn,SL,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,42.3077,0.0,Compact Cars,1992,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8966,0,14,Subaru,Legacy,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8967,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Compact Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8968,0,14,Subaru,Legacy AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Compact Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8969,0,14,Subaru,Legacy AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Compact Cars,1992,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,897,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1985,-6250,,Overdrive,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66032,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8970,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1992,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66032,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8971,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Compact Cars,1992,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,15,88,8972,0,15,Subaru,Loyale,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Compact Cars,1992,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,88,8973,0,15,Subaru,Loyale,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1992,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57008,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8974,0,12,Toyota,Cressida,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Compact Cars,1992,-3750,,2MODE 2LKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,8975,0,0,Volkswagen,Golf/GTI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1992,0,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,18,87,8976,0,0,Volkswagen,Golf/GTI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1992,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,18,87,8977,0,0,Volkswagen,GTI 16v,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +11.567466000000001,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,308.4848484848485,33,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,59005,"(DSL,TRBO)",-1,1800,0,Diesel,Diesel,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,8978,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,41.0,0.0,51.0,0.0,Compact Cars,1992,3000,,,T,,Diesel,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8979,17,17,Volkswagen,Jetta,N,false,88,87,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1992,0,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4950,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,898,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-6250,,Creeper,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,8980,17,17,Volkswagen,Jetta,Y,false,88,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,41.0,0.0,Compact Cars,1992,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8981,0,17,Volkswagen,Jetta GLI 16v,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,36.0,0.0,Compact Cars,1992,-1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8982,0,14,Volvo,240,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Compact Cars,1992,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8983,0,14,Volvo,240,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1992,-1000,,SIL,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,8984,0,15,Wallace Environmental,Wetl 300 E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Compact Cars,1992,-8000,T,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64010,"(20-VALVE) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8985,0,16,Audi,S4,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Midsize Cars,1992,-4750,,,T,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.2,4-Wheel or All-Wheel Drive,64013,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,8986,0,17,Audi,V8,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,25.0,0.0,Midsize Cars,1992,-8000,T,3MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,8987,0,16,Audi,100,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Midsize Cars,1992,-4750,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64017,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,8988,0,16,Audi,100,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Midsize Cars,1992,-3750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64014,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8989,0,16,Audi,100,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1992,-3750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4961,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,899,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64016,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8990,0,16,Audi,100 quattro,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Midsize Cars,1992,-5750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64015,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,8991,0,16,Audi,100 quattro,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Midsize Cars,1992,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12075,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8992,0,13,BMW,735i,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1992,-5250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12075,(GUZZLER) (FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,8993,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,27.0,0.0,Midsize Cars,1992,-5250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS) (MPFI),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,8994,0,13,BMW,750il,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Midsize Cars,1992,-9250,T,2MODE,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4122,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,8995,16,16,Buick,Century,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1992,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8996,16,16,Buick,Century,N,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,8997,16,16,Buick,Century,Y,false,98,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,8998,16,16,Buick,Regal,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4121,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,8999,16,16,Buick,Regal,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38042,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,23,50,9,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Two Seaters,1985,-3250,,,T,,,,,, +9.554625000000001,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,254.5,40,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,38010,,-1,1500,0,Diesel,Diesel,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,16,82,90,11,11,Nissan,Sentra,N,false,84,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,50.0,0.0,64.1026,0.0,Subcompact Cars,1985,4500,,SIL,,,Diesel,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4962,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,900,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9000,16,16,Buick,Regal,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9001,14,0,Buick,Riviera,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4610,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9002,0,14,Cadillac,Seville,Y,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1992,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4610,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9003,15,0,Cadillac,Eldorado,N,false,100,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize Cars,1992,-4750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,14101,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9004,0,13,BMW,735il,N,false,0,105,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,25.0,0.0,Midsize Cars,1992,-9250,T,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9005,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9006,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4121,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9007,15,16,Chevrolet,Lumina,Y,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4115,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9008,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4114,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9009,15,16,Chevrolet,Lumina,N,false,95,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1992,-3250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4963,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,901,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9010,0,16,Chrysler,New Yorker,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,16,97,9011,0,0,CX Automotive,XM v6,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.359,0.0,Midsize Cars,1992,-8000,T,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,16921,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,16,97,9012,0,0,CX Automotive,XM v6,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Midsize Cars,1992,-6750,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38030,(FFS) DOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9013,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1992,-3750,,3MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38031,(FFS) SOHC,-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9014,0,14,Nissan,Maxima,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,33.0,0.0,Midsize Cars,1992,-3750,,3MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,38030,(FFS) DOHC,-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9015,0,14,Nissan,Maxima,Y,false,0,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Midsize Cars,1992,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9016,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.8974,0.0,Midsize Cars,1992,-500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2619,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9017,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9018,0,16,Dodge,Dynasty,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2330,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9019,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1992,-3750,,,T,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,902,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9020,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1992,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9021,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,31.0,0.0,Midsize Cars,1992,-3750,,CLKUP,T,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9022,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Midsize Cars,1992,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2530,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9023,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Midsize Cars,1992,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9024,0,14,Dodge,Spirit,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,32.0513,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9025,0,14,Dodge,Spirit,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3363,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9026,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3320,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9027,0,18,Ford,Taurus SHO,Y,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1992,-3750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9028,0,18,Ford,Taurus,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Midsize Cars,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9029,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1992,-1750,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4980,,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,903,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3360,(FFS) (S-CHARGE),-1,3550,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9030,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Midsize Cars,1992,-5750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3361,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9031,15,0,Ford,Thunderbird,N,false,101,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1992,-4750,,,,S,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3362,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9032,15,0,Ford,Thunderbird,Y,false,101,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9033,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Midsize Cars,1992,-1750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,26502,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9034,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,26503,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9035,0,14,Hyundai,Sonata,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Midsize Cars,1992,-3250,,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9036,0,15,Mercedes-Benz,500SE,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9037,0,15,Mercedes-Benz,500SEL 5.6L,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9038,0,15,Mercedes-Benz,560SE,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.6,Rear-Wheel Drive,26606,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9039,0,15,Mercedes-Benz,560SEL,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,,,,,,,, +22.472478000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,,-1,3500,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,904,0,0,GMC,K15 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,21.0,0.0,25.0,0.0,Standard Pickup Trucks,1985,-5500,,Creeper,,,Diesel,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38040,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9040,0,15,Infiniti,Q45,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Midsize Cars,1992,-5750,T,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.5,Rear-Wheel Drive,38041,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9041,0,15,Infiniti,Q45 Full-Active Suspension,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Midsize Cars,1992,-8000,T,2MODE CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9042,0,14,Lexus,LS 400,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Midsize Cars,1992,-4750,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Rear-Wheel Drive,3340,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9043,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Midsize Cars,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3362,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9044,15,0,Mercury,Cougar,N,false,102,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1992,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3362,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9045,14,0,Lincoln,Mark VII,N,false,97,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Midsize Cars,1992,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3363,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9046,0,17,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9047,0,17,Mercury,Sable,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Midsize Cars,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56051,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,21,95,9048,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Midsize Cars,1992,-3750,,2MODE CLKUP,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56050,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,9049,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Midsize Cars,1992,-500,,2MODE CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4970,(350 V8),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,905,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1985,-11000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56051,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,21,95,9050,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Midsize Cars,1992,-2250,,,T,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,56050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,21,95,9051,14,15,Mazda,626/MX-6,N,false,93,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Midsize Cars,1992,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56070,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9052,0,12,Mazda,929,Y,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Midsize Cars,1992,-3750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4122,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9053,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,39.7436,0.0,Midsize Cars,1992,-500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9054,16,16,Oldsmobile,Cutlass Ciera,N,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9055,16,16,Oldsmobile,Cutlass Ciera,Y,false,97,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9056,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4121,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9057,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4115,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9058,14,16,Oldsmobile,Cutlass Supreme,N,false,97,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4114,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9059,14,16,Oldsmobile,Cutlass Supreme,Y,false,97,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1992,-3250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4971,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,906,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,11.1111,0.0,19.0,0.0,Standard Pickup Trucks,1985,-13000,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9060,14,0,Oldsmobile,Toronado,Y,false,99,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Midsize Cars,1992,-2500,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9061,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,35.0,0.0,Midsize Cars,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2520,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9062,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,40.0,0.0,Midsize Cars,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9063,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,33.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2610,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9064,0,14,Plymouth,Acclaim,N,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.8974,0.0,Midsize Cars,1992,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4120,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9065,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,34.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4121,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9066,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,37.0,0.0,Midsize Cars,1992,-1750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4115,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9067,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.3333,0.0,Midsize Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Front-Wheel Drive,4114,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9068,15,16,Pontiac,Grand Prix,N,false,95,100,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,34.0,0.0,Midsize Cars,1992,-3250,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9069,0,12,Rolls-Royce,Eight/Mulsanne S and S,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,3MODE,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4982,,-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,907,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1985,-5500,,,,,Diesel,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44002,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9070,0,12,Rolls-Royce,Turbo R/Turbo R(lwb),N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Midsize Cars,1992,-15500,T,4MODE,T,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9071,0,12,Rolls-Royce,Silver Spirit II/Silver Spur,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Midsize Cars,1992,-15500,T,3MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9072,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Midsize Cars,1992,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57017,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9073,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Midsize Cars,1992,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9074,0,15,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Midsize Cars,1992,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9075,0,15,Toyota,Camry,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize Cars,1992,-2500,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9076,0,15,Toyota,Camry,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.0,0.0,Midsize Cars,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59003,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9077,0,14,Volkswagen,Passat,Y,false,0,97,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize Cars,1992,-1000,,2MODE CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9078,0,14,Volkswagen,Passat,N,false,0,97,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Midsize Cars,1992,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9079,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize Cars,1992,-3250,,,T,,,,,, +25.479000000000003,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,678.6666666666666,15,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4981,,-1,3950,0,Diesel,Diesel,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,908,0,0,GMC,K25 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,23.0,0.0,Standard Pickup Trucks,1985,-7750,,Creeper,,,Diesel,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9080,0,17,Volvo,740,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9081,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize Cars,1992,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9082,0,17,Volvo,940,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize Cars,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9083,0,17,Volvo,960,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize Cars,1992,-2500,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9084,0,17,Buick,LeSabre,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9085,0,20,Buick,Park Avenue,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1992,-4750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9086,0,20,Buick,Park Avenue,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9087,0,20,Buick,Roadmaster,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9088,0,19,Cadillac,Brougham,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9089,0,19,Cadillac,Brougham,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1992,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,909,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Standard Pickup Trucks,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4610,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9090,18,16,Cadillac,Fleetwood/DeVille,Y,false,107,113,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1992,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4109,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9091,0,20,Chevrolet,Caprice,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9092,0,20,Chevrolet,Caprice,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,33.0,0.0,Large Cars,1992,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4113,(350 V8) (POLICE) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9093,0,20,Chevrolet,Caprice,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,26.0,0.0,Large Cars,1992,-6250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2710,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9094,0,17,Chrysler,Imperial/New Yorker Fifth Avenue,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,2810,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9095,0,17,Chrysler,Imperial/New Yorker Fifth Avenue,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1992,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2640,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9096,0,17,Dodge,Monaco,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2640,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9097,0,17,Eagle,Premier,N,false,0,105,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Large Cars,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3382,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9098,0,21,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1992,-1750,,Elec Overdrive,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9099,0,21,Ford,LTD Crown Victoria,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1992,-2500,,Mech Overdrive,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,38020,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,91,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Subcompact Cars,1985,-1750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4806,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,910,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,32.0,0.0,Standard Pickup Trucks,1985,-1750,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3350,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9100,0,19,Lincoln,Continental,N,false,0,104,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Large Cars,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3382,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9101,0,21,Mercury,Grand Marquis,Y,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1992,-1750,,Elec Overdrive,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3380,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9102,0,21,Mercury,Grand Marquis,N,false,0,111,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Large Cars,1992,-2500,,Mech Overdrive,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3382,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9103,0,22,Lincoln,Town Car,Y,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,34.0,0.0,Large Cars,1992,-1750,,Elec Overdrive,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Rear-Wheel Drive,3381,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9104,0,22,Lincoln,Town Car,N,false,0,118,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Large Cars,1992,-3250,,Mech Overdrive,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,20040,"(DSL,TRBO) (NO-CAT)",-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9105,0,16,Mercedes-Benz,300SD,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,30.0,0.0,Large Cars,1992,-3500,,,T,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Rear-Wheel Drive,20039,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9106,0,16,Mercedes-Benz,300SE,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 5-spd,16.6667,0.0,24.0,0.0,Large Cars,1992,-8000,T,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20050,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9107,0,16,Mercedes-Benz,400SE,N,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Large Cars,1992,-9500,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,20065,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9108,0,16,Mercedes-Benz,500SEL 5.0L,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Large Cars,1992,-11250,T,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,20070,(GUZZLER) (FFS),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9109,0,16,Mercedes-Benz,600SEL,N,false,0,112,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.0,0.0,Large Cars,1992,-13250,T,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,4920,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,911,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Standard Pickup Trucks,1985,-1000,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9110,0,16,Oldsmobile,Eighty-Eight,Y,false,0,108,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,36.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4410,(FFS) (S-CHARGE),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9111,0,20,Oldsmobile,Ninety-Eight,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,34.0,0.0,Large Cars,1992,-4750,,CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9112,0,20,Oldsmobile,Ninety-Eight,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,34.0,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4412,(FFS) (S-CHARGE),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9113,0,15,Pontiac,Bonneville,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Large Cars,1992,-5750,,2MODE CLKUP,,S,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4400,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9114,0,15,Pontiac,Bonneville,Y,false,0,109,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Large Cars,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47045,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,24,103,9115,0,18,Saab,9000,Y,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Large Cars,1992,-3250,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47035,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,24,103,9116,0,18,Saab,9000,N,false,0,101,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Large Cars,1992,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47040,"(FFS,TRBO)",-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,9117,0,18,Saab,9000,N,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,33.3333,0.0,Large Cars,1992,-2500,,SIL,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,47030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,24,103,9118,0,18,Saab,9000,Y,false,0,101,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Large Cars,1992,-1750,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4129,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9119,0,32,Chevrolet,Cavalier Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Small Station Wagons,1992,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4936,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,912,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1985,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4123,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9120,0,32,Chevrolet,Cavalier Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Small Station Wagons,1992,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9121,0,31,Ford,Escort Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.8718,0.0,Small Station Wagons,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9122,0,31,Ford,Escort Wagon,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Small Station Wagons,1992,2500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9123,0,34,Honda,Accord Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Small Station Wagons,1992,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9124,0,34,Honda,Accord Wagon,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,35.0,0.0,Small Station Wagons,1992,-500,,,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9125,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,44.8718,0.0,Small Station Wagons,1992,1500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9126,0,31,Mercury,Tracer Wagon,N,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Small Station Wagons,1992,2500,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9127,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Small Station Wagons,1992,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9128,0,36,Subaru,Legacy Wagon,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,38.0,0.0,Small Station Wagons,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9129,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Station Wagons,1992,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4934,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,913,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9130,0,36,Subaru,Legacy Wagon AWD,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Small Station Wagons,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66032,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9131,0,36,Subaru,Legacy Wagon AWD Turbo,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Small Station Wagons,1992,-4750,,CLKUP,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66032,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9132,0,36,Subaru,Legacy Wagon AWD Turbo,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Station Wagons,1992,-3750,,,T,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9133,0,35,Subaru,Loyale Wagon,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,33.0,0.0,Small Station Wagons,1992,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,66020,(FFS) (SPFI),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9134,0,35,Subaru,Loyale Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,39.0,0.0,Small Station Wagons,1992,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57004,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9135,0,26,Toyota,Corolla All-Trac Wagon,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Small Station Wagons,1992,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,57004,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9136,0,26,Toyota,Corolla All-Trac Wagon,Y,false,0,87,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.0,0.0,Small Station Wagons,1992,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9137,0,31,Toyota,Corolla Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Small Station Wagons,1992,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57004,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9138,0,31,Toyota,Corolla Wagon,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,42.0,0.0,Small Station Wagons,1992,1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9139,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-1000,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,4932,,-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,914,0,0,GMC,T15 (S15) Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-4250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9140,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1992,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9141,0,41,Buick,Century Wagon,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,9142,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9143,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,9144,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9145,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,0,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,9146,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,9147,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,9148,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,9149,0,0,Eagle,Summit Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,915,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3363,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9150,0,46,Ford,Taurus Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9151,0,46,Ford,Taurus Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3363,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9152,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,3351,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9153,0,46,Mercury,Sable Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,20030,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9154,0,42,Mercedes-Benz,300TE,Y,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,27.0,0.0,Midsize-Large Station Wagons,1992,-5750,T,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,20031,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9155,0,42,Mercedes-Benz,300TE 4Matic,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Midsize-Large Station Wagons,1992,-6750,T,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9156,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9157,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9158,0,44,Mitsubishi,Expo,Y,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9159,0,44,Mitsubishi,Expo,N,false,0,98,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.2,4-Wheel or All-Wheel Drive,1830,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,916,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1985,-6250,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9160,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,9161,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9162,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,9163,0,0,Mitsubishi,Expo.LRV,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,4110,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9164,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-1000,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9165,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1992,-2500,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4420,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9166,0,41,Oldsmobile,Cutlass Cruiser,N,false,0,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,38.0,0.0,Midsize-Large Station Wagons,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41010,(FFS) (MPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9167,0,38,Peugeot,405 Sports Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0513,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,41010,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9168,0,38,Peugeot,405 Sports Wagon,N,false,0,95,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9169,0,0,Plymouth,Colt Vista,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-500,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,917,0,0,Jeep,J-10 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,9170,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49030,SOHC-4 2WD (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,35,96,9171,0,0,Plymouth,Colt Vista,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,0,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,49032,SOHC-4 4WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,9172,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,9173,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,35,96,9174,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49033,SOHC 4WD (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,35,96,9175,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Midsize-Large Station Wagons,1992,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,49031,SOHC 2WD (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,35,96,9176,0,0,Plymouth,Colt Vista,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Midsize-Large Station Wagons,1992,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57006,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9177,0,42,Toyota,Camry Wagon,Y,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,35.0,0.0,Midsize-Large Station Wagons,1992,-1000,,2MODE 2LKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57007,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9178,0,42,Toyota,Camry Wagon,N,false,0,100,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-2500,,2MODE 2LKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59003,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9179,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,37.0,0.0,Midsize-Large Station Wagons,1992,-1000,,2MODE CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,1840,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,918,0,0,Jeep,J-20 Pickup Truck,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1985,-13000,,,,,,,,, +14.964294,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,59003,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9180,0,34,Volkswagen,Passat Wagon,N,false,0,99,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,39.0,0.0,Midsize-Large Station Wagons,1992,-500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,42,91,9181,0,0,Volvo,240 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,42,91,9182,0,0,Volvo,240 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Midsize-Large Station Wagons,1992,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,9183,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1992,-3250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60030,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,39,95,9184,0,0,Volvo,740 Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Midsize-Large Station Wagons,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,60020,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,39,95,9185,0,0,Volvo,940 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,28.2051,0.0,Midsize-Large Station Wagons,1992,-3250,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60010,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,39,95,9186,0,0,Volvo,960 Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.3333,0.0,Midsize-Large Station Wagons,1992,-2500,,2MODE,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,2.9,Rear-Wheel Drive,60302,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,42,94,9187,0,0,Wallace Environmental,Wetl 300 TE,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,22.0,0.0,Midsize-Large Station Wagons,1992,-8000,T,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9188,0,55,Buick,Roadmaster Wagon,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9189,0,55,Buick,Roadmaster Wagon,Y,false,0,116,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57081,,-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,919,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,30.0,0.0,Standard Pickup Trucks,1985,-2500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9190,0,55,Chevrolet,Caprice Wagon,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9191,0,55,Chevrolet,Caprice Wagon,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9192,0,55,Oldsmobile,Custom Cruiser,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4100,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9193,0,55,Oldsmobile,Custom Cruiser,N,false,0,115,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Midsize-Large Station Wagons,1992,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9194,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1992,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9195,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1992,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9196,0,0,Chevrolet,S10 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1992,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9197,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1992,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9198,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Small Pickup Trucks,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9199,0,0,Chevrolet,S10 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Small Pickup Trucks,1992,-4250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,38020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,92,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Subcompact Cars,1985,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57091,(CAL)(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,920,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,28.0,0.0,Standard Pickup Trucks,1985,-2500,,2MODE 2LKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9200,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1992,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38080,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9201,0,0,Nissan,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,35.0,0.0,Small Pickup Trucks,1992,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9202,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1992,-3250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38090,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9203,0,0,Nissan,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9204,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9205,0,0,Dodge,Ram 50 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3600,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9206,0,0,Ford,Ranger Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,29.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3601,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9207,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Small Pickup Trucks,1992,-500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3642,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9208,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3644,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9209,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Small Pickup Trucks,1992,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,921,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,32.0,0.0,Standard Pickup Trucks,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3663,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9210,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Small Pickup Trucks,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3660,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9211,0,0,Ford,Ranger Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Small Pickup Trucks,1992,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4802,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9212,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.3333,0.0,Small Pickup Trucks,1992,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4801,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9213,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,35.0,0.0,Small Pickup Trucks,1992,-500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Rear-Wheel Drive,4810,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9214,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Small Pickup Trucks,1992,-2500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9215,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Small Pickup Trucks,1992,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9216,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.2051,0.0,Small Pickup Trucks,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9217,0,0,GMC,Sonoma 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Small Pickup Trucks,1992,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9218,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,31.0,0.0,Small Pickup Trucks,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9219,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1992,-3250,,,,,,,,, +16.612308000000002,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,442.60869565217394,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57084,"(DSL,TRBO)",-1,2600,0,Diesel,Diesel,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,922,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,33.0,0.0,Standard Pickup Trucks,1985,-1000,,,T,,Diesel,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29082,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9220,0,0,Isuzu,Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9221,0,0,Mitsubishi,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,29.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,49091,SOHC (FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9222,0,0,Mitsubishi,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,31.0,0.0,Small Pickup Trucks,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,4-Wheel or All-Wheel Drive,3610,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9223,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Small Pickup Trucks,1992,-1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3630,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9224,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Small Pickup Trucks,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.9,4-Wheel or All-Wheel Drive,3631,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9225,0,0,Ford,Ranger Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Small Pickup Trucks,1992,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3685,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9226,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Small Pickup Trucks,1992,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3683,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9227,0,0,Ford,Ranger Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Small Pickup Trucks,1992,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,43101,"(FFS,TRBO) (MPFI)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9228,0,0,PAS Inc - GMC,Pas-Syclone,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Small Pickup Trucks,1992,-8000,,CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9229,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,923,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1985,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9230,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9231,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9232,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9233,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9234,0,0,Chevrolet,C1500 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9235,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9236,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9237,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1992,-4500,,CLKUP,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4870,(NO-CAT),-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9238,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0513,0.0,Standard Pickup Trucks,1992,-2750,,Creeper,,,Diesel,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,7.4,Rear-Wheel Drive,4880,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9239,0,0,Chevrolet,C1500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,16.0,0.0,Standard Pickup Trucks,1992,-15500,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,924,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Vans,1985,-1000,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9240,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9241,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9242,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9243,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9244,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9245,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9246,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9247,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1992,-7750,,SIL,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9248,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Standard Pickup Trucks,1992,-4500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4870,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9249,0,0,Chevrolet,C2500 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-3500,,Creeper,,,Diesel,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,925,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Vans,1985,-500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2827,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9250,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Standard Pickup Trucks,1992,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9251,0,0,Dodge,Dakota Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9252,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,28.0,0.0,Standard Pickup Trucks,1992,-5250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9253,0,0,Dodge,Dakota Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9254,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2857,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9255,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9256,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9257,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9258,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9259,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,926,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Vans,1985,-3250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9260,0,0,Dodge,D100/D150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1992,-13000,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9261,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9262,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9263,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9264,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9265,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9266,0,0,Dodge,D250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,18.0,0.0,Standard Pickup Trucks,1992,-13000,,Creeper,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9267,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,23.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-1750,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9268,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.7692,0.0,Standard Pickup Trucks,1992,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9269,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Standard Pickup Trucks,1992,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4850,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,927,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Vans,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9270,0,0,Jeep,Comanche Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1992,-3250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9271,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3708,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9272,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3703,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9273,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3808,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9274,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3802,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9275,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3804,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9276,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3805,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9277,0,0,Ford,F150 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3901,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9278,0,0,Ford,F150 Pickup 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,21.0,0.0,Standard Pickup Trucks,1992,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9279,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4854,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,928,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Vans,1985,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3707,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9280,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-6250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3704,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9281,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3807,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9282,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3803,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9283,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-7750,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3806,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9284,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3902,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9285,0,0,Ford,F250 Pickup 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9286,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9287,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9288,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9289,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,929,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0769,0.0,Vans,1985,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9290,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,26.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9291,0,0,GMC,Sierra 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9292,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-7750,,SIL,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9293,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9294,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Standard Pickup Trucks,1992,-4500,,CLKUP,,,Diesel,,,, +19.109250000000003,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,509.0,20,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4870,(NO-CAT),-1,2950,0,Diesel,Diesel,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9295,0,0,GMC,Sierra 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Standard Pickup Trucks,1992,-2750,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9296,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9297,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4840,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9298,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9299,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38032,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,76,93,9,0,Nissan,200SX,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,930,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4851,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9300,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9301,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4860,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9302,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4862,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9303,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,24.0,0.0,Standard Pickup Trucks,1992,-7750,,SIL,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9304,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Standard Pickup Trucks,1992,-4500,,CLKUP,,,Diesel,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4870,(NO-CAT),-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9305,0,0,GMC,C2500 Sierra 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-3500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29083,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9306,0,0,Isuzu,Pickup 2WD 1-Ton,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,26.9231,0.0,Standard Pickup Trucks,1992,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9307,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,32.0,0.0,Standard Pickup Trucks,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56082,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9308,0,0,Mazda,B2200/B2600i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1992,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9309,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Standard Pickup Trucks,1992,-1750,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,931,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,56083,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9310,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.3333,0.0,Standard Pickup Trucks,1992,-500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9311,0,0,Mazda,B2200/B2600i,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,31.0,0.0,Standard Pickup Trucks,1992,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9312,0,0,Mazda,B2200/B2600i,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-2500,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9313,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57013,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9314,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,33.3333,0.0,Standard Pickup Trucks,1992,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9315,0,0,Toyota,Truck 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9316,0,0,Toyota,Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9317,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9318,0,0,Toyota,1-Ton Truck 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9319,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,932,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Vans,1985,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9320,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9321,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,25.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9322,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9323,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9324,0,0,Chevrolet,K1500 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9325,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1992,-11000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9326,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9327,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4970,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9328,0,0,Chevrolet,K1500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Standard Pickup Trucks,1992,-4500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9329,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,933,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.0,0.0,Vans,1985,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9330,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9331,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9332,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9333,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9334,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9335,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1992,-11000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9336,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9337,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4970,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9338,0,0,Chevrolet,K2500 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-4500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9339,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Standard Pickup Trucks,1992,-6750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,934,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9340,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4942,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9341,0,0,Chevrolet,S10 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-5250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9342,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.2051,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9343,0,0,Nissan,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Standard Pickup Trucks,1992,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38091,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9344,0,0,Nissan,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.359,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9345,0,0,Dodge,Dakota Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9346,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9347,0,0,Dodge,Dakota Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9348,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9349,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,935,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,22.0,0.0,Vans,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9350,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,25.0,0.0,Standard Pickup Trucks,1992,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9351,0,0,Dodge,Power Ram 50 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9352,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.9,4-Wheel or All-Wheel Drive,2950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9353,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2977,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9354,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9355,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9356,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9357,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9358,0,0,Dodge,W100/W150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-15500,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2977,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9359,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,16.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,936,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Vans,1985,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9360,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9361,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9362,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-13000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9363,0,0,Dodge,W250 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,17.0,0.0,Standard Pickup Trucks,1992,-15500,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9364,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-2500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9365,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-2500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9366,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9367,0,0,Jeep,Comanche Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3741,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9368,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3744,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9369,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-7750,,Creeper,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,937,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1985,-3500,,,,,Diesel,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3743,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9370,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3824,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9371,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3825,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9372,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3820,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9373,0,0,Ford,F150 Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,15.0,0.0,19.2308,0.0,Standard Pickup Trucks,1992,-9250,,Creeper,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3823,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9374,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3921,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9375,0,0,Ford,F150 Pickup 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Standard Pickup Trucks,1992,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9376,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9377,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9378,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-5250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9379,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4882,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,938,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Vans,1985,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9380,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9381,0,0,GMC,Sierra 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9382,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1992,-11000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9383,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9384,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4970,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9385,0,0,GMC,Sierra 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4500,,Creeper,,,Diesel,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9386,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4941,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9387,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4940,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9388,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,Creeper,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4951,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9389,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Standard Pickup Trucks,1992,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,939,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,4950,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9390,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,22.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9391,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4962,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9392,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.3333,0.0,19.0,0.0,Standard Pickup Trucks,1992,-11000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9393,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,21.0,0.0,Standard Pickup Trucks,1992,-9250,,SIL,,,,,,, +22.472478000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4971,(NO-CAT),-1,3500,0,Diesel,Diesel,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9394,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-5500,,CLKUP,,,Diesel,,,, +21.224007,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,4-Wheel or All-Wheel Drive,4970,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9395,0,0,GMC,K2500 Sierra 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Standard Pickup Trucks,1992,-4500,,Creeper,,,Diesel,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9396,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Standard Pickup Trucks,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9397,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Standard Pickup Trucks,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4942,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9398,0,0,GMC,Sonoma 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-5250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9399,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-5250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,38031,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,76,94,9,0,Nissan,200SX,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,33.3333,0.0,Subcompact Cars,1985,-1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,940,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9400,0,0,Isuzu,Pickup 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9401,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,49092,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9402,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49095,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9403,0,0,Mitsubishi,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Standard Pickup Trucks,1992,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9404,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,56087,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9405,0,0,Mazda,B2600i 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Standard Pickup Trucks,1992,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9406,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.0,0.0,Standard Pickup Trucks,1992,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9407,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,28.0,0.0,Standard Pickup Trucks,1992,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9408,0,0,Toyota,Truck 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Standard Pickup Trucks,1992,-9250,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9409,0,0,Toyota,Truck 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Standard Pickup Trucks,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,941,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,23.0769,0.0,Vans,1985,-6250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9410,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9411,0,0,Chevrolet,Astro AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9412,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9413,0,0,Chevrolet,Astro 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1992,-4250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9414,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9415,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9416,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9417,0,0,Chevrolet,G10/20 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Vans,1992,-4500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9418,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9419,0,0,Chevrolet,G30 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,942,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,25.0,0.0,Vans,1985,-5250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9420,0,0,Nissan,Pathfinder Van (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Vans,1992,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9421,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,22.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9422,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,24.0,0.0,Vans,1992,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9423,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Vans,1992,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9424,0,0,Dodge,B150/B250 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9425,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1992,-13000,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9426,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9427,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Vans,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9428,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1992,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3643,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9429,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Vans,1992,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,943,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,18.0,0.0,Vans,1985,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3645,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9430,0,0,Ford,Aerostar Van,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Vans,1992,-1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3665,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9431,0,0,Ford,Aerostar Van,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3684,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9432,0,0,Ford,Aerostar Van AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Vans,1992,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3710,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9433,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,21.0,0.0,Vans,1992,-7750,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9434,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Vans,1992,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3801,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9435,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1992,-7750,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3900,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9436,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Vans,1992,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3709,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9437,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,19.0,0.0,Vans,1992,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9438,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3904,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9439,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Vans,1992,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,944,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1985,-11000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9440,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9441,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9442,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9443,0,0,GMC,G15/25 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Vans,1992,-4500,,CLKUP,,,Diesel,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9444,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4861,(350 V8) (FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9445,0,0,GMC,G35 Vandura 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9446,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9447,0,0,GMC,Safari AWD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9448,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Vans,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9449,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Vans,1992,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,945,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,20.0,0.0,Vans,1985,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9450,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9451,0,0,Chevrolet,Astro AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9452,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9453,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9454,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9455,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9456,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9457,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Vans,1992,-6500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9458,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9459,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.7949,0.0,Vans,1992,-7750,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2859,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,946,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,13.0,0.0,23.0769,0.0,Vans,1985,-9250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9460,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,23.0769,0.0,Vans,1992,-7750,,,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9461,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.3333,0.0,17.0,0.0,Vans,1992,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9462,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,21.0,0.0,Vans,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9463,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.9487,0.0,Vans,1992,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9464,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,19.2308,0.0,Vans,1992,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9465,0,0,Dodge,B350 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.0,0.0,16.0,0.0,Vans,1992,-15500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3640,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9466,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,3641,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9467,0,0,Ford,Aerostar Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,30.0,0.0,Vans,1992,-3250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3664,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9468,0,0,Ford,Aerostar Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3681,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9469,0,0,Ford,Aerostar Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Vans,1992,-6250,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,947,0,0,Dodge,B150/B250 Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,14.4444,0.0,24.0,0.0,Vans,1985,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3706,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9470,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1992,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9471,0,0,Ford,E150 Club Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,22.0,0.0,Vans,1992,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3903,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9472,0,0,Ford,E150 Club Wagon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,19.2308,0.0,Vans,1992,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9473,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.0,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4850,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9474,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.4444,0.0,21.7949,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9475,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +23.873823,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,636.25,16,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4871,(NO-CAT),-1,3700,0,Diesel,Diesel,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9476,0,0,GMC,G15/25 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,24.359,0.0,Vans,1992,-6500,,CLKUP,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9477,0,0,GMC,G35 Rally 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1992,-9250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4945,(FFS) (MPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9478,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9479,0,0,GMC,Safari AWD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1992,-6250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,948,0,0,Dodge,B150/B250 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.6667,0.0,Vans,1985,-13000,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9480,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9481,0,0,GMC,Safari 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Vans,1992,-5250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9482,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Vans,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,57012,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9483,0,0,Toyota,Previa,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Vans,1992,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9484,0,0,Toyota,Previa All-Trac,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,26.0,0.0,Vans,1992,-4250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57012,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9485,0,0,Toyota,Previa All-Trac,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,26.0,0.0,Vans,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9486,0,0,Chevrolet,Lumina/APV Minivan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9487,0,0,Chevrolet,Lumina/APV Minivan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9488,0,0,Chevrolet,Suburban 1500 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9489,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,949,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1985,-11000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9490,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9491,0,0,Chevrolet,S10 Blazer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Special Purpose Vehicles,1992,-4250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38022,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9492,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Special Purpose Vehicles,1992,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38022,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9493,0,0,Nissan,Axxess,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,34.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9494,0,0,Nissan,Pathfinder 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Special Purpose Vehicles,1992,-5250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38092,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9495,0,0,Nissan,Pathfinder 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9496,0,0,Chrysler,Town and Country 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2826,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9497,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2819,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9498,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9499,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.1111,0.0,31.0,0.0,Special Purpose Vehicles,1992,-2500,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38041,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,15,73,95,0,0,Nissan,300ZX 2x2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Subcompact Cars,1985,-4250,,2MODE,,,,,,, +29.950562,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2850,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,950,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,17.0,0.0,Vans,1985,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9500,0,0,Dodge,Caravan C/V/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2826,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9501,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2819,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9502,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9503,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1992,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9504,0,0,Dodge,Caravan/Grand Caravan 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9505,0,0,Dodge,Caravan/Grand Caravan 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2870,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9506,0,0,Dodge,Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9507,0,0,Dodge,Ramcharger 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.9487,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,2820,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9508,0,0,Jeep,Cherokee 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,30.7692,0.0,Special Purpose Vehicles,1992,-2500,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9509,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,26.9231,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +32.961,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,,-1,5500,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,951,0,0,Dodge,B350 Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,11.1111,0.0,15.0,0.0,Vans,1985,-15500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,2860,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9510,0,0,Jeep,Cherokee 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicles,1992,-3250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3662,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9511,0,0,Ford,Explorer 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,3661,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9512,0,0,Ford,Explorer 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9513,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9514,0,0,Geo,Tracker Convertible 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4863,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9515,0,0,GMC,Suburban 1500 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4842,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9516,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4845,(FFS) (MPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9517,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4841,(FFS) (SPFI),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9518,0,0,GMC,Jimmy 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Special Purpose Vehicles,1992,-4250,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,29081,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9519,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,26.9231,0.0,Special Purpose Vehicles,1992,-3250,,,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3702,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,952,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.6667,0.0,21.0,0.0,Vans,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29084,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9520,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29084,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9521,0,0,Isuzu,Amigo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,29085,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9522,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,29086,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9523,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Rear-Wheel Drive,29086,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9524,0,0,Isuzu,Rodeo 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.6,Rear-Wheel Drive,56087,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9525,0,0,Mazda,MPV,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,56088,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9526,0,0,Mazda,MPV,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,2MODE CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9527,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,56090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9528,0,0,Mazda,Navajo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9529,0,0,Pontiac,Trans Sport 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,953,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,26.0,0.0,Vans,1985,-5250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9530,0,0,Pontiac,Trans Sport 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Special Purpose Vehicles,1992,-4250,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2826,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9531,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2819,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9532,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,35.8974,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9533,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1992,-2500,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2830,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9534,0,0,Plymouth,Voyager/Grand Voyager 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-2500,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,2840,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9535,0,0,Plymouth,Voyager/Grand Voyager 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Rear-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9536,0,0,Suzuki,Samurai 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1992,1000,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54084,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9537,0,0,Suzuki,Sidekick Hardtop 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1992,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9538,0,0,Suzuki,Sidekick 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4820,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9539,0,0,Oldsmobile,Silhouette 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3701,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,954,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,19.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.8,Front-Wheel Drive,4901,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9540,0,0,Oldsmobile,Silhouette 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,30.7692,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9541,0,0,Toyota,4Runner 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.9231,0.0,Special Purpose Vehicles,1992,-4250,,2MODE 2LKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9542,0,0,Chevrolet,Blazer 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9543,0,0,Chevrolet,Blazer 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4963,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9544,0,0,Chevrolet,Suburban 1500 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-11000,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9545,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9546,0,0,Chevrolet,S10 Blazer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4942,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9547,0,0,Chevrolet,S10 Blazer 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1992,-5250,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,19081,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9548,0,0,Daihatsu,Rocky 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38023,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9549,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.2051,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3700,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,955,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,28.0,0.0,Vans,1985,-3250,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,38023,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9550,0,0,Nissan,Axxess AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,30.0,0.0,Special Purpose Vehicles,1992,-2500,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9551,0,0,Nissan,Pathfinder 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,38093,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9552,0,0,Nissan,Pathfinder 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,23.0769,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2949,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9553,0,0,Chrysler,Town and Country 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-6250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9554,0,0,Dodge,Caravan C/V/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9555,0,0,Dodge,Caravan/Grand Caravan 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2977,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9556,0,0,Dodge,Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,16.0,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2970,(FFS) Lock-up,-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9557,0,0,Dodge,Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,4-Wheel or All-Wheel Drive,2977,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9558,0,0,Dodge,Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,19.0,0.0,Special Purpose Vehicles,1992,-11000,,Creeper,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9559,0,0,Dodge,Ramcharger 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,956,0,0,Ford,E150 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,20.0,0.0,Vans,1985,-11000,,,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,8,5.9,4-Wheel or All-Wheel Drive,2990,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,9560,0,0,Dodge,Ramcharger 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,16.6667,0.0,Special Purpose Vehicles,1992,-15500,,Creeper,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9561,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,29.0,0.0,Special Purpose Vehicles,1992,-2500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9562,0,0,Jeep,Cherokee 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.359,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9563,0,0,Jeep,Cherokee 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-4250,,SIL,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.5,4-Wheel or All-Wheel Drive,2920,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9564,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,26.0,0.0,Special Purpose Vehicles,1992,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9565,0,0,Jeep,Wrangler 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,21.0,0.0,Special Purpose Vehicles,1992,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,2960,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9566,0,0,Jeep,Wrangler 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-4250,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3740,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9567,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,23.0,0.0,Special Purpose Vehicles,1992,-7750,,,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,4-Wheel or All-Wheel Drive,3742,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9568,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,15.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-7750,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3822,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9569,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,957,0,0,Ford,E150 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.2222,0.0,17.0,0.0,Vans,1985,-13000,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,4-Wheel or All-Wheel Drive,3821,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9570,0,0,Ford,Bronco 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.4444,0.0,21.0,0.0,Special Purpose Vehicles,1992,-9250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.8,4-Wheel or All-Wheel Drive,3920,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9571,0,0,Ford,Bronco 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-11000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3680,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9572,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,24.359,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,3682,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9573,0,0,Ford,Explorer 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-4250,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9574,0,0,Geo,Tracker Convertible 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9575,0,0,Geo,Tracker Convertible 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9576,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9577,0,0,Geo,Tracker Van 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9578,0,0,GMC,Jimmy 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9579,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3707,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,958,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,16.0,0.0,20.0,0.0,Vans,1985,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4942,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9580,0,0,GMC,Jimmy 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,26.0,0.0,Special Purpose Vehicles,1992,-5250,,SIL,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4963,(350 V8) (FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9581,0,0,GMC,Suburban 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-11000,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4961,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9582,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,4-Wheel or All-Wheel Drive,4960,(350 V8) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9583,0,0,GMC,Yukon 1500 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-9250,,SIL,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,4,2.6,4-Wheel or All-Wheel Drive,29091,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9584,0,0,Isuzu,Amigo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,26.0,0.0,Special Purpose Vehicles,1992,-5250,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29093,,-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9585,0,0,Isuzu,Rodeo 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,23.0,0.0,Special Purpose Vehicles,1992,-7750,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.1,4-Wheel or All-Wheel Drive,29093,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9586,0,0,Isuzu,Rodeo 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,24.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(DOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9587,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9588,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,2MODE CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29095,(DOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9589,0,0,Isuzu,Trooper,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,22.0,0.0,Special Purpose Vehicles,1992,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,4.9,Rear-Wheel Drive,3705,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,959,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,21.0,0.0,Vans,1985,-9250,,,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.2,4-Wheel or All-Wheel Drive,29094,(SOHC) (FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9590,0,0,Isuzu,Trooper,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.0,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.9,4-Wheel or All-Wheel Drive,46001,(FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9591,0,0,Land Rover,Range Rover,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-11250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9592,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49097,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9593,0,0,Mitsubishi,Montero,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9594,0,0,Mazda,MPV 4x4,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1992,-6250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,56088,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9595,0,0,Mazda,MPV 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.7778,0.0,24.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9596,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-6250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,56090,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9597,0,0,Mazda,Navajo 4x4,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,27.0,0.0,Special Purpose Vehicles,1992,-4250,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,43101,"(FFS,TRBO) (MPFI)",-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9598,0,0,PAS Inc - GMC,Pas-typhoon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Special Purpose Vehicles,1992,-8000,,CLKUP,T,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,2940,(FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9599,0,0,Plymouth,Voyager/Grand Voyager 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,25.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38041,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,73,96,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1985,-2500,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3800,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,960,0,0,Ford,E250 Econoline 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,19.0,0.0,Vans,1985,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9600,0,0,Subaru,Loyale AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,30.0,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9601,0,0,Subaru,Loyale AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(SPFI),-1,2750,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9602,0,0,Subaru,Loyale Wagon AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,28.2051,0.0,Special Purpose Vehicles,1992,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,4-Wheel or All-Wheel Drive,66091,(SPFI),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9603,0,0,Subaru,Loyale Wagon AWD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,37.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +13.1844,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.3,4-Wheel or All-Wheel Drive,54081,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9604,0,0,Suzuki,Samurai Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,37.0,0.0,Special Purpose Vehicles,1992,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9605,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9606,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,33.0,0.0,Special Purpose Vehicles,1992,-1000,,2MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9607,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54084,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9608,0,0,Suzuki,Sidekick Hardtop 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,33.0,0.0,Special Purpose Vehicles,1992,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9609,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,25.0,0.0,31.0,0.0,Special Purpose Vehicles,1992,-1000,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.8,Rear-Wheel Drive,3920,,-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,961,0,0,Ford,E250 Econoline 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,12.0,0.0,16.0,0.0,Vans,1985,-13000,,,,,,,,, +14.327048,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,4-Wheel or All-Wheel Drive,54082,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9610,0,0,Suzuki,Sidekick Soft-top 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,34.0,0.0,Special Purpose Vehicles,1992,0,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4944,(FFS) (MPFI),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9611,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-6750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,4-Wheel or All-Wheel Drive,4943,(FFS) (SPFI),-1,3450,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9612,0,0,Oldsmobile,Bravada AWD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.7778,0.0,27.0,0.0,Special Purpose Vehicles,1992,-5250,,CLKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,4.0,4-Wheel or All-Wheel Drive,57015,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9613,0,0,Toyota,Land Cruiser Wagon 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,9614,0,0,Toyota,4Runner 4WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,25.0,0.0,Special Purpose Vehicles,1992,-4250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.4,4-Wheel or All-Wheel Drive,57013,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9615,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,28.0,0.0,Special Purpose Vehicles,1992,-3250,,,,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9616,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-9250,,2MODE 2LKUP,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,57014,(FFS),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9617,0,0,Toyota,4Runner 4WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.6667,0.0,23.0,0.0,Special Purpose Vehicles,1992,-7750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,8,4.9,Front-Wheel Drive,4610,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9618,0,0,Cadillac,Commercial Chassis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,29.0,0.0,Special Purpose Vehicles,1992,-6750,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4111,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9619,0,0,Chevrolet,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,962,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.8889,0.0,23.0769,0.0,Vans,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4112,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9620,0,0,Chevrolet,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4800,(FFS),-1,3650,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9621,0,0,Chevrolet,Postal Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,18.0,0.0,20.0,0.0,Special Purpose Vehicles,1992,-6250,,CLKUP,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2850,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9622,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,18.0,0.0,Special Purpose Vehicles,1992,-11000,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,6,3.9,Rear-Wheel Drive,2859,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9623,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,18.0,0.0,Special Purpose Vehicles,1992,-11000,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2878,(FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9624,0,0,Dodge,Dakota Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,21.0,0.0,Special Purpose Vehicles,1992,-9250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.9,Rear-Wheel Drive,2890,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9625,0,0,Dodge,D250 Cab Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,18.0,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4101,(GM-CHEV) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9626,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,32.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4107,(350 V8) (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9627,0,0,Buick,Coachbuilder Wagon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Special Purpose Vehicles,1992,-3250,,CLKUP,,,,,,, +32.961,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,5500,0,Regular,Regular Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,9628,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.2222,0.0,14.0,0.0,Special Purpose Vehicles,1992,-15500,,2MODE 2LKUP,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57014,(FFS),-1,5000,0,Regular,Regular Gasoline,-1,-1,11,0.0,0,0.0,0.0,0.0,0.0,0,0,9629,0,0,Toyota,Cab/Chassis 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.2222,0.0,15.0,0.0,Special Purpose Vehicles,1992,-13000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,963,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26082,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9630,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1993,-4750,,CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,26082,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9631,0,0,Acura,NSX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Two Seaters,1993,-3750,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9632,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,32.0,0.0,Two Seaters,1993,-2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,9003,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9633,0,0,Alfa Romeo,Spider,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Two Seaters,1993,-1750,,,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,4.6,Front-Wheel Drive,4600,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9634,0,0,Cadillac,Allante,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.0,0.0,27.0,0.0,Two Seaters,1993,-8000,T,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4108,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9635,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Two Seaters,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4109,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9636,0,0,Chevrolet,Corvette,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Two Seaters,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4106,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9637,0,0,Chevrolet,Corvette,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Two Seaters,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9638,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Two Seaters,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9639,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.7692,0.0,Two Seaters,1993,-4750,,CLKUP,T,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,964,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,20.0,0.0,26.0,0.0,Vans,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9640,0,0,Nissan,300ZX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9641,0,0,Nissan,300ZX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Two Seaters,1993,-4750,,,T,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22020,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9642,0,0,Ferrari,Ferrari 348 TB/TS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,23.0769,0.0,Two Seaters,1993,-9500,T,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,12,4.9,Rear-Wheel Drive,22015,(GUZZLER) (FFS),-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9643,0,0,Ferrari,Ferrari 512 TR,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,12.0,0.0,20.0,0.0,Two Seaters,1993,-15500,T,,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,9644,0,0,Geo,Metro LSI Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,36.0,0.0,48.7179,0.0,Two Seaters,1993,2750,,,,,,,,, +8.89947,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,240.1891891891892,37,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54005,(FFS),-1,1500,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,0,0,9645,0,0,Geo,Metro LSI Convertible,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,46.0,0.0,59.0,0.0,Two Seaters,1993,4500,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9646,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.0,0.0,46.1538,0.0,Two Seaters,1993,2250,,CLKUP,,,,,,, +10.613442000000001,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26022,(FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,0,0,9647,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,48.7179,0.0,Two Seaters,1993,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26032,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9648,0,0,Honda,Civic Del Sol,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Two Seaters,1993,1500,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26032,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9649,0,0,Honda,Civic Del Sol,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,42.3077,0.0,Two Seaters,1993,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,965,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,27.0,0.0,Vans,1985,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30592,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9650,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,29.0,0.0,Two Seaters,1993,-4750,,2MODE 2LKUP,,,,,,, +21.974,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30593,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9651,0,0,Jaguar,XJS Convertible,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,27.0,0.0,Two Seaters,1993,-8000,T,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30595,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,14,0.0,0,0.0,0.0,0.0,0.0,0,0,9652,0,0,Jaguar,XJRS Convertble,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,19.2308,0.0,Two Seaters,1993,-13250,T,EMS 3MODE,,,,,,, +32.961,0.0,0.0,0.0,8,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,888.7,10,0.0,0,0.0,0.0,0.0,0.0,12,5.7,4-Wheel or All-Wheel Drive,69101,(GUZZLER) (FFS) (MPFI),-1,6050,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9653,0,0,Lamborghini,DB132/Diablo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,10.0,0.0,18.0,0.0,Two Seaters,1993,-18250,T,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,35002,"ELAN TURBO (FFS,TRBO)",-1,2600,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9654,0,0,Lotus,Elan,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Two Seaters,1993,-1000,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,35001,"GMP4 ANDIC (FFS,TRBO) (MPFI)",-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9655,0,0,Lotus,Esprit Turbo,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,35.0,0.0,Two Seaters,1993,-3750,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56035,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9656,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,36.0,0.0,Two Seaters,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Rear-Wheel Drive,56035,DOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9657,0,0,Mazda,MX-5 Miata,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Two Seaters,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56011,"(FFS,TRBO) (ROTARY)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9658,0,0,Mazda,RX-7,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Two Seaters,1993,-4750,,CLKUP,T,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,2,1.3,Rear-Wheel Drive,56011,"(FFS,TRBO) (ROTARY)",-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9659,0,0,Mazda,RX-7,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Two Seaters,1993,-4750,,,T,,,,,, +25.336022,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4250,0,Regular,Regular Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,966,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,15.0,0.0,21.0,0.0,Vans,1985,-9250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9660,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Two Seaters,1993,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9661,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Two Seaters,1993,-6750,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9662,0,0,Porsche,911 Carrera 4/2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,30.0,0.0,Two Seaters,1993,-5750,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9663,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Two Seaters,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9664,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Two Seaters,1993,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57001,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9665,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,35.0,0.0,Two Seaters,1993,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57002,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9666,0,0,Toyota,MR2,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,36.0,0.0,Two Seaters,1993,-1000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Rear-Wheel Drive,57002,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9667,0,0,Toyota,MR2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Two Seaters,1993,-500,,,,,,,,, +41.20125,0.0,0.0,0.0,7,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,1110.875,8,0.0,0,0.0,0.0,0.0,0.0,8,6.0,Rear-Wheel Drive,25301,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,7550,0,Premium,Premium Gasoline,-1,-1,10,0.0,0,0.0,0.0,0.0,0.0,0,0,9668,0,0,Vector,W8,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,8.0,0.0,14.0,0.0,Two Seaters,1993,-25750,T,EMS,T,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,56,9669,0,0,Nissan,NX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,46.0,0.0,Minicompact Cars,1993,1750,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3650,0,Regular,Regular Gasoline,-1,-1,18,0.0,0,0.0,0.0,0.0,0.0,0,0,967,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,17.0,0.0,25.0,0.0,Vans,1985,-6250,,,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38002,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,16,56,9670,0,0,Nissan,NX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,48.7179,0.0,Minicompact Cars,1993,2250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,56,9671,0,0,Nissan,NX,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,37.0,0.0,Minicompact Cars,1993,-500,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38011,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,16,56,9672,0,0,Nissan,NX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Minicompact Cars,1993,0,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,14,71,9673,7,0,Nissan,240SX,Y,false,69,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.3333,0.0,Minicompact Cars,1993,-3000,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Rear-Wheel Drive,38020,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,14,71,9674,7,0,Nissan,240SX,Y,false,69,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,35.8974,0.0,Minicompact Cars,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3051,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9675,6,0,Mercury,Capri,N,false,64,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,33.0,0.0,Minicompact Cars,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3040,"(FFS,TRBO)",-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9676,6,0,Mercury,Capri,Y,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,36.0,0.0,Minicompact Cars,1993,0,,,T,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,3050,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9677,6,0,Mercury,Capri,Y,false,64,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.7436,0.0,Minicompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9678,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,32.0,0.0,Minicompact Cars,1993,-4750,,,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.6,4-Wheel or All-Wheel Drive,42020,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9679,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,29.0,0.0,Minicompact Cars,1993,-6750,T,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,968,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,16.0,0.0,22.0,0.0,Vans,1985,-7750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.6,Rear-Wheel Drive,42020,(GUZZLER) (FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9680,4,0,Porsche,911 Carrera 4/2,N,false,55,0,0,0.0,0.0,0.0,0.0,Automatic (S4),18.0,0.0,30.0,0.0,Minicompact Cars,1993,-5750,T,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4000,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,9681,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,16.6667,0.0,24.0,0.0,Minicompact Cars,1993,-8000,T,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.4,Rear-Wheel Drive,42050,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,8,74,9682,0,0,Porsche,928 GTS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.3333,0.0,24.0,0.0,Minicompact Cars,1993,-11250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,12,63,9683,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0513,0.0,Minicompact Cars,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,3.0,Rear-Wheel Drive,42040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,12,63,9684,0,0,Porsche,968,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,33.0,0.0,Minicompact Cars,1993,-4750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9685,9,0,Toyota,Celica Convertible,Y,false,68,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Minicompact Cars,1993,-1000,,2MODE 2LKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9686,9,0,Toyota,Celica Convertible,N,false,68,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Minicompact Cars,1993,-500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57004,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9687,8,0,Toyota,Paseo,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,41.0,0.0,Minicompact Cars,1993,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57004,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9688,8,0,Toyota,Paseo,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Minicompact Cars,1993,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9689,6,0,Volkswagen,Cabriolet,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,33.3333,0.0,Minicompact Cars,1993,-500,,,,,,,,, +23.534154,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,969,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,16.0,0.0,23.0,0.0,Vans,1985,-7750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59004,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9690,6,0,Volkswagen,Cabriolet,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,38.0,0.0,Minicompact Cars,1993,500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.7,Front-Wheel Drive,26052,(FFS),-1,2600,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,9691,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,37.0,0.0,Subcompact Cars,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26042,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,16,79,9692,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,37.0,0.0,Subcompact Cars,1993,0,,2MODE CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26042,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,79,9693,0,11,Acura,Integra,Y,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64010,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9694,0,14,Audi,90 quattro,N,false,0,82,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Subcompact Cars,1993,-5750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12036,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9695,9,10,BMW,318i/318is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,39.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Rear-Wheel Drive,12036,(FFS),-1,2750,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9696,9,10,BMW,318i/318is,N,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,38.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12042,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9697,9,0,BMW,325i Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1993,-3250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9698,9,10,BMW,325i/325is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.8974,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9699,9,10,BMW,325i/325is,Y,false,82,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,2011,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,19,77,97,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,33.3333,0.0,51.0,0.0,Subcompact Cars,1985,2750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4881,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,970,0,0,GMC,Vandura G15/25 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Vans,1985,-3500,,,,,Diesel,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9700,10,0,BMW,850ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,13.3333,0.0,23.0,0.0,Subcompact Cars,1993,-9250,T,2MODE,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,12,5.0,Rear-Wheel Drive,12080,(GUZZLER) (FFS),-1,4250,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,9701,10,0,BMW,850ci,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,13.0,0.0,24.0,0.0,Subcompact Cars,1993,-9250,T,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4111,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,9702,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4110,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,82,9703,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4126,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,82,9704,0,0,Chevrolet,Camaro,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.8889,0.0,31.0,0.0,Subcompact Cars,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4125,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,82,9705,0,0,Chevrolet,Camaro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1993,-4750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4121,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9706,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9707,13,13,Chevrolet,Cavalier,Y,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,46.0,0.0,Subcompact Cars,1993,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4116,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9708,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9709,13,13,Chevrolet,Cavalier,N,false,84,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,SIL,,,,,,, +20.102931,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,535.7894736842105,19,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4882,,-1,3100,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,971,0,0,GMC,Vandura G15/25 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,22.0,0.0,30.0,0.0,Vans,1985,-3500,,,,,Diesel,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9710,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,23.0,0.0,34.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9711,10,0,Chrysler,LeBaron Convertible,Y,false,84,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9712,10,0,Chrysler,LeBaron Convertible,N,false,84,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9713,12,12,Nissan,Sentra,Y,false,83,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,45.0,0.0,Subcompact Cars,1993,1750,,CLKUP,,,,,,, +11.360558000000001,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,38001,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,0,0,9714,12,12,Nissan,Sentra,Y,false,83,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,49.0,0.0,Subcompact Cars,1993,2500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9715,12,12,Nissan,Sentra,N,false,83,83,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Subcompact Cars,1993,0,,3MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38010,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9716,12,12,Nissan,Sentra,N,false,83,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Subcompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,9717,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38030,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,75,9718,0,0,Nissan,300ZX 2x2,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.7692,0.0,Subcompact Cars,1993,-4750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9719,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,972,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,9720,11,11,Dodge,Colt,Y,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,51.0,0.0,Subcompact Cars,1993,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9721,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9722,11,11,Dodge,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2331,"(FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,17,81,9723,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,34.0,0.0,Subcompact Cars,1993,-3000,,,T,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,9724,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,81,9725,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,17,81,9726,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,17,81,9727,0,0,Dodge,Daytona,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9728,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9729,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,973,0,0,GMC,Vandura G35 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9730,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9731,10,0,Dodge,Shadow Convertible,N,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,34.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,11,82,9732,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1993,-3250,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,9733,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1993,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,9734,0,0,Dodge,Stealth,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1993,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,9735,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1993,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49050,SOHC (FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,9736,0,0,Dodge,Stealth,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1993,-3250,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9737,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,9738,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,51.0,0.0,Subcompact Cars,1993,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9739,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,974,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1985,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9740,11,11,Eagle,Summit,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,9741,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1993,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,9742,0,0,Eagle,Talon,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,9743,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1993,-3750,,2MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,9744,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1993,-4750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,9745,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1993,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,9746,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1993,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9747,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1993,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9748,0,0,Eagle,Talon,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9749,4,0,Ferrari,Ferrari Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,14.0,0.0,22.0,0.0,Subcompact Cars,1993,-11250,T,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,975,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Vans,1985,-1000,,SIL,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,3.4,Rear-Wheel Drive,22026,(GUZZLER) (FFS),-1,4650,0,Premium,Premium Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,9750,4,0,Ferrari,Ferrari Mondial T/Cabriolet,N,false,81,0,0,0.0,0.0,0.0,0.0,Automatic (S5),13.0,0.0,22.0,0.0,Subcompact Cars,1993,-11250,T,,,,,,,, +11.75609,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3070,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,12,86,9751,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,34.4444,0.0,42.0,0.0,Subcompact Cars,1993,2250,,,,,,,,, +9.976196,0.0,0.0,0.0,30,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,3071,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,38,0.0,0,0.0,0.0,0.0,0.0,12,86,9752,0,0,Ford,Festiva,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,39.0,0.0,54.0,0.0,Subcompact Cars,1993,3750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3220,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,12,83,9753,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,3221,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,12,83,9754,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3401,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,9755,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,18.8889,0.0,30.7692,0.0,Subcompact Cars,1993,-4250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,3400,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,12,83,9756,8,0,Ford,Mustang,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1993,-3250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3180,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,18,80,9757,0,0,Ford,Probe,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,39.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,3181,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,18,80,9758,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,42.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3260,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,80,9759,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,976,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Vans,1985,-500,,SIL,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,3261,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,18,80,9760,0,0,Ford,Probe,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,9761,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,51.0,0.0,Subcompact Cars,1993,3750,,,,,,,,, +8.24025,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,44,0.0,0,0.0,0.0,0.0,0.0,10,82,9762,0,0,Geo,Metro,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,50.6704,0.0,63.6983,0.0,Subcompact Cars,1993,5000,,SIL,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,9763,0,0,Geo,Metro LSI,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,51.0,0.0,Subcompact Cars,1993,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,9764,0,0,Geo,Metro LSI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1993,5250,,SIL,,,,,,, +7.009706,0.0,0.0,0.0,43,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,189.08510638297872,47,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54001,(FFS),-1,1150,0,Regular,Regular Gasoline,-1,-1,52,0.0,0,0.0,0.0,0.0,0.0,10,79,9765,0,0,Geo,Metro XFI,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,59.1796,0.0,74.6589,0.0,Subcompact Cars,1993,6250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,9766,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.0,0.0,40.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29010,(SOHC) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,12,83,9767,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,45.0,0.0,Subcompact Cars,1993,2250,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,9768,11,0,Geo,Storm,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1993,-500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29020,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,9769,11,0,Geo,Storm,Y,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,977,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Vans,1985,-3250,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26024,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,13,77,9770,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,33.3333,0.0,49.0,0.0,Subcompact Cars,1993,2500,,CLKUP,,,,,,, +8.657756000000001,0.0,0.0,0.0,35,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,233.8684210526316,38,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26012,(8-VALVE) (FFS),-1,1450,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,9771,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,47.0,0.0,59.0,0.0,Subcompact Cars,1993,4750,,SIL,,,,,,, +10.283832,0.0,0.0,0.0,29,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,277.71875,32,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26024,(FFS),-1,1700,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,13,77,9772,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,38.0,0.0,51.2821,0.0,Subcompact Cars,1993,3500,,,,,,,,, +9.141184,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,246.86111111111111,36,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26012,(8-VALVE) (FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,41,0.0,0,0.0,0.0,0.0,0.0,13,77,9773,12,12,Honda,Civic,N,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,44.0,0.0,58.9744,0.0,Subcompact Cars,1993,4250,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26034,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,13,77,9774,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,43.0,0.0,Subcompact Cars,1993,1500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26034,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,13,77,9775,12,12,Honda,Civic,Y,false,81,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,44.8718,0.0,Subcompact Cars,1993,2250,,,,,,,,, +7.646952,0.0,0.0,0.0,39,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,206.67441860465115,43,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1300,0,Regular,Regular Gasoline,-1,-1,49,0.0,0,0.0,0.0,0.0,0.0,13,77,9776,0,0,Honda,Civic HB VX,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,53.0,0.0,70.0,0.0,Subcompact Cars,1993,5500,,SIL,,,,,,, +8.24025,0.0,0.0,0.0,37,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,222.175,40,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26002,(FFS),-1,1400,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,13,77,9777,0,0,Honda,Civic HB VX,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,49.0,0.0,65.0,0.0,Subcompact Cars,1993,5000,,,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9778,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,38.0,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26062,(VTEC) (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9779,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.0,0.0,Subcompact Cars,1993,-2250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4850,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,978,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,19.0,0.0,28.0,0.0,Vans,1985,-4250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9780,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26067,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9781,8,0,Honda,Prelude,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,33.3333,0.0,Subcompact Cars,1993,-2250,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,26067,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9782,8,0,Honda,Prelude,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,33.3333,0.0,Subcompact Cars,1993,-2250,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,9783,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,42.0,0.0,Subcompact Cars,1993,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26505,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,9784,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.0,0.0,42.3077,0.0,Subcompact Cars,1993,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26505,(FFS) (MPFI),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,14,86,9785,0,11,Hyundai,Excel,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,46.0,0.0,Subcompact Cars,1993,2250,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26507,"(FFS,TRBO) (MPFI)",-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9786,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,41.0256,0.0,Subcompact Cars,1993,1000,,,T,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26508,(FFS) (MPFI),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9787,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,41.0256,0.0,Subcompact Cars,1993,1000,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26508,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9788,9,0,Hyundai,Scoupe,N,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,45.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29021,(DOHC) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,12,83,9789,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.4444,0.0,39.0,0.0,Subcompact Cars,1993,-500,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4854,,-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,979,0,0,GMC,Safari 2WD (cargo),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Vans,1985,-2500,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29021,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,12,83,9790,11,0,Isuzu,Impulse,N,false,78,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,38035,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9791,0,10,Infiniti,J30,N,false,0,87,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30590,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9792,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +20.589638,0.0,0.0,0.0,13,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30591,(GUZZLER) (FFS),-1,3750,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9793,11,0,Jaguar,XJS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,16.0,0.0,28.0,0.0,Subcompact Cars,1993,-6750,T,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,12,6.0,Rear-Wheel Drive,30594,(GUZZLER) (FFS) (MPFI),-1,5050,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9794,11,0,Jaguar,XJRS Coupe,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,20.0,0.0,Subcompact Cars,1993,-13250,T,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9795,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Rear-Wheel Drive,57010,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9796,9,0,Lexus,SC 300/SC 400,Y,false,85,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Subcompact Cars,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.0,Rear-Wheel Drive,57011,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9797,9,0,Lexus,SC 300/SC 400,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Subcompact Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56033,4VALVE (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,15,80,9798,0,0,Mazda,MX-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0256,0.0,Subcompact Cars,1993,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56033,4VALVE (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,15,80,9799,0,0,Mazda,MX-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.1111,0.0,45.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2100,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,19,77,98,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,27.0,0.0,37.0,0.0,Subcompact Cars,1985,0,,,,,,,,, +16.4805,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57080,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,980,0,0,Toyota,Cargo Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.3333,0.0,30.0,0.0,Vans,1985,-1750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,15,80,9800,0,0,Mazda,MX-3,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,35.0,0.0,Subcompact Cars,1993,-1750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,6,1.9,Front-Wheel Drive,56046,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,15,80,9801,0,0,Mazda,MX-3,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,36.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56051,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9802,12,0,Mazda,MX-6,N,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.7436,0.0,Subcompact Cars,1993,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,56051,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9803,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,43.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56052,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9804,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1993,-3750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Front-Wheel Drive,56052,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9805,12,0,Mazda,MX-6,Y,false,80,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,33.3333,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9806,0,12,Mercedes-Benz,190E 2.3,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Rear-Wheel Drive,20010,(FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9807,0,12,Mercedes-Benz,190E 2.3,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,37.0,0.0,Subcompact Cars,1993,-2250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9808,0,12,Mercedes-Benz,190E 2.6,Y,false,0,85,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.6,Rear-Wheel Drive,20020,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9809,0,12,Mercedes-Benz,190E 2.6,N,false,0,85,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,35.0,0.0,Subcompact Cars,1993,-3000,,,,,,,,, +15.689436,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Rear-Wheel Drive,57080,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,981,0,0,Toyota,Cargo Van 2WD,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,32.0,0.0,Vans,1985,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,9810,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1993,0,,2MODE,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,9811,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,9812,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1993,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,9813,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1993,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,9814,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1993,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,9815,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1993,-3000,,,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9816,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1993,-2250,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9817,0,0,Mitsubishi,Eclipse,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9818,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,9819,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,51.0,0.0,Subcompact Cars,1993,3000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,982,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,33.0,0.0,Vans,1985,-1750,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9820,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9821,11,11,Mitsubishi,Mirage,N,false,87,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,11,82,9822,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1993,-4750,,2MODE,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,4-Wheel or All-Wheel Drive,49052,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,9823,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,32.0,0.0,Subcompact Cars,1993,-3750,,,T,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49051,DOHC (FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,11,82,9824,0,0,Mitsubishi,3000 GT,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Subcompact Cars,1993,-3750,,,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9825,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,42.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +10.613442000000001,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,286.6774193548387,31,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,49010,SOHC (FFS),-1,1800,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,0,0,9826,11,11,Plymouth,Colt,Y,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,36.0,0.0,51.0,0.0,Subcompact Cars,1993,3000,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9827,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,49011,SOHC-4 (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9828,11,11,Plymouth,Colt,N,false,87,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,44.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,8,81,9829,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,39.0,0.0,Subcompact Cars,1993,0,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4808,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,983,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,24.0,0.0,33.0,0.0,Vans,1985,-1000,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,19611,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,8,81,9830,0,0,Plymouth,Laser,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,41.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,8,81,9831,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1993,-4750,,2MODE,T,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,8,81,9832,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.0,0.0,Subcompact Cars,1993,-3750,,2MODE,T,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,8,81,9833,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,35.0,0.0,Subcompact Cars,1993,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,19624,"DOHC TURBO (FFS,TRBO)",-1,3000,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,8,81,9834,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,32.0,0.0,Subcompact Cars,1993,-3000,,,T,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19622,DOHC (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9835,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,37.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,19623,"DOHC TURBO (FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,8,81,9836,0,0,Plymouth,Laser,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Subcompact Cars,1993,-2250,,,T,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4111,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,9837,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.1111,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,4110,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,84,9838,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4126,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,84,9839,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,31.0,0.0,Subcompact Cars,1993,-4750,,CLKUP,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Rear-Wheel Drive,4807,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,984,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,36.0,0.0,Vans,1985,-500,,SIL,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4125,(350 V8) (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,13,84,9840,0,0,Pontiac,Firebird/Formula,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 6-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1993,-4750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4123,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9841,12,13,Pontiac,Sunbird,Y,false,80,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,40.0,0.0,Subcompact Cars,1993,500,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,4113,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9842,12,13,Pontiac,Sunbird,N,false,80,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,45.0,0.0,Subcompact Cars,1993,1500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4116,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9843,12,13,Pontiac,Sunbird,Y,false,80,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Subcompact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9844,12,13,Pontiac,Sunbird,Y,false,80,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Subcompact Cars,1993,-1750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9845,9,0,Rolls-Royce,Continental,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Subcompact Cars,1993,-15500,T,3MODE,,,,,,, +29.950562,0.0,0.0,0.0,9,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44001,(GUZZLER) (FFS) (MPFI),-1,5500,0,Premium,Premium Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,9846,9,0,Rolls-Royce,Corniche IV,N,false,82,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,11.1111,0.0,18.0,0.0,Subcompact Cars,1993,-15500,T,3MODE,,,,,,, +19.381068,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47024,"(FFS,TRBO)",-1,3250,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,9847,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,26.9231,0.0,Subcompact Cars,1993,-4250,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47021,"(FFS,TRBO)",-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9848,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Subcompact Cars,1993,-1750,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9849,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Subcompact Cars,1993,-3250,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,985,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,27.0,0.0,Vans,1985,-4250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9850,11,0,Saab,Convertible,N,false,76,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Subcompact Cars,1993,-1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9851,11,0,Saturn,SC,N,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,46.0,0.0,Subcompact Cars,1993,1500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9852,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,42.0,0.0,Subcompact Cars,1993,500,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9853,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.8718,0.0,Subcompact Cars,1993,1000,,SIL,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9854,11,0,Saturn,SC,Y,false,77,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Subcompact Cars,1993,2250,,SIL,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9855,0,10,Subaru,Justy,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),37.0,0.0,45.0,0.0,Subcompact Cars,1993,2750,,CMODE,,,,,,, +10.987,0.0,0.0,0.0,28,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,3,1.2,Front-Wheel Drive,66010,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9856,0,10,Subaru,Justy,Y,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,37.0,0.0,47.0,0.0,Subcompact Cars,1993,2750,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9857,0,10,Subaru,Justy AWD,N,false,0,79,0,0.0,0.0,0.0,0.0,Automatic (variable gear ratios),34.4444,0.0,40.0,0.0,Subcompact Cars,1993,1750,,CMODE,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,3,1.2,4-Wheel or All-Wheel Drive,66010,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9858,0,10,Subaru,Justy AWD,N,false,0,79,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,41.0,0.0,Subcompact Cars,1993,1500,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,66040,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9859,8,0,Subaru,SVX,N,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,33.0,0.0,Subcompact Cars,1993,-3750,,CLKUP,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4850,,-1,3450,0,Regular,Regular Gasoline,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,986,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,18.0,0.0,26.9231,0.0,Vans,1985,-5250,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.3,4-Wheel or All-Wheel Drive,66040,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9860,8,0,Subaru,SVX AWD,Y,false,85,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,32.0,0.0,Subcompact Cars,1993,-4750,,CLKUP,,,,,,, +9.976196,0.0,0.0,0.0,31,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,269.3030303030303,33,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1650,0,Regular,Regular Gasoline,-1,-1,36,0.0,0,0.0,0.0,0.0,0.0,10,82,9861,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,40.0,0.0,51.0,0.0,Subcompact Cars,1993,3750,,,,,,,,, +8.02051,0.0,0.0,0.0,38,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,216.7560975609756,41,0.0,0,0.0,0.0,0.0,0.0,3,1.0,Front-Wheel Drive,54003,(FFS),-1,1350,0,Regular,Regular Gasoline,-1,-1,45,0.0,0,0.0,0.0,0.0,0.0,10,82,9862,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,51.0,0.0,64.0,0.0,Subcompact Cars,1993,5250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,10,82,9863,0,12,Suzuki,Swift,N,false,0,83,0,0.0,0.0,0.0,0.0,Automatic 3-spd,32.0,0.0,43.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +9.404872000000001,0.0,0.0,0.0,33,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,253.9142857142857,35,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54006,(FFS),-1,1550,0,Regular,Regular Gasoline,-1,-1,39,0.0,0,0.0,0.0,0.0,0.0,10,82,9864,0,12,Suzuki,Swift,Y,false,0,83,0,0.0,0.0,0.0,0.0,Manual 5-spd,43.0,0.0,55.0,0.0,Subcompact Cars,1993,4250,,SIL,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.3,Front-Wheel Drive,54007,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,10,79,9865,0,0,Suzuki,Swift GT,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,45.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57005,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,9866,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,40.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57005,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,74,9867,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,4,2.0,4-Wheel or All-Wheel Drive,57007,"(FFS,TRBO)",-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,13,74,9868,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,31.0,0.0,Subcompact Cars,1993,-3750,,,T,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,13,74,9869,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.2222,0.0,35.0,0.0,Subcompact Cars,1993,-1750,,2MODE 2LKUP,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4854,,-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,987,0,0,Chevrolet,Astro 2WD (passenger),N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,28.2051,0.0,Vans,1985,-4250,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,57008,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,74,9870,11,0,Toyota,Celica,N,false,75,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.0,0.0,36.0,0.0,Subcompact Cars,1993,-500,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9871,11,11,Toyota,Tercel,N,false,85,84,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Subcompact Cars,1993,500,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,27,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9872,11,11,Toyota,Tercel,Y,false,85,84,0,0.0,0.0,0.0,0.0,Manual 4-spd,35.0,0.0,46.0,0.0,Subcompact Cars,1993,2500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,57003,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9873,11,11,Toyota,Tercel,N,false,85,84,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,43.0,0.0,Subcompact Cars,1993,1750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59006,(FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,15,80,9874,0,0,Volkswagen,Corrado SLC,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Subcompact Cars,1993,-4250,,2MODE CLKUP,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,59006,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,15,80,9875,0,0,Volkswagen,Corrado SLC,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Subcompact Cars,1993,-2500,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,59001,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9876,10,10,Volkswagen,Fox,Y,false,77,77,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,42.0,0.0,Subcompact Cars,1993,1000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26092,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9877,14,15,Acura,Legend,Y,false,85,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,21.0,0.0,30.7692,0.0,Compact Cars,1993,-3750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.2,Front-Wheel Drive,26092,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9878,14,15,Acura,Legend,N,false,85,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,32.0,0.0,Compact Cars,1993,-4750,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26072,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9879,0,14,Acura,Vigor,Y,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,22.0,0.0,33.0,0.0,Compact Cars,1993,-3000,,CLKUP,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4851,,-1,3650,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,988,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.7778,0.0,22.0,0.0,Vans,1985,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,5,2.5,Front-Wheel Drive,26072,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9880,0,14,Acura,Vigor,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,34.0,0.0,Compact Cars,1993,-3000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9881,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1993,-4750,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9001,164/164L (FFS) (MPFI),-1,3150,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9882,0,15,Alfa Romeo,164,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,35.0,0.0,Compact Cars,1993,-3750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,9002,(164S) (FFS) (MPFI),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9883,0,15,Alfa Romeo,164,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,19.0,0.0,32.0,0.0,Compact Cars,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,5,2.2,4-Wheel or All-Wheel Drive,64013,"(20-VALVE) (FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9884,0,16,Audi,S4,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,30.0,0.0,Compact Cars,1993,-4750,,,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9885,0,16,Audi,100 quattro,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,28.0,0.0,Compact Cars,1993,-4750,,CLKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,2.8,4-Wheel or All-Wheel Drive,64012,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9886,0,16,Audi,100 quattro,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,29.0,0.0,Compact Cars,1993,-4750,,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3550,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9887,0,14,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,32.0,0.0,Compact Cars,1993,-5750,,2MODE CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.8,Front-Wheel Drive,64010,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9888,0,14,Audi,90,N,false,0,86,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.0,0.0,Compact Cars,1993,-3000,,,,,,,,, +17.337486000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3150,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9889,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1993,-3750,,,,,,,,, +20.589638,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4853,,-1,3450,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,989,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,24.0,0.0,Vans,1985,-5250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,2.5,Rear-Wheel Drive,12043,(FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9890,0,13,BMW,525i,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.1111,0.0,36.0,0.0,Compact Cars,1993,-3000,,,,,,,,, +23.534154,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,6,3.5,Rear-Wheel Drive,12060,(GUZZLER) (FFS),-1,4300,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9891,0,13,BMW,M5,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,13.0,0.0,29.0,0.0,Compact Cars,1993,-9500,T,,,,,,,, +19.381068,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,522.7647058823529,17,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS),-1,3250,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,0,0,9892,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,18.0,0.0,28.0,0.0,Compact Cars,1993,-4250,T,2MODE,,,,,,, +20.589638,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,555.4375,16,0.0,0,0.0,0.0,0.0,0.0,6,3.4,Rear-Wheel Drive,12056,(GUZZLER) (FFS),-1,3450,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9893,0,13,BMW,535i,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,17.0,0.0,30.0,0.0,Compact Cars,1993,-5250,T,,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9894,13,13,Buick,Skylark,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9895,13,13,Buick,Skylark,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9896,14,0,Chevrolet,Beretta,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9897,14,0,Chevrolet,Beretta,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1993,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(4-VALVE) (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9898,14,0,Chevrolet,Beretta,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1993,-2250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4116,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9899,14,0,Chevrolet,Beretta,N,false,90,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2101,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,19,77,99,0,0,Dodge,Charger,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,47.0,0.0,Subcompact Cars,1985,1500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,4.3,Rear-Wheel Drive,4852,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,990,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4115,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9900,14,0,Chevrolet,Beretta,N,false,90,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1993,-1750,,SIL,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4112,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9901,0,14,Chevrolet,Corsica,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,39.7436,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,4114,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9902,0,14,Chevrolet,Corsica,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,44.0,0.0,Compact Cars,1993,1000,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.1,Front-Wheel Drive,4116,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9903,0,14,Chevrolet,Corsica,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9904,14,14,Chrysler,LeBaron,N,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9905,14,14,Chrysler,LeBaron,N,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,34.0,0.0,Compact Cars,1993,-1750,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9906,14,14,Chrysler,LeBaron,N,false,89,96,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9907,14,14,Chrysler,LeBaron,N,false,89,96,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1993,-1750,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9908,0,14,Nissan,Altima / Stanza,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,3MODE CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.4,Front-Wheel Drive,38021,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9909,0,14,Nissan,Altima / Stanza,Y,false,0,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,38.0,0.0,Compact Cars,1993,0,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4861,(GM-CHEV),-1,4600,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,991,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,14.0,0.0,17.0,0.0,Vans,1985,-11000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9910,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,37.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,9911,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Compact Cars,1993,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9912,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,9913,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1993,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9914,0,0,Dodge,Shadow,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9915,0,0,Dodge,Shadow,Y,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1993,-1750,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,17,91,9916,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1993,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,17,91,9917,0,12,Ford,Escort,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1993,1000,,,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,17,91,9918,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1993,1000,,,,,,,,, +11.360558000000001,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,306.44827586206895,29,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1900,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,17,91,9919,0,12,Ford,Escort,Y,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,47.0,0.0,Compact Cars,1993,2500,,SIL,,,,,,, +23.534154,0.0,0.0,0.0,12,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,634.7857142857143,14,0.0,0,0.0,0.0,0.0,0.0,8,5.0,Rear-Wheel Drive,4860,(GM-CHEV),-1,3950,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,992,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,15.0,0.0,22.0,0.0,Vans,1985,-7750,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3100,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,35,0.0,0,0.0,0.0,0.0,0.0,17,91,9920,0,0,Ford,Escort FS,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,50.0,0.0,Compact Cars,1993,2750,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9921,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9922,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1993,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3304,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9923,13,13,Ford,Tempo,N,false,90,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Compact Cars,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9924,13,13,Ford,Tempo,Y,false,90,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9925,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,29.0,0.0,37.0,0.0,Compact Cars,1993,500,,,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,57601,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9926,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,43.0,0.0,Compact Cars,1993,1500,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9927,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,42.0,0.0,Compact Cars,1993,1000,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,57602,(FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,31,0.0,0,0.0,0.0,0.0,0.0,0,0,9928,0,13,Geo,Prizm,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.0,0.0,Compact Cars,1993,1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9929,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,36.0,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +25.336022,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,683.6153846153846,13,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,4250,0,Regular,Regular Gasoline,-1,-1,16,0.0,0,0.0,0.0,0.0,0.0,0,0,993,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,14.0,0.0,22.0,0.0,Vans,1985,-9250,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,26060,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9930,14,14,Honda,Accord,Y,false,90,93,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,40.0,0.0,Compact Cars,1993,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,26503,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9931,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,37.0,0.0,Compact Cars,1993,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9932,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,25.0,0.0,36.0,0.0,Compact Cars,1993,-500,,2MODE CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,26504,(FFS) (MPFI),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9933,0,12,Hyundai,Elantra,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +12.657024,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,14,86,9934,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,31.0,0.0,41.0,0.0,Compact Cars,1993,1500,,2MODE CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.5,Front-Wheel Drive,26506,(FFS) (MPFI),-1,2050,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,14,86,9935,0,0,Mitsubishi,Precis,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,32.2222,0.0,42.0,0.0,Compact Cars,1993,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9936,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,30.0,0.0,39.0,0.0,Compact Cars,1993,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,29011,(SOHC) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9937,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,33.0,0.0,46.1538,0.0,Compact Cars,1993,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,29022,(DOHC) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9938,0,11,Isuzu,Stylus,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,40.0,0.0,Compact Cars,1993,500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9939,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +21.224007,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,565.5555555555555,18,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3300,0,Diesel,Diesel,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,994,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.0,0.0,Vans,1985,-4500,,,,,Diesel,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,38012,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9940,0,14,Infiniti,G20,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,41.0256,0.0,Compact Cars,1993,500,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,15,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,4.0,Rear-Wheel Drive,30556,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9941,0,13,Jaguar,XJ6,Y,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,19.0,0.0,30.7692,0.0,Compact Cars,1993,-4750,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57009,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9942,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,30.0,0.0,Compact Cars,1993,-3250,,2MODE 2LKUP,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,57009,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9943,0,14,Lexus,ES 300,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,20.0,0.0,31.0,0.0,Compact Cars,1993,-3250,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3200,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,0,0,9944,13,13,Mercury,Topaz,Y,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,35.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,3201,(FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9945,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.6667,0.0,42.0,0.0,Compact Cars,1993,500,,SIL,,,,,,, +17.337486000000002,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,467.7368421052632,19,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3304,(FFS),-1,2900,0,Regular,Regular Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9946,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,31.0,0.0,Compact Cars,1993,-2500,,,,,,,,, +15.689436,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,3301,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9947,13,13,Mercury,Topaz,N,false,90,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.3333,0.0,36.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3060,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9948,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.0,0.0,38.0,0.0,Compact Cars,1993,0,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,3061,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9949,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,29.0,0.0,40.0,0.0,Compact Cars,1993,1000,,,,,,,,, +22.472478000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,598.8235294117648,17,0.0,0,0.0,0.0,0.0,0.0,8,6.2,Rear-Wheel Drive,4883,,-1,3500,0,Diesel,Diesel,-1,-1,19,0.0,0,0.0,0.0,0.0,0.0,0,0,995,0,0,Chevrolet,G10/20 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,20.0,0.0,26.9231,0.0,Vans,1985,-5500,,,,,Diesel,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3062,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9950,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,42.3077,0.0,Compact Cars,1993,1000,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,3063,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9951,0,12,Mercury,Tracer,N,false,0,91,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.2222,0.0,46.1538,0.0,Compact Cars,1993,2250,,SIL,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,SOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9952,0,13,Mazda,Protege,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,27.0,0.0,40.0,0.0,Compact Cars,1993,500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,DOHC (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9953,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,37.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56045,DOHC (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9954,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.7778,0.0,39.0,0.0,Compact Cars,1993,500,,,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.8,Front-Wheel Drive,56040,SOHC (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9955,0,13,Mazda,Protege,Y,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,46.0,0.0,Compact Cars,1993,1750,,,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,2VALVE (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,16,92,9956,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.8889,0.0,42.0,0.0,Compact Cars,1993,1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56033,4VALVE (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,16,92,9957,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,28.0,0.0,41.0256,0.0,Compact Cars,1993,1000,,CLKUP,,,,,,, +12.19557,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,329.14814814814815,27,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56033,4VALVE (FFS),-1,2050,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,16,92,9958,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,44.8718,0.0,Compact Cars,1993,1750,,,,,,,,, +11.75609,0.0,0.0,0.0,25,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,56030,2VALVE (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,16,92,9959,0,0,Mazda,323,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,32.0,0.0,47.0,0.0,Compact Cars,1993,2250,,,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,5.7,Rear-Wheel Drive,4870,(350 V8),-1,5000,0,Regular,Regular Gasoline,-1,-1,12,0.0,0,0.0,0.0,0.0,0.0,0,0,996,0,0,Chevrolet,G30 Sport Van 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,17.0,0.0,Vans,1985,-13000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,8,4.2,Rear-Wheel Drive,20060,(FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9960,0,15,Mercedes-Benz,400E,N,false,0,93,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1993,-4750,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49061,DOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,22,0.0,0,0.0,0.0,0.0,0.0,0,0,9961,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,31.0,0.0,Compact Cars,1993,-4750,,2MODE,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,49060,SOHC (FFS),-1,3350,0,Premium,Premium Gasoline,-1,-1,23,0.0,0,0.0,0.0,0.0,0.0,0,0,9962,0,14,Mitsubishi,Diamante,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,32.0,0.0,Compact Cars,1993,-4750,,2MODE,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49035,SOHC-4 (FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9963,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,36.0,0.0,Compact Cars,1993,-1000,,2MODE,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49040,DOHC (FFS),-1,3000,0,Premium,Premium Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9964,0,11,Mitsubishi,Galant,N,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.2222,0.0,33.3333,0.0,Compact Cars,1993,-3000,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,49035,SOHC-4 (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9965,0,11,Mitsubishi,Galant,Y,false,0,94,0,0.0,0.0,0.0,0.0,Manual 5-spd,24.4444,0.0,38.0,0.0,Compact Cars,1993,-500,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(4-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9966,14,14,Oldsmobile,Achieva,Y,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9967,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4340,(2-VALVE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9968,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,45.0,0.0,Compact Cars,1993,500,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(4-VALVE) (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9969,14,14,Oldsmobile,Achieva,N,false,89,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1993,-2250,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,997,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,17.0,0.0,23.0,0.0,Vans,1985,-6250,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9970,14,14,Oldsmobile,Achieva,Y,false,89,90,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9971,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,37.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,2320,(FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,9972,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,30.0,0.0,41.0,0.0,Compact Cars,1993,1500,,,,,,,,, +14.327048,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9973,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,26.0,0.0,36.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,22,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,2.5,Front-Wheel Drive,2420,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,13,89,9974,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,28.0,0.0,41.0,0.0,Compact Cars,1993,1000,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9975,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +16.4805,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,6,3.0,Front-Wheel Drive,2510,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,13,89,9976,0,0,Plymouth,Sundance/Duster,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 5-spd,21.0,0.0,36.0,0.0,Compact Cars,1993,-1750,,,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4310,(4-VALVE) (FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9977,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.0,0.0,37.0,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4320,(2-VALVE) (FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,0,0,9978,0,13,Pontiac,Grand Am,Y,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,24.4444,0.0,41.0,0.0,Compact Cars,1993,0,,CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4340,(2-VALVE) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9979,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,26.0,0.0,45.0,0.0,Compact Cars,1993,500,,SIL,,,,,,, +21.974,0.0,0.0,0.0,14,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,592.4666666666667,15,0.0,0,0.0,0.0,0.0,0.0,6,3.7,Rear-Wheel Drive,2880,,-1,3650,0,Regular,Regular Gasoline,-1,-1,17,0.0,0,0.0,0.0,0.0,0.0,0,0,998,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Manual 4-spd,17.7778,0.0,23.0,0.0,Vans,1985,-6250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.3,Front-Wheel Drive,4330,(4-VALVE) (FFS),-1,2850,0,Premium,Premium Gasoline,-1,-1,27,0.0,0,0.0,0.0,0.0,0.0,0,0,9980,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,38.0,0.0,Compact Cars,1993,-2250,,SIL,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,6,3.3,Front-Wheel Drive,4410,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9981,0,13,Pontiac,Grand Am,N,false,0,92,0,0.0,0.0,0.0,0.0,Automatic 3-spd,22.0,0.0,37.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +13.1844,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4101,(FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,29,0.0,0,0.0,0.0,0.0,0.0,19,89,9982,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 3-spd,28.8889,0.0,41.0,0.0,Compact Cars,1993,1000,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4101,(FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,34,0.0,0,0.0,0.0,0.0,0.0,19,89,9983,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 4-spd,31.0,0.0,48.0,0.0,Compact Cars,1993,2250,,,,,,,,, +10.987,0.0,0.0,0.0,26,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,296.23333333333335,30,0.0,0,0.0,0.0,0.0,0.0,4,1.6,Front-Wheel Drive,4101,(FFS),-1,1850,0,Regular,Regular Gasoline,-1,-1,37,0.0,0,0.0,0.0,0.0,0.0,19,89,9984,0,17,Pontiac,Lemans,N,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,34.0,0.0,52.0,0.0,Compact Cars,1993,2750,,SIL,,,,,,, +29.950562,0.0,0.0,0.0,10,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,807.9090909090909,11,0.0,0,0.0,0.0,0.0,0.0,8,6.8,Rear-Wheel Drive,44008,"(GUZZLER) (FFS,TRBO) (MPFI)",-1,5500,0,Premium,Premium Gasoline,-1,-1,15,0.0,0,0.0,0.0,0.0,0.0,0,0,9985,12,0,Rolls-Royce,Continental R,N,false,89,0,0,0.0,0.0,0.0,0.0,Automatic 4-spd,12.0,0.0,20.0,0.0,Compact Cars,1993,-15500,T,4MODE,T,,,,,, +18.304342000000002,0.0,0.0,0.0,17,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47023,"(FFS,TRBO)",-1,3050,0,Regular,Regular Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,22,88,9986,0,14,Saab,900,Y,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,21.0,0.0,29.0,0.0,Compact Cars,1993,-3250,,,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47020,"(FFS,TRBO)",-1,2600,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,22,88,9987,0,14,Saab,900,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.8974,0.0,Compact Cars,1993,-1000,,SIL,T,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.0,Front-Wheel Drive,47022,"(FFS,TRBO)",-1,2850,0,Premium,Premium Gasoline,-1,-1,25,0.0,0,0.0,0.0,0.0,0.0,22,88,9988,0,14,Saab,900,N,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,35.0,0.0,Compact Cars,1993,-2250,,SIL,T,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47011,(FFS),-1,3050,0,Regular,Regular Gasoline,-1,-1,20,0.0,0,0.0,0.0,0.0,0.0,22,88,9989,0,14,Saab,900,N,false,0,88,0,0.0,0.0,0.0,0.0,Automatic 3-spd,20.0,0.0,27.0,0.0,Compact Cars,1993,-3250,,,,,,,,, +27.4675,0.0,0.0,0.0,11,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,740.5833333333334,12,0.0,0,0.0,0.0,0.0,0.0,8,5.2,Rear-Wheel Drive,2854,(FFS),-1,4600,0,Regular,Regular Gasoline,-1,-1,13,0.0,0,0.0,0.0,0.0,0.0,0,0,999,0,0,Dodge,B150/B250 Wagon 2WD,N,false,0,0,0,0.0,0.0,0.0,0.0,Automatic 3-spd,13.0,0.0,18.0,0.0,Vans,1985,-11000,,,,,,,,, +16.4805,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,444.35,20,0.0,0,0.0,0.0,0.0,0.0,4,2.1,Front-Wheel Drive,47010,(FFS),-1,2750,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,22,88,9990,0,14,Saab,900,Y,false,0,88,0,0.0,0.0,0.0,0.0,Manual 5-spd,22.0,0.0,33.3333,0.0,Compact Cars,1993,-1750,,SIL,,,,,,, +12.657024,0.0,0.0,0.0,23,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,341.8076923076923,26,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,2100,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9991,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,29.0,0.0,46.0,0.0,Compact Cars,1993,1500,,2MODE CLKUP,,,,,,, +13.73375,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,370.2916666666667,24,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2300,0,Regular,Regular Gasoline,-1,-1,30,0.0,0,0.0,0.0,0.0,0.0,0,0,9992,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Automatic 4-spd,26.6667,0.0,42.0,0.0,Compact Cars,1993,500,,CLKUP,,,,,,, +11.75609,0.0,0.0,0.0,24,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,317.39285714285717,28,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4107,(TBI) (FFS),-1,1950,0,Regular,Regular Gasoline,-1,-1,33,0.0,0,0.0,0.0,0.0,0.0,0,0,9993,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,31.0,0.0,47.0,0.0,Compact Cars,1993,2250,,SIL,,,,,,, +13.1844,0.0,0.0,0.0,21,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,355.48,25,0.0,0,0.0,0.0,0.0,0.0,4,1.9,Front-Wheel Drive,4104,(MFI) (FFS),-1,2200,0,Regular,Regular Gasoline,-1,-1,32,0.0,0,0.0,0.0,0.0,0.0,0,0,9994,0,12,Saturn,SL,Y,false,0,89,0,0.0,0.0,0.0,0.0,Manual 5-spd,27.0,0.0,44.8718,0.0,Compact Cars,1993,1000,,SIL,,,,,,, +14.964294,0.0,0.0,0.0,19,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,403.95454545454544,22,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2500,0,Regular,Regular Gasoline,-1,-1,26,0.0,0,0.0,0.0,0.0,0.0,0,0,9995,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,24.0,0.0,37.0,0.0,Compact Cars,1993,-500,,CLKUP,,,,,,, +14.327048,0.0,0.0,0.0,20,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,386.39130434782606,23,0.0,0,0.0,0.0,0.0,0.0,4,2.2,Front-Wheel Drive,66030,(FFS),-1,2400,0,Regular,Regular Gasoline,-1,-1,28,0.0,0,0.0,0.0,0.0,0.0,0,0,9996,0,14,Subaru,Legacy,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,25.0,0.0,39.0,0.0,Compact Cars,1993,0,,,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9997,0,14,Subaru,Legacy AWD,Y,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,23.0,0.0,34.0,0.0,Compact Cars,1993,-1000,,CLKUP,,,,,,, +15.689436,0.0,0.0,0.0,18,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,423.1904761904762,21,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66030,(FFS),-1,2600,0,Regular,Regular Gasoline,-1,-1,24,0.0,0,0.0,0.0,0.0,0.0,0,0,9998,0,14,Subaru,Legacy AWD,N,false,0,90,0,0.0,0.0,0.0,0.0,Manual 5-spd,23.0,0.0,34.0,0.0,Compact Cars,1993,-1000,,,,,,,,, +18.304342000000002,0.0,0.0,0.0,16,0.0,0,0.0,0.0,0.0,0.0,-1,-1,0.0,493.72222222222223,18,0.0,0,0.0,0.0,0.0,0.0,4,2.2,4-Wheel or All-Wheel Drive,66031,"(FFS,TRBO)",-1,3350,0,Premium,Premium Gasoline,-1,-1,21,0.0,0,0.0,0.0,0.0,0.0,0,0,9999,0,14,Subaru,Legacy AWD Turbo,N,false,0,90,0,0.0,0.0,0.0,0.0,Automatic 4-spd,20.0,0.0,29.0,0.0,Compact Cars,1993,-4750,,CLKUP,T,,,,,, diff --git a/lab-functional-programming/your-code/Learning.ipynb b/lab-functional-programming/your-code/Learning.ipynb index 8ba1d7f..6b15fd2 100644 --- a/lab-functional-programming/your-code/Learning.ipynb +++ b/lab-functional-programming/your-code/Learning.ipynb @@ -167,15 +167,15 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "/home/iudh/.local/lib/python3.7/site-packages/IPython/core/interactiveshell.py:3044: DtypeWarning: Columns (70,71,72,73) have mixed types. Specify dtype option on import or set low_memory=False.\n", - " interactivity=interactivity, compiler=compiler, result=result)\n" + "/var/folders/gy/z7r47gln14z4xv65_9682djc0000gn/T/ipykernel_92425/3729091463.py:3: DtypeWarning: Columns (70,71,72,73) have mixed types. Specify dtype option on import or set low_memory=False.\n", + " data = pd.read_csv('vehicles.csv')\n" ] }, { @@ -207,42 +207,348 @@ " \n", " 0\n", " barrels08\n", - " 17.779002\n", + " 1.777900e+01\n", " \n", " \n", " 1\n", " barrelsA08\n", - " 0.202128\n", + " 2.021285e-01\n", " \n", " \n", " 2\n", " charge120\n", - " 0.000000\n", + " 0.000000e+00\n", " \n", " \n", " 3\n", " charge240\n", - " 0.009125\n", + " 9.125350e-03\n", " \n", " \n", " 4\n", " city08\n", - " 17.574601\n", + " 1.757460e+01\n", + " \n", + " \n", + " 5\n", + " city08U\n", + " 2.386657e+00\n", + " \n", + " \n", + " 6\n", + " cityA08\n", + " 4.115965e-01\n", + " \n", + " \n", + " 7\n", + " cityA08U\n", + " 2.000442e-01\n", + " \n", + " \n", + " 8\n", + " cityCD\n", + " 5.544166e-05\n", + " \n", + " \n", + " 9\n", + " cityE\n", + " 9.747625e-02\n", + " \n", + " \n", + " 10\n", + " cityUF\n", + " 2.295891e-04\n", + " \n", + " \n", + " 11\n", + " co2\n", + " 3.024114e+01\n", + " \n", + " \n", + " 12\n", + " co2A\n", + " 3.476712e+00\n", + " \n", + " \n", + " 13\n", + " co2TailpipeAGpm\n", + " 1.714184e+01\n", + " \n", + " \n", + " 14\n", + " co2TailpipeGpm\n", + " 4.800935e+02\n", + " \n", + " \n", + " 15\n", + " comb08\n", + " 1.979354e+01\n", + " \n", + " \n", + " 16\n", + " comb08U\n", + " 2.696024e+00\n", + " \n", + " \n", + " 17\n", + " combA08\n", + " 4.680777e-01\n", + " \n", + " \n", + " 18\n", + " combA08U\n", + " 2.247196e-01\n", + " \n", + " \n", + " 19\n", + " combE\n", + " 1.023967e-01\n", + " \n", + " \n", + " 20\n", + " combinedCD\n", + " 3.095781e-05\n", + " \n", + " \n", + " 21\n", + " combinedUF\n", + " 2.223701e-04\n", + " \n", + " \n", + " 22\n", + " cylinders\n", + " 5.744395e+00\n", + " \n", + " \n", + " 23\n", + " displ\n", + " 3.330180e+00\n", + " \n", + " \n", + " 24\n", + " engId\n", + " 9.663022e+03\n", + " \n", + " \n", + " 25\n", + " feScore\n", + " -5.201987e-01\n", + " \n", + " \n", + " 26\n", + " fuelCost08\n", + " 3.039687e+03\n", + " \n", + " \n", + " 27\n", + " fuelCostA08\n", + " 1.236075e+02\n", + " \n", + " \n", + " 28\n", + " ghgScore\n", + " -5.216136e-01\n", + " \n", + " \n", + " 29\n", + " ghgScoreA\n", + " -9.548670e-01\n", + " \n", + " \n", + " 30\n", + " highway08\n", + " 2.363443e+01\n", + " \n", + " \n", + " 31\n", + " highway08U\n", + " 3.238078e+00\n", + " \n", + " \n", + " 32\n", + " highwayA08\n", + " 5.639745e-01\n", + " \n", + " \n", + " 33\n", + " highwayA08U\n", + " 2.697623e-01\n", + " \n", + " \n", + " 34\n", + " highwayCD\n", + " 8.662759e-07\n", + " \n", + " \n", + " 35\n", + " highwayE\n", + " 1.083856e-01\n", + " \n", + " \n", + " 36\n", + " highwayUF\n", + " 2.116687e-04\n", + " \n", + " \n", + " 37\n", + " hlv\n", + " 2.056135e+00\n", + " \n", + " \n", + " 38\n", + " hpv\n", + " 1.057241e+01\n", + " \n", + " \n", + " 39\n", + " id\n", + " 1.739284e+04\n", + " \n", + " \n", + " 40\n", + " lv2\n", + " 1.880050e+00\n", + " \n", + " \n", + " 41\n", + " lv4\n", + " 6.225347e+00\n", + " \n", + " \n", + " 42\n", + " phevBlended\n", + " 2.598828e-04\n", + " \n", + " \n", + " 43\n", + " pv2\n", + " 1.374687e+01\n", + " \n", + " \n", + " 44\n", + " pv4\n", + " 3.362554e+01\n", + " \n", + " \n", + " 45\n", + " range\n", + " 1.619070e-01\n", + " \n", + " \n", + " 46\n", + " rangeCity\n", + " 1.128233e-01\n", + " \n", + " \n", + " 47\n", + " rangeCityA\n", + " 1.142980e-02\n", + " \n", + " \n", + " 48\n", + " rangeHwy\n", + " 1.054146e-01\n", + " \n", + " \n", + " 49\n", + " rangeHwyA\n", + " 1.025665e-02\n", + " \n", + " \n", + " 50\n", + " UCity\n", + " 2.207385e+01\n", + " \n", + " \n", + " 51\n", + " UCityA\n", + " 5.012766e-01\n", + " \n", + " \n", + " 52\n", + " UHighway\n", + " 3.292403e+01\n", + " \n", + " \n", + " 53\n", + " UHighwayA\n", + " 7.554765e-01\n", + " \n", + " \n", + " 54\n", + " year\n", + " 1.998593e+03\n", + " \n", + " \n", + " 55\n", + " youSaveSpend\n", + " -3.197316e+03\n", " \n", " \n", "\n", "" ], "text/plain": [ - " Column Mean\n", - "0 barrels08 17.779002\n", - "1 barrelsA08 0.202128\n", - "2 charge120 0.000000\n", - "3 charge240 0.009125\n", - "4 city08 17.574601" + " Column Mean\n", + "0 barrels08 1.777900e+01\n", + "1 barrelsA08 2.021285e-01\n", + "2 charge120 0.000000e+00\n", + "3 charge240 9.125350e-03\n", + "4 city08 1.757460e+01\n", + "5 city08U 2.386657e+00\n", + "6 cityA08 4.115965e-01\n", + "7 cityA08U 2.000442e-01\n", + "8 cityCD 5.544166e-05\n", + "9 cityE 9.747625e-02\n", + "10 cityUF 2.295891e-04\n", + "11 co2 3.024114e+01\n", + "12 co2A 3.476712e+00\n", + "13 co2TailpipeAGpm 1.714184e+01\n", + "14 co2TailpipeGpm 4.800935e+02\n", + "15 comb08 1.979354e+01\n", + "16 comb08U 2.696024e+00\n", + "17 combA08 4.680777e-01\n", + "18 combA08U 2.247196e-01\n", + "19 combE 1.023967e-01\n", + "20 combinedCD 3.095781e-05\n", + "21 combinedUF 2.223701e-04\n", + "22 cylinders 5.744395e+00\n", + "23 displ 3.330180e+00\n", + "24 engId 9.663022e+03\n", + "25 feScore -5.201987e-01\n", + "26 fuelCost08 3.039687e+03\n", + "27 fuelCostA08 1.236075e+02\n", + "28 ghgScore -5.216136e-01\n", + "29 ghgScoreA -9.548670e-01\n", + "30 highway08 2.363443e+01\n", + "31 highway08U 3.238078e+00\n", + "32 highwayA08 5.639745e-01\n", + "33 highwayA08U 2.697623e-01\n", + "34 highwayCD 8.662759e-07\n", + "35 highwayE 1.083856e-01\n", + "36 highwayUF 2.116687e-04\n", + "37 hlv 2.056135e+00\n", + "38 hpv 1.057241e+01\n", + "39 id 1.739284e+04\n", + "40 lv2 1.880050e+00\n", + "41 lv4 6.225347e+00\n", + "42 phevBlended 2.598828e-04\n", + "43 pv2 1.374687e+01\n", + "44 pv4 3.362554e+01\n", + "45 range 1.619070e-01\n", + "46 rangeCity 1.128233e-01\n", + "47 rangeCityA 1.142980e-02\n", + "48 rangeHwy 1.054146e-01\n", + "49 rangeHwyA 1.025665e-02\n", + "50 UCity 2.207385e+01\n", + "51 UCityA 5.012766e-01\n", + "52 UHighway 3.292403e+01\n", + "53 UHighwayA 7.554765e-01\n", + "54 year 1.998593e+03\n", + "55 youSaveSpend -3.197316e+03" ] }, - "execution_count": 5, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -259,7 +565,7 @@ " return means\n", "\n", "mean_df = get_means(data)\n", - "mean_df.head()" + "mean_df" ] }, { @@ -277,18 +583,11 @@ "\n", "Challenge: Import another data set that contains numeric variables and run the get_means function on it. It should return the means for the numeric columns in that data set. " ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -302,9 +601,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.9.12" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/lab-functional-programming/your-code/Q1.ipynb b/lab-functional-programming/your-code/Q1.ipynb index 8b07d3d..2cd2b28 100644 --- a/lab-functional-programming/your-code/Q1.ipynb +++ b/lab-functional-programming/your-code/Q1.ipynb @@ -19,26 +19,44 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# Import required libraries\n", + "import numpy as np\n", + "import pandas as pd\n", "\n", "# Define function\n", "def get_bow_from_docs(docs, stop_words=[]):\n", " \n", " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", " \n", + " corpus2=[]\n", + " \n", + " for i in docs:\n", + " texto=open(i,\"r\")\n", + " texto2=texto.read()\n", + " corpus2.append(texto2)\n", + " \n", + " corpus=[i.lower()[:-1] for i in corpus2]\n", " \n", + " bag1=' '.join(corpus)\n", + " \n", + " bag_of_words=bag1.split()\n", + " \n", + " term_freq = []\n", + "\n", + "\n", + " for i in bag_of_words:\n", + " for x in corpus:\n", + " y=(corpus[x.index(x)].split().count(i))\n", + " term_freq.append(y)\n", " \n", " \"\"\"\n", " Loop `docs` and read the content of each doc into a string in `corpus`.\n", " Remember to convert the doc content to lowercases and remove punctuation.\n", " \"\"\"\n", - "\n", - " \n", - " \n", " \"\"\"\n", " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", " should be unique which means before adding each term you need to check if it's already added to the array.\n", @@ -64,6 +82,47 @@ " " ] }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "docs_1 = ['doc1.txt', 'doc2.txt', 'doc3.txt']" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'bag_of_words': ['ironhack',\n", + " 'is',\n", + " 'cool.',\n", + " 'i',\n", + " 'love',\n", + " 'ironhack.',\n", + " 'i',\n", + " 'am',\n", + " 'a',\n", + " 'student',\n", + " 'at',\n", + " 'ironhack.'],\n", + " 'term_freq': [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_bow_from_docs(docs_1)" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -75,12 +134,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'is', 'cool.', 'i', 'love', 'ironhack.', 'i', 'am', 'a', 'student', 'at', 'ironhack.'], 'term_freq': [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0]}\n" + ] + } + ], "source": [ "# Define doc paths array\n", - "docs = []\n", + "docs = ['doc1.txt', 'doc2.txt', 'doc3.txt']\n", "\n", "# Obtain BoW from your function\n", "bow = get_bow_from_docs(docs)\n", @@ -100,11 +167,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (1073503526.py, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m Input \u001b[0;32mIn [5]\u001b[0;36m\u001b[0m\n\u001b[0;31m from sklearn.feature_extraction\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], "source": [ - "from sklearn.feature_extraction import stop_words\n", + "from sklearn.feature_extraction \n", "print(stop_words.ENGLISH_STOP_WORDS)" ] }, @@ -156,7 +232,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -170,9 +246,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.9.12" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/lab-functional-programming/your-code/Q2.ipynb b/lab-functional-programming/your-code/Q2.ipynb index f50f442..6c29317 100644 --- a/lab-functional-programming/your-code/Q2.ipynb +++ b/lab-functional-programming/your-code/Q2.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -32,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -60,9 +60,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "ImportError", + "evalue": "cannot import name 'stop_words' from 'sklearn.feature_extraction' (/Users/hal/opt/anaconda3/lib/python3.9/site-packages/sklearn/feature_extraction/__init__.py)", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mImportError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [3]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01msklearn\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mfeature_extraction\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m stop_words\n\u001b[1;32m 2\u001b[0m bow \u001b[38;5;241m=\u001b[39m get_bow_from_docs([\n\u001b[1;32m 3\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mwww.coursereport.com_ironhack.html\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[1;32m 4\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124men.wikipedia.org_Data_analysis.html\u001b[39m\u001b[38;5;124m'\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 7\u001b[0m stop_words\u001b[38;5;241m.\u001b[39mENGLISH_STOP_WORDS\n\u001b[1;32m 8\u001b[0m )\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28mprint\u001b[39m(bow)\n", + "\u001b[0;31mImportError\u001b[0m: cannot import name 'stop_words' from 'sklearn.feature_extraction' (/Users/hal/opt/anaconda3/lib/python3.9/site-packages/sklearn/feature_extraction/__init__.py)" + ] + } + ], "source": [ "from sklearn.feature_extraction import stop_words\n", "bow = get_bow_from_docs([\n", @@ -97,7 +109,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -111,9 +123,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.9.12" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/lab-functional-programming/your-code/Q3.ipynb b/lab-functional-programming/your-code/Q3.ipynb index 75055ac..73beacb 100644 --- a/lab-functional-programming/your-code/Q3.ipynb +++ b/lab-functional-programming/your-code/Q3.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 1, "metadata": {}, "outputs": [ { @@ -22,7 +22,7 @@ "[2, 12, 30]" ] }, - "execution_count": 11, + "execution_count": 1, "metadata": {}, "output_type": "execute_result" } @@ -44,7 +44,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -53,7 +53,7 @@ "[2, 12, 30]" ] }, - "execution_count": 10, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -85,13 +85,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 5]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers = [1, 4, -1, -100, 0, 5, -99]\n", "\n", - "# Enter your code below" + "# Enter your code below\n", + "\n", + "list(filter(lambda x: x>0,numbers))" ] }, { @@ -113,9 +126,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'langdetect'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [4]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mlangdetect\u001b[39;00m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfunctools\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m reduce\n\u001b[1;32m 3\u001b[0m words \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mgood morning\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m早上好\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mдоброго\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mおはようございます\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124meveryone\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124m大家\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mкаждый\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mみんな\u001b[39m\u001b[38;5;124m'\u001b[39m]\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'langdetect'" + ] + } + ], "source": [ "import langdetect\n", "from functools import reduce\n", @@ -142,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -185,7 +210,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -199,9 +224,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.9.12" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/lab-functional-programming/your-code/main.ipynb b/lab-functional-programming/your-code/main.ipynb index 8017d6e..5ab4ec2 100644 --- a/lab-functional-programming/your-code/main.ipynb +++ b/lab-functional-programming/your-code/main.ipynb @@ -98,10 +98,10 @@ "evalue": "", "output_type": "error", "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0miterator\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m: " + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mStopIteration\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [5]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# After we have iterated through all elements, we will get a StopIteration Error\u001b[39;00m\n\u001b[0;32m----> 3\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;28;43mnext\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43miterator\u001b[49m\u001b[43m)\u001b[49m)\n", + "\u001b[0;31mStopIteration\u001b[0m: " ] } ], @@ -113,19 +113,9 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1\n", - "2\n", - "3\n" - ] - } - ], + "outputs": [], "source": [ "# We can also iterate through an iterator using a for loop like this:\n", "# Note: we cannot go back directly in an iterator once we have traversed through the elements. \n", @@ -146,7 +136,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -159,9 +149,27 @@ " # Sample Output: 2\n", " \n", " # Your code here:\n", + " for i in iterator:\n", + " if i%2==0:\n", + " return print(i)\n", + " else:\n", + " return print('0')\n", + " \n", + "iterator2=iter([1,2,3])\n", + "\n", + "\n", " " ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "divisible2(iterator2) #solo corre una vez la funición" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -173,7 +181,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -193,21 +201,9 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0\n", - "1\n", - "2\n", - "3\n", - "4\n" - ] - } - ], + "outputs": [], "source": [ "iterator = firstn(5)\n", "\n", @@ -224,7 +220,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -237,9 +233,29 @@ " # Sample Output: iter([0, 2, 4])\n", " \n", " # Your code here:\n", + " \n", + " list1=[i for i in range(0,n+1)]\n", + " \n", + " iter1=[]\n", + " \n", + " for i in list1:\n", + " if i%2==0:\n", + " iter1.append(i)\n", + " \n", + " \n", + " return print(iter(iter1))\n", " " ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "iter_result=even_iterator(100)" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -253,7 +269,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -270,12 +286,13 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "iris.tail()" ] }, { @@ -287,14 +304,29 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", + "\n", + "def get_means(df):\n", + " numeric = df._get_numeric_data()\n", + " means = pd.DataFrame(numeric.mean()).reset_index()\n", + " means.columns = ['Column', 'Mean']\n", + " return means\n", "\n" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "get_means(iris)" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -304,12 +336,26 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "def get_std(df):\n", + " numeric = df._get_numeric_data()\n", + " std = pd.DataFrame(numeric.std()).reset_index()\n", + " std.columns = ['Column', 'Std']\n", + " return std" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "get_std(iris)" ] }, { @@ -321,12 +367,19 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "\n", + "\n", + "iris['sepal_width']=iris['sepal_width']/2.54\n", + "iris['petal_length']=iris['petal_length']/2.54\n", + "iris['petal_width']=iris['petal_width']/2.54\n", + "\n", + "iris" ] }, { @@ -338,7 +391,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -351,6 +404,8 @@ " # Sample Output: 0.393701\n", " \n", " # Your code here:\n", + " \n", + " return x/2.54\n", " " ] }, @@ -363,12 +418,13 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "iris" ] }, { @@ -380,12 +436,12 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Define constant below:\n", - "\n", + "a0=4\n", "\n", "def add_constant(x):\n", " # This function adds a global constant to our input.\n", @@ -393,12 +449,27 @@ " # Output: numeric value\n", " \n", " # Your code here:\n", + " return x.apply(a0)\n", + "\n", + "\n", " " ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": null, "metadata": {}, + "outputs": [], + "source": [ + "add_constant(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, "source": [ "# Bonus Challenge - Applying Functions to Columns\n", "\n", @@ -407,7 +478,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -424,7 +495,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -442,7 +513,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -456,9 +527,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.9.12" } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 }